1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-16 06:25:23 +00:00
neonmodem/ui/windows/postshow/postshow.go

132 lines
2.4 KiB
Go
Raw Normal View History

2023-01-02 20:33:12 +00:00
package postshow
2023-01-02 18:24:48 +00:00
import (
"time"
2023-01-02 18:24:48 +00:00
"github.com/charmbracelet/bubbles/viewport"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/glamour"
"github.com/charmbracelet/lipgloss"
2023-01-07 00:46:41 +00:00
"github.com/mrusme/neonmodem/aggregator"
"github.com/mrusme/neonmodem/models/post"
"github.com/mrusme/neonmodem/models/reply"
"github.com/mrusme/neonmodem/ui/cmd"
"github.com/mrusme/neonmodem/ui/ctx"
"github.com/mrusme/neonmodem/ui/toolkit"
2023-01-02 18:24:48 +00:00
)
var (
2023-01-02 20:33:12 +00:00
WIN_ID = "postshow"
2023-01-02 20:29:29 +00:00
2023-01-02 18:24:48 +00:00
viewportStyle = lipgloss.NewStyle().
2023-01-02 20:29:29 +00:00
Margin(0, 0, 0, 0).
Padding(0, 0).
BorderTop(false).
BorderLeft(false).
BorderRight(false).
BorderBottom(false)
2023-01-02 18:24:48 +00:00
)
type Model struct {
2023-01-03 21:46:16 +00:00
ctx *ctx.Ctx
tk *toolkit.ToolKit
2023-01-02 18:24:48 +00:00
viewport viewport.Model
a *aggregator.Aggregator
glam *glamour.TermRenderer
buffer string
replyIDs []string
activePost *post.Post
allReplies []*reply.Reply
activeReply *reply.Reply
}
func (m Model) Init() tea.Cmd {
return nil
}
func NewModel(c *ctx.Ctx) Model {
m := Model{
2023-01-03 20:02:43 +00:00
ctx: c,
tk: toolkit.New(
WIN_ID,
c.Theme,
c.Logger,
),
2023-01-02 18:24:48 +00:00
buffer: "",
replyIDs: []string{},
}
m.tk.KeymapAdd("reply", "reply (prefix with #, e.g. '2r')", "r")
m.tk.KeymapAdd("open", "open", "o")
2023-01-03 20:16:34 +00:00
2023-01-03 21:46:16 +00:00
m.a, _ = aggregator.New(m.ctx)
m.tk.SetViewFunc(buildView)
2023-01-03 21:27:01 +00:00
m.tk.SetMsgHandling(toolkit.MsgHandling{
OnKeymapKey: []toolkit.MsgHandlingKeymapKey{
{
ID: "reply",
Handler: handleReply,
},
{
ID: "open",
Handler: handleOpen,
},
2023-01-03 21:27:01 +00:00
},
OnAnyNumberKey: handleNumberKeys,
OnAnyUncaughtKey: handleUncaughtKeys,
OnViewResize: handleViewResize,
OnWinOpenCmd: handleWinOpenCmd,
OnWinRefreshDataCmd: handleWinRefreshDataCmd,
2023-01-03 21:27:01 +00:00
OnWinFreshDataCmd: handleWinFreshDataCmd,
})
2023-01-02 18:24:48 +00:00
return m
}
2023-01-03 21:27:01 +00:00
func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
var cmds []tea.Cmd
ret, cmds := m.tk.HandleMsg(&m, msg)
if ret {
return m, tea.Batch(cmds...)
2023-01-02 18:24:48 +00:00
}
var cmd tea.Cmd
m.viewport, cmd = m.viewport.Update(msg)
cmds = append(cmds, cmd)
return m, tea.Batch(cmds...)
}
2023-01-03 21:47:17 +00:00
func (m *Model) loadPost(p *post.Post, delay ...time.Duration) tea.Cmd {
2023-01-03 21:47:17 +00:00
return func() tea.Msg {
if len(delay) == 1 {
time.Sleep(delay[0])
}
2023-01-03 21:47:17 +00:00
if err := m.a.LoadPost(p); err != nil {
m.ctx.Logger.Error(err)
c := cmd.New(
cmd.MsgError,
WIN_ID,
cmd.Arg{Name: "error", Value: err},
)
return *c
}
c := cmd.New(
cmd.WinFreshData,
WIN_ID,
cmd.Arg{Name: "post", Value: p},
)
return *c
}
}