1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-12-04 14:46:37 -05:00
neonmodem/ui/windows/postshow/postshow.go

127 lines
2.4 KiB
Go
Raw Normal View History

2023-01-02 15:33:12 -05:00
package postshow
2023-01-02 13:24:48 -05:00
import (
"github.com/charmbracelet/bubbles/viewport"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/glamour"
"github.com/charmbracelet/lipgloss"
"github.com/mrusme/gobbs/aggregator"
"github.com/mrusme/gobbs/models/post"
"github.com/mrusme/gobbs/models/reply"
2023-01-03 16:47:17 -05:00
"github.com/mrusme/gobbs/ui/cmd"
2023-01-02 13:24:48 -05:00
"github.com/mrusme/gobbs/ui/ctx"
2023-01-03 14:53:32 -05:00
"github.com/mrusme/gobbs/ui/toolkit"
2023-01-02 13:24:48 -05:00
)
var (
2023-01-02 15:33:12 -05:00
WIN_ID = "postshow"
2023-01-02 15:29:29 -05:00
2023-01-02 13:24:48 -05:00
viewportStyle = lipgloss.NewStyle().
2023-01-02 15:29:29 -05:00
Margin(0, 0, 0, 0).
Padding(0, 0).
BorderTop(false).
BorderLeft(false).
BorderRight(false).
BorderBottom(false)
2023-01-02 13:24:48 -05:00
)
type Model struct {
2023-01-03 16:46:16 -05:00
ctx *ctx.Ctx
tk *toolkit.ToolKit
2023-01-02 13:24:48 -05: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 15:02:43 -05:00
ctx: c,
tk: toolkit.New(
WIN_ID,
c.Theme,
c.Logger,
),
2023-01-02 13:24:48 -05:00
buffer: "",
replyIDs: []string{},
}
m.tk.KeymapAdd("reply", "reply (prefix with #, e.g. '2r')", "r")
m.tk.KeymapAdd("open", "open", "o")
2023-01-03 15:16:34 -05:00
2023-01-03 16:46:16 -05:00
m.a, _ = aggregator.New(m.ctx)
m.tk.SetViewFunc(buildView)
2023-01-03 16:27:01 -05:00
m.tk.SetMsgHandling(toolkit.MsgHandling{
OnKeymapKey: []toolkit.MsgHandlingKeymapKey{
{
ID: "reply",
Handler: handleReply,
},
{
ID: "open",
Handler: handleOpen,
},
2023-01-03 16:27:01 -05:00
},
OnAnyNumberKey: handleNumberKeys,
OnAnyUncaughtKey: handleUncaughtKeys,
OnViewResize: handleViewResize,
OnWinOpenCmd: handleWinOpenCmd,
OnWinRefreshDataCmd: handleWinOpenCmd,
OnWinFreshDataCmd: handleWinFreshDataCmd,
})
2023-01-02 13:24:48 -05:00
return m
}
2023-01-03 16:27:01 -05: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 13:24:48 -05:00
}
var cmd tea.Cmd
m.viewport, cmd = m.viewport.Update(msg)
cmds = append(cmds, cmd)
return m, tea.Batch(cmds...)
}
2023-01-03 16:47:17 -05:00
func (m *Model) loadPost(p *post.Post) tea.Cmd {
return func() tea.Msg {
m.ctx.Logger.Debug("------ EXECUTED -----")
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
}
}