2024-05-30 00:44:40 -06:00
|
|
|
package shared
|
|
|
|
|
|
|
|
import (
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
|
|
)
|
|
|
|
|
2024-09-16 09:40:04 -06:00
|
|
|
// An analogue to tea.Model with support for checking if the model has been
|
|
|
|
// initialized before
|
|
|
|
type ViewModel interface {
|
|
|
|
Init() tea.Cmd
|
|
|
|
Update(tea.Msg) (ViewModel, tea.Cmd)
|
|
|
|
|
2024-09-22 17:34:53 -06:00
|
|
|
// View methods
|
|
|
|
Header(width int) string
|
|
|
|
// Render the view's main content into a container of the given dimensions
|
|
|
|
Content(width, height int) string
|
|
|
|
Footer(width int) string
|
2024-05-30 00:44:40 -06:00
|
|
|
}
|
|
|
|
|
2024-09-16 09:40:04 -06:00
|
|
|
type View int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ViewChat View = iota
|
|
|
|
ViewConversations
|
|
|
|
//StateSettings
|
|
|
|
//StateHelp
|
|
|
|
)
|
|
|
|
|
2024-05-30 00:44:40 -06:00
|
|
|
type (
|
|
|
|
// send to change the current state
|
|
|
|
MsgViewChange View
|
|
|
|
// sent to a state when it is entered
|
|
|
|
MsgViewEnter struct{}
|
2024-09-22 17:34:53 -06:00
|
|
|
// sent when a recoverable error occurs (displayed to user)
|
2024-05-30 00:44:40 -06:00
|
|
|
MsgError error
|
2024-09-16 09:40:04 -06:00
|
|
|
// sent when the view has handled a key input
|
|
|
|
MsgKeyHandled tea.KeyMsg
|
2024-05-30 00:44:40 -06:00
|
|
|
)
|
|
|
|
|
2024-09-16 08:04:08 -06:00
|
|
|
func ViewEnter() tea.Cmd {
|
|
|
|
return func() tea.Msg {
|
|
|
|
return MsgViewEnter{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-20 20:47:03 -06:00
|
|
|
func ChangeView(view View) tea.Cmd {
|
|
|
|
return func() tea.Msg {
|
|
|
|
return MsgViewChange(view)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-16 09:40:04 -06:00
|
|
|
func KeyHandled(key tea.KeyMsg) tea.Cmd {
|
|
|
|
return func() tea.Msg {
|
|
|
|
return MsgKeyHandled(key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-30 00:44:40 -06:00
|
|
|
func WrapError(err error) tea.Cmd {
|
|
|
|
return func() tea.Msg {
|
|
|
|
return MsgError(err)
|
|
|
|
}
|
|
|
|
}
|