2020-06-07 04:27:28 +00:00
|
|
|
package cozy
|
|
|
|
|
|
|
|
import (
|
2020-06-13 07:29:32 +00:00
|
|
|
"time"
|
|
|
|
|
2020-06-07 04:27:28 +00:00
|
|
|
"github.com/diamondburned/cchat"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/gts/httputil"
|
2020-06-13 07:29:32 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/humanize"
|
2020-06-07 04:27:28 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/messages/container"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/messages/input"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/messages/message"
|
2020-06-13 07:29:32 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/primitives"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/rich"
|
2020-06-17 22:58:38 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/service/menu"
|
2020-06-07 04:27:28 +00:00
|
|
|
"github.com/diamondburned/imgutil"
|
|
|
|
"github.com/gotk3/gotk3/gtk"
|
|
|
|
)
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// TopFullMargin is the margin on top of every full message.
|
|
|
|
const TopFullMargin = 12
|
|
|
|
|
2020-06-07 04:27:28 +00:00
|
|
|
type FullMessage struct {
|
|
|
|
*message.GenericContainer
|
|
|
|
|
|
|
|
// Grid widgets.
|
2020-06-13 07:29:32 +00:00
|
|
|
Avatar *Avatar
|
2020-06-07 04:27:28 +00:00
|
|
|
MainBox *gtk.Box // wraps header and content
|
|
|
|
|
|
|
|
// Header wraps author and timestamp.
|
|
|
|
HeaderBox *gtk.Box
|
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
type AvatarPixbufCopier interface {
|
|
|
|
CopyAvatarPixbuf(img httputil.ImageContainer)
|
|
|
|
}
|
|
|
|
|
2020-06-07 04:27:28 +00:00
|
|
|
var (
|
|
|
|
_ AvatarPixbufCopier = (*FullMessage)(nil)
|
|
|
|
_ message.Container = (*FullMessage)(nil)
|
|
|
|
_ container.GridMessage = (*FullMessage)(nil)
|
|
|
|
)
|
|
|
|
|
|
|
|
func NewFullMessage(msg cchat.MessageCreate) *FullMessage {
|
|
|
|
msgc := WrapFullMessage(message.NewContainer(msg))
|
2020-06-13 07:29:32 +00:00
|
|
|
// Don't update the avatar. NewMessage in controller will try and reuse the
|
|
|
|
// pixbuf if possible.
|
2020-06-07 04:27:28 +00:00
|
|
|
msgc.UpdateAuthorName(msg.Author().Name())
|
|
|
|
msgc.UpdateTimestamp(msg.Time())
|
2020-06-13 07:29:32 +00:00
|
|
|
msgc.UpdateContent(msg.Content(), false)
|
2020-06-07 04:27:28 +00:00
|
|
|
return msgc
|
|
|
|
}
|
|
|
|
|
|
|
|
func WrapFullMessage(gc *message.GenericContainer) *FullMessage {
|
2020-06-13 07:29:32 +00:00
|
|
|
avatar := NewAvatar()
|
|
|
|
avatar.SetMarginTop(TopFullMargin)
|
2020-06-07 04:27:28 +00:00
|
|
|
avatar.SetMarginStart(container.ColumnSpacing * 2)
|
2020-06-13 07:29:32 +00:00
|
|
|
// We don't call avatar.Show(). That's called in Attach.
|
|
|
|
|
|
|
|
// Style the timestamp accordingly.
|
|
|
|
gc.Timestamp.SetXAlign(0.0) // left-align
|
|
|
|
gc.Timestamp.SetVAlign(gtk.ALIGN_END) // bottom-align
|
|
|
|
gc.Timestamp.SetMarginStart(0) // clear margins
|
|
|
|
|
|
|
|
// Attach the class for the left avatar.
|
|
|
|
primitives.AddClass(avatar, "cozy-avatar")
|
2020-06-07 04:27:28 +00:00
|
|
|
|
|
|
|
header, _ := gtk.BoxNew(gtk.ORIENTATION_HORIZONTAL, 0)
|
|
|
|
header.PackStart(gc.Username, false, false, 0)
|
|
|
|
header.PackStart(gc.Timestamp, false, false, 7) // padding
|
|
|
|
header.Show()
|
|
|
|
|
|
|
|
main, _ := gtk.BoxNew(gtk.ORIENTATION_VERTICAL, 0)
|
|
|
|
main.PackStart(header, false, false, 0)
|
|
|
|
main.PackStart(gc.Content, false, false, 2)
|
2020-06-13 07:29:32 +00:00
|
|
|
main.SetMarginTop(TopFullMargin)
|
2020-06-07 04:27:28 +00:00
|
|
|
main.SetMarginEnd(container.ColumnSpacing * 2)
|
|
|
|
main.Show()
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// Also attach a class for the main box shown on the right.
|
|
|
|
primitives.AddClass(main, "cozy-main")
|
|
|
|
|
2020-06-07 04:27:28 +00:00
|
|
|
return &FullMessage{
|
|
|
|
GenericContainer: gc,
|
|
|
|
Avatar: avatar,
|
|
|
|
MainBox: main,
|
|
|
|
HeaderBox: header,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-13 21:51:03 +00:00
|
|
|
func (c *FullMessage) Collapsed() bool { return false }
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
func (m *FullMessage) Unwrap(grid *gtk.Grid) *message.GenericContainer {
|
|
|
|
// Remove GenericContainer's widgets from the containers.
|
|
|
|
m.HeaderBox.Remove(m.Username)
|
|
|
|
m.HeaderBox.Remove(m.Timestamp)
|
|
|
|
m.MainBox.Remove(m.Content)
|
|
|
|
|
|
|
|
// Return after removing.
|
|
|
|
return m.GenericContainer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *FullMessage) UpdateTimestamp(t time.Time) {
|
|
|
|
m.GenericContainer.UpdateTimestamp(t)
|
|
|
|
m.Timestamp.SetMarkup(rich.Small(humanize.TimeAgoLong(t)))
|
|
|
|
}
|
|
|
|
|
2020-06-07 04:27:28 +00:00
|
|
|
func (m *FullMessage) UpdateAuthor(author cchat.MessageAuthor) {
|
|
|
|
// Call the parent's method to update the labels.
|
|
|
|
m.GenericContainer.UpdateAuthor(author)
|
|
|
|
|
|
|
|
// If the author has an avatar:
|
|
|
|
if avatarer, ok := author.(cchat.MessageAuthorAvatar); ok {
|
2020-06-13 07:29:32 +00:00
|
|
|
m.Avatar.SetURL(avatarer.Avatar())
|
2020-06-07 04:27:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// CopyAvatarPixbuf sets the pixbuf into the given container. This shares the
|
|
|
|
// same pixbuf, but gtk.Image should take its own reference from the pixbuf.
|
2020-06-07 04:27:28 +00:00
|
|
|
func (m *FullMessage) CopyAvatarPixbuf(dst httputil.ImageContainer) {
|
|
|
|
switch m.Avatar.GetStorageType() {
|
|
|
|
case gtk.IMAGE_PIXBUF:
|
|
|
|
dst.SetFromPixbuf(m.Avatar.GetPixbuf())
|
|
|
|
case gtk.IMAGE_ANIMATION:
|
|
|
|
dst.SetFromAnimation(m.Avatar.GetAnimation())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *FullMessage) Attach(grid *gtk.Grid, row int) {
|
2020-06-13 07:29:32 +00:00
|
|
|
m.Avatar.Show()
|
2020-06-07 04:27:28 +00:00
|
|
|
container.AttachRow(grid, row, m.Avatar, m.MainBox)
|
|
|
|
}
|
|
|
|
|
2020-06-17 22:58:38 +00:00
|
|
|
func (m *FullMessage) AttachMenu(items []menu.Item) {
|
2020-06-13 07:29:32 +00:00
|
|
|
// Bind to parent's container as well.
|
|
|
|
m.GenericContainer.AttachMenu(items)
|
|
|
|
|
|
|
|
// Bind to the box.
|
|
|
|
// TODO lol
|
|
|
|
}
|
|
|
|
|
2020-06-07 04:27:28 +00:00
|
|
|
type FullSendingMessage struct {
|
|
|
|
message.PresendContainer
|
|
|
|
FullMessage
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2020-06-13 07:29:32 +00:00
|
|
|
// _ AvatarPixbufCopier = (*FullSendingMessage)(nil)
|
2020-06-07 04:27:28 +00:00
|
|
|
_ message.Container = (*FullSendingMessage)(nil)
|
|
|
|
_ container.GridMessage = (*FullSendingMessage)(nil)
|
|
|
|
)
|
|
|
|
|
|
|
|
func NewFullSendingMessage(msg input.PresendMessage) *FullSendingMessage {
|
|
|
|
var msgc = message.NewPresendContainer(msg)
|
|
|
|
|
|
|
|
return &FullSendingMessage{
|
|
|
|
PresendContainer: msgc,
|
|
|
|
FullMessage: *WrapFullMessage(msgc.GenericContainer),
|
|
|
|
}
|
|
|
|
}
|
2020-06-07 07:06:13 +00:00
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
type Avatar struct {
|
|
|
|
gtk.Image
|
|
|
|
url string
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewAvatar() *Avatar {
|
|
|
|
avatar, _ := gtk.ImageNew()
|
|
|
|
avatar.SetSizeRequest(AvatarSize, AvatarSize)
|
|
|
|
avatar.SetVAlign(gtk.ALIGN_START)
|
|
|
|
|
|
|
|
// Default icon.
|
|
|
|
primitives.SetImageIcon(avatar, "user-available-symbolic", AvatarSize)
|
|
|
|
|
|
|
|
return &Avatar{*avatar, ""}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetURL updates the Avatar to be that URL. It does nothing if URL is empty or
|
|
|
|
// matches the existing one.
|
|
|
|
func (a *Avatar) SetURL(url string) {
|
|
|
|
// Check if the URL is the same. This will save us quite a few requests, as
|
|
|
|
// some methods rely on the side-effects of other methods, and they may call
|
|
|
|
// UpdateAuthor multiple times.
|
|
|
|
if a.url == url || url == "" {
|
2020-06-07 07:06:13 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
a.url = url
|
|
|
|
httputil.AsyncImageSized(a, url, AvatarSize, AvatarSize, imgutil.Round(true))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ManuallySetURL sets the URL without downloading the image. It assumes the
|
|
|
|
// pixbuf is borrowed elsewhere.
|
|
|
|
func (a *Avatar) ManuallySetURL(url string) {
|
|
|
|
a.url = url
|
2020-06-07 07:06:13 +00:00
|
|
|
}
|