-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
143 lines (131 loc) · 3.06 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package main
import (
"fmt"
"os"
"unicode/utf8"
tea "github.com/charmbracelet/bubbletea"
)
type model struct {
cursor int
todos []string
selected map[int]struct{}
adding bool
updating bool
newTodo string
}
func initialModel() model {
return model{
todos: []string{"Hello, Hamsurang!"},
selected: make(map[int]struct{}),
}
}
func (m model) Init() tea.Cmd {
return nil
}
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case tea.KeyMsg:
if m.adding || m.updating {
switch msg.Type {
case tea.KeyEnter:
if m.newTodo != "" {
if m.adding {
m.todos = append(m.todos, m.newTodo)
m.adding = false
} else if m.updating {
m.todos[m.cursor] = m.newTodo
m.updating = false
}
m.newTodo = ""
}
case tea.KeyEsc:
m.adding = false
m.updating = false
m.newTodo = ""
case tea.KeyBackspace:
if len(m.newTodo) > 0 {
_, size := utf8.DecodeLastRuneInString(m.newTodo)
m.newTodo = m.newTodo[:len(m.newTodo)-size]
}
default:
if msg.Type == tea.KeyRunes {
m.newTodo += string(msg.Runes)
}
}
} else {
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.todos)-1 {
m.cursor++
}
case "enter", " ":
_, ok := m.selected[m.cursor]
if ok {
delete(m.selected, m.cursor)
} else {
m.selected[m.cursor] = struct{}{}
}
case "a":
m.adding = true
m.newTodo = ""
case "u":
if len(m.todos) > 0 {
m.updating = true
m.newTodo = m.todos[m.cursor]
}
case "g":
// Handle delete
if len(m.todos) > 0 {
m.todos = append(m.todos[:m.cursor], m.todos[m.cursor+1:]...)
delete(m.selected, m.cursor)
if m.cursor > 0 {
m.cursor--
}
}
}
}
}
return m, nil
}
func (m model) View() string {
if m.adding {
return fmt.Sprintf("Add a new task: %s", m.newTodo)
}
if m.updating {
return fmt.Sprintf("Update the task: %s", m.newTodo)
}
s := `
Todo List - Use the arrow keys to navigate and [space] to mark tasks as done:
┌───────────────────────────────────────────────┐
│ [a] Add a new task │
│ [u] Update the current task │
│ [d] Delete the current task │
│ [q] Quit │
└───────────────────────────────────────────────┘
`
for i, todo := range m.todos {
cursor := " "
if m.cursor == i {
cursor = ">"
}
checked := " "
if _, ok := m.selected[i]; ok {
checked = "x"
}
s += fmt.Sprintf("%s [%s] %s\n", cursor, checked, todo)
}
return s
}
func main() {
p := tea.NewProgram(initialModel())
if err := p.Start(); err != nil {
fmt.Fprintf(os.Stderr, "Alas, there's been an error: %v", err)
os.Exit(1)
}
}