cchat-gtk/internal/ui/messages/container/cozy/message_full.go

196 lines
5.5 KiB
Go
Raw Normal View History

2020-06-07 04:27:28 +00:00
package cozy
import (
"time"
2020-06-07 04:27:28 +00:00
"github.com/diamondburned/cchat"
"github.com/diamondburned/cchat-gtk/internal/gts/httputil"
"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"
"github.com/diamondburned/cchat-gtk/internal/ui/primitives"
"github.com/diamondburned/cchat-gtk/internal/ui/rich"
"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"
)
// TopFullMargin is the margin on top of every full message.
2020-06-26 04:11:31 +00:00
const TopFullMargin = 4
2020-06-07 04:27:28 +00:00
type FullMessage struct {
*message.GenericContainer
// Grid widgets.
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
}
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))
// 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())
msgc.UpdateContent(msg.Content(), false)
2020-06-07 04:27:28 +00:00
return msgc
}
func WrapFullMessage(gc *message.GenericContainer) *FullMessage {
avatar := NewAvatar()
avatar.SetMarginTop(TopFullMargin)
2020-06-07 04:27:28 +00:00
avatar.SetMarginStart(container.ColumnSpacing * 2)
// 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)
2020-06-26 04:11:31 +00:00
main.PackStart(gc.Content, false, false, 0)
main.SetMarginTop(TopFullMargin)
2020-06-07 04:27:28 +00:00
main.SetMarginEnd(container.ColumnSpacing * 2)
main.Show()
// 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,
}
}
func (m *FullMessage) Collapsed() bool { return false }
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 {
m.Avatar.SetURL(avatarer.Avatar())
2020-06-07 04:27:28 +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) {
m.Avatar.Show()
2020-06-07 04:27:28 +00:00
container.AttachRow(grid, row, m.Avatar, m.MainBox)
}
func (m *FullMessage) AttachMenu(items []menu.Item) {
// 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 (
// _ 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
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
}
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
}