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 tea.Model
16 tea.ViewModel
17}
18
19func CmdHandler(msg tea.Msg) tea.Cmd {
20 return func() tea.Msg {
21 return msg
22 }
23}
24
25func ReportError(err error) tea.Cmd {
26 slog.Error("Error reported", "error", err)
27 return CmdHandler(InfoMsg{
28 Type: InfoTypeError,
29 Msg: err.Error(),
30 })
31}
32
33type InfoType int
34
35const (
36 InfoTypeInfo InfoType = iota
37 InfoTypeSuccess
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)