2020-07-23 17:30:25 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
|
|
)
|
|
|
|
|
|
|
|
type model struct {
|
|
|
|
cursor int
|
|
|
|
choices []string
|
|
|
|
selected map[int]struct{}
|
|
|
|
}
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
func initialModel() model {
|
|
|
|
return model{
|
|
|
|
choices: []string{"Buy carrots", "Buy celery", "Buy kohlrabi"},
|
|
|
|
|
|
|
|
// A map which indicates which choices are selected. We're using
|
|
|
|
// the map like a mathematical set. The keys refer to the indexes
|
|
|
|
// of the `choices` slice, above.
|
|
|
|
selected: make(map[int]struct{}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-15 20:26:02 -04:00
|
|
|
func (m model) Init() tea.Cmd {
|
|
|
|
return nil
|
|
|
|
}
|
2020-07-23 17:30:25 -04:00
|
|
|
|
2020-10-15 20:26:02 -04:00
|
|
|
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
2020-07-23 17:30:25 -04:00
|
|
|
switch msg := msg.(type) {
|
|
|
|
case tea.KeyMsg:
|
|
|
|
switch msg.String() {
|
|
|
|
case "ctrl+c", "q":
|
|
|
|
return m, tea.Quit
|
|
|
|
case "up", "k":
|
|
|
|
if m.cursor > 0 {
|
|
|
|
m.cursor--
|
|
|
|
}
|
|
|
|
case "down", "j":
|
|
|
|
if m.cursor < len(m.choices)-1 {
|
|
|
|
m.cursor++
|
|
|
|
}
|
|
|
|
case "enter", " ":
|
|
|
|
_, ok := m.selected[m.cursor]
|
|
|
|
if ok {
|
|
|
|
delete(m.selected, m.cursor)
|
|
|
|
} else {
|
|
|
|
m.selected[m.cursor] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
2020-10-15 20:26:02 -04:00
|
|
|
func (m model) View() string {
|
2020-07-23 17:30:25 -04:00
|
|
|
s := "What should we buy at the market?\n\n"
|
|
|
|
|
|
|
|
for i, choice := range m.choices {
|
|
|
|
cursor := " "
|
|
|
|
if m.cursor == i {
|
|
|
|
cursor = ">"
|
|
|
|
}
|
|
|
|
|
|
|
|
checked := " "
|
|
|
|
if _, ok := m.selected[i]; ok {
|
|
|
|
checked = "x"
|
|
|
|
}
|
|
|
|
|
|
|
|
s += fmt.Sprintf("%s [%s] %s\n", cursor, checked, choice)
|
|
|
|
}
|
|
|
|
|
|
|
|
s += "\nPress q to quit.\n"
|
|
|
|
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2021-09-04 14:36:49 -04:00
|
|
|
p := tea.NewProgram(initialModel())
|
2022-10-07 17:56:12 -04:00
|
|
|
if _, err := p.Run(); err != nil {
|
2020-07-23 17:30:25 -04:00
|
|
|
fmt.Printf("Alas, there's been an error: %v", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|