1package util
2
3import (
4 "log/slog"
5 "time"
6
7 tea "github.com/charmbracelet/bubbletea/v2"
8)
9
10type Cursor interface {
11 Cursor() *tea.Cursor
12}
13
14type Model interface {
15 Init() tea.Cmd
16 Update(tea.Msg) (Model, tea.Cmd)
17 View() string
18}
19
20func CmdHandler(msg tea.Msg) tea.Cmd {
21 return func() tea.Msg {
22 return msg
23 }
24}
25
26func ReportError(err error) tea.Cmd {
27 slog.Error("Error reported", "error", err)
28 return CmdHandler(InfoMsg{
29 Type: InfoTypeError,
30 Msg: err.Error(),
31 })
32}
33
34type InfoType int
35
36const (
37 InfoTypeInfo InfoType = iota
38 InfoTypeWarn
39 InfoTypeError
40)
41
42func ReportInfo(info string) tea.Cmd {
43 return CmdHandler(InfoMsg{
44 Type: InfoTypeInfo,
45 Msg: info,
46 })
47}
48
49func ReportWarn(warn string) tea.Cmd {
50 return CmdHandler(InfoMsg{
51 Type: InfoTypeWarn,
52 Msg: warn,
53 })
54}
55
56type (
57 InfoMsg struct {
58 Type InfoType
59 Msg string
60 TTL time.Duration
61 }
62 ClearStatusMsg struct{}
63)