| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package main
- import (
- "fmt"
- "time"
- "github.com/diamondburned/arikawa/v3/discord"
- "github.com/rivo/tview"
- )
- type MessagesText struct {
- *tview.TextView
- }
- func newMessagesText() *MessagesText {
- mt := &MessagesText{
- TextView: tview.NewTextView(),
- }
- mt.SetDynamicColors(true)
- mt.SetRegions(true)
- mt.SetWordWrap(true)
- mt.SetBorder(cfg.Theme.MessagesText.Border)
- padding := cfg.Theme.MessagesText.BorderPadding
- mt.SetBorderPadding(padding[0], padding[1], padding[2], padding[3])
- return mt
- }
- func (mt *MessagesText) newMessage(m *discord.Message) error {
- switch m.Type {
- case discord.DefaultMessage, discord.InlinedReplyMessage:
- // Region tags are square brackets that contain a region ID in double quotes
- // https://pkg.go.dev/github.com/rivo/tview#hdr-Regions_and_Highlights
- fmt.Fprintf(mt, `["%s"]`, m.ID)
- if m.ReferencedMessage != nil {
- fmt.Fprint(mt, "[::d] ╭ ")
- // Author
- mt.newAuthor(m.ReferencedMessage)
- // Content
- mt.newContent(m.ReferencedMessage)
- fmt.Fprint(mt, "[::-]")
- fmt.Fprintln(mt)
- }
- // Timestamps
- mt.newTimestamp(m)
- // Author
- mt.newAuthor(m)
- // Content
- mt.newContent(m)
- // Tags with no region ID ([""]) don't start new regions. They can therefore be used to mark the end of a region.
- fmt.Fprint(mt, `[""]`)
- }
- fmt.Fprintln(mt)
- return nil
- }
- func (mt *MessagesText) newAuthor(m *discord.Message) {
- fmt.Fprintf(mt, "[blue]%s[-] ", m.Author.Username)
- }
- func (mt *MessagesText) newTimestamp(m *discord.Message) {
- fmt.Fprintf(mt, "[::d]%s[::-] ", m.Timestamp.Format(time.Kitchen))
- }
- func (mt *MessagesText) newContent(m *discord.Message) {
- fmt.Fprint(mt, tview.Escape(m.Content))
- }
|