-
Notifications
You must be signed in to change notification settings - Fork 132
/
form.go
278 lines (232 loc) · 5.89 KB
/
form.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package huh
import (
"errors"
"github.com/charmbracelet/bubbles/key"
"github.com/charmbracelet/bubbles/paginator"
tea "github.com/charmbracelet/bubbletea"
)
var (
// ErrUserAborted is the error returned when a user exits the form before submitting.
ErrUserAborted = errors.New("user aborted")
)
// Form is a collection of groups that are displayed one at a time on a "page".
//
// The form can navigate between groups and is complete once all the groups are
// complete.
type Form struct {
// collection of groups
groups []*Group
// navigation
paginator paginator.Model
// whether or not to use bubble tea rendering for accessibility
// purposes, if true, the form will render with basic prompting primitives
// to be more accessible to screen readers.
accessible bool
quitting bool
aborted bool
// options
width int
theme *Theme
keymap *KeyMap
}
// NewForm returns a form with the given groups and default themes and
// keybindings.
//
// Use With* methods to customize the form with options, such as setting
// different themes and keybindings.
func NewForm(groups ...*Group) *Form {
p := paginator.New()
p.SetTotalPages(len(groups))
f := Form{
groups: groups,
paginator: p,
theme: NewCharmTheme(),
keymap: NewDefaultKeyMap(),
width: 80,
}
// NB: If dynamic forms come into play this will need to be applied when
// groups and fields are added.
f.WithTheme(f.theme)
f.WithKeyMap(f.keymap)
f.WithWidth(f.width)
return &f
}
// Field is a primitive of a form.
//
// A field represents a single input control on a form such as a text input,
// confirm button, select option, etc...
//
// Each field implements the Bubble Tea Model interface.
type Field interface {
// Bubble Tea Model
Init() tea.Cmd
Update(tea.Msg) (tea.Model, tea.Cmd)
View() string
// Bubble Tea Events
Blur() tea.Cmd
Focus() tea.Cmd
// Errors and Validation
Error() error
// Run runs the field individually.
Run() error
// KeyBinds returns help keybindings.
KeyBinds() []key.Binding
// WithTheme sets the theme on a field.
WithTheme(*Theme) Field
// WithAccessible sets whether the field should run in accessible mode.
WithAccessible(bool) Field
// WithKeyMap sets the keymap on a field.
WithKeyMap(*KeyMap) Field
// WithWidth sets the width of a field.
WithWidth(int) Field
}
// nextGroupMsg is a message to move to the next group.
type nextGroupMsg struct{}
// prevGroupMsg is a message to move to the previous group.
type prevGroupMsg struct{}
// nextGroup is the command to move to the next group.
func nextGroup() tea.Msg {
return nextGroupMsg{}
}
// prevGroup is the command to move to the previous group.
func prevGroup() tea.Msg {
return prevGroupMsg{}
}
// WithAccessible sets the form to run in accessible mode to avoid redrawing the
// views which makes it easier for screen readers to read and describe the form.
//
// This avoids using the Bubble Tea renderer and instead simply uses basic
// terminal prompting to gather input which degrades the user experience but
// provides accessibility.
func (f *Form) WithAccessible(accessible bool) *Form {
f.accessible = accessible
return f
}
// WithHelp sets whether or not the form should show help.
//
// This allows the form groups and field to show what keybindings are available
// to the user.
func (f *Form) WithHelp(v bool) *Form {
for _, group := range f.groups {
group.WithHelp(v)
}
return f
}
// WithTheme sets the theme on a form.
//
// This allows all groups and fields to be themed consistently, however themes
// can be applied to each group and field individually for more granular
// control.
func (f *Form) WithTheme(theme *Theme) *Form {
if theme == nil {
return f
}
f.theme = theme
for _, group := range f.groups {
group.WithTheme(theme)
}
return f
}
// WithKeyMap sets the keymap on a form.
//
// This allows customization of the form key bindings.
func (f *Form) WithKeyMap(keymap *KeyMap) *Form {
if keymap == nil {
return f
}
f.keymap = keymap
for _, group := range f.groups {
group.WithKeyMap(keymap)
}
return f
}
// WithWidth sets the width of a form
//
// This allows all groups and fields to be sized consistently, however width
// can be applied to each group and field individually for more granular
// control.
func (f *Form) WithWidth(width int) *Form {
if width <= 0 {
return f
}
f.width = width
for _, group := range f.groups {
group.WithWidth(width)
}
return f
}
// Init initializes the form.
func (f *Form) Init() tea.Cmd {
var cmds []tea.Cmd
for _, group := range f.groups {
cmds = append(cmds, group.Init())
}
return tea.Batch(cmds...)
}
// Update updates the form.
func (f *Form) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
page := f.paginator.Page
group := f.groups[page]
switch msg := msg.(type) {
case tea.KeyMsg:
switch {
case key.Matches(msg, f.keymap.Quit):
f.aborted = true
f.quitting = true
return f, tea.Quit
}
case nextGroupMsg:
if len(group.Errors()) > 0 {
return f, nil
}
if f.paginator.OnLastPage() {
f.quitting = true
return f, tea.Quit
}
f.paginator.NextPage()
case prevGroupMsg:
if len(group.Errors()) > 0 {
return f, nil
}
f.paginator.PrevPage()
}
m, cmd := group.Update(msg)
f.groups[page] = m.(*Group)
return f, cmd
}
// View renders the form.
func (f *Form) View() string {
if f.quitting {
return ""
}
return f.groups[f.paginator.Page].View()
}
// Run runs the form.
func (f *Form) Run() error {
if len(f.groups) == 0 {
return nil
}
if f.accessible {
return f.runAccessible()
}
return f.run()
}
// run runs the form in normal mode.
func (f *Form) run() error {
m, err := tea.NewProgram(f).Run()
if m.(*Form).aborted {
err = ErrUserAborted
}
return err
}
// runAccessible runs the form in accessible mode.
func (f *Form) runAccessible() error {
for _, group := range f.groups {
for _, field := range group.fields {
field.Init()
field.Focus()
_ = field.WithAccessible(true).Run()
}
}
return nil
}