forked from charmbracelet/huh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
field_select.go
339 lines (293 loc) · 7.86 KB
/
field_select.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
package huh
import (
"fmt"
"strings"
"github.com/charmbracelet/bubbles/key"
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/huh/accessibility"
"github.com/charmbracelet/lipgloss"
)
// Select is a form select field.
type Select[T any] struct {
value *T
key string
// customization
title string
description string
options []Option[T]
filteredOptions []Option[T]
// error handling
validate func(T) error
err error
// state
selected int
focused bool
filtering bool
filter textinput.Model
// options
width int
accessible bool
theme *Theme
keymap *SelectKeyMap
}
// NewSelect returns a new select field.
func NewSelect[T any]() *Select[T] {
filter := textinput.New()
filter.Prompt = "/"
return &Select[T]{
options: []Option[T]{},
value: new(T),
validate: func(T) error { return nil },
filtering: false,
filter: filter,
}
}
// Value sets the value of the select field.
func (s *Select[T]) Value(value *T) *Select[T] {
s.value = value
return s
}
// Key sets the key of the select field which can be used to retrieve the value
// after submission.
func (s *Select[T]) Key(key string) *Select[T] {
s.key = key
return s
}
// Title sets the title of the select field.
func (s *Select[T]) Title(title string) *Select[T] {
s.title = title
return s
}
// Description sets the description of the select field.
func (s *Select[T]) Description(description string) *Select[T] {
s.description = description
return s
}
// Options sets the options of the select field.
func (s *Select[T]) Options(options ...Option[T]) *Select[T] {
if len(options) <= 0 {
return s
}
s.options = options
s.filteredOptions = options
// Set the cursor to the last selected option.
for i, option := range options {
if option.selected {
s.selected = i
}
}
return s
}
// Validate sets the validation function of the select field.
func (s *Select[T]) Validate(validate func(T) error) *Select[T] {
s.validate = validate
return s
}
// Error returns the error of the select field.
func (s *Select[T]) Error() error {
return s.err
}
// Focus focuses the select field.
func (s *Select[T]) Focus() tea.Cmd {
s.focused = true
return nil
}
// Blur blurs the select field.
func (s *Select[T]) Blur() tea.Cmd {
s.focused = false
s.err = s.validate(*s.value)
return nil
}
// KeyBinds returns the help keybindings for the select field.
func (s *Select[T]) KeyBinds() []key.Binding {
return []key.Binding{s.keymap.Up, s.keymap.Down, s.keymap.Filter, s.keymap.SetFilter, s.keymap.ClearFilter, s.keymap.Next, s.keymap.Prev}
}
// Init initializes the select field.
func (s *Select[T]) Init() tea.Cmd {
return nil
}
// Update updates the select field.
func (s *Select[T]) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
var cmd tea.Cmd
if s.filtering {
s.filter, cmd = s.filter.Update(msg)
}
switch msg := msg.(type) {
case tea.KeyMsg:
s.err = nil
switch {
case key.Matches(msg, s.keymap.Filter):
s.setFilter(true)
return s, s.filter.Focus()
case key.Matches(msg, s.keymap.SetFilter):
if len(s.filteredOptions) <= 0 {
s.filter.SetValue("")
s.filteredOptions = s.options
}
s.setFilter(false)
case key.Matches(msg, s.keymap.ClearFilter):
s.filter.SetValue("")
s.filteredOptions = s.options
s.setFilter(false)
case key.Matches(msg, s.keymap.Up):
// When filtering we should ignore j/k keybindings
if s.filtering && msg.String() == "k" {
break
}
s.selected = max(s.selected-1, 0)
case key.Matches(msg, s.keymap.Down):
// When filtering we should ignore j/k keybindings
if s.filtering && msg.String() == "j" {
break
}
s.selected = min(s.selected+1, len(s.filteredOptions)-1)
case key.Matches(msg, s.keymap.Prev):
if s.selected >= len(s.filteredOptions) {
break
}
value := s.filteredOptions[s.selected].Value
s.err = s.validate(value)
if s.err != nil {
return s, nil
}
*s.value = value
return s, prevField
case key.Matches(msg, s.keymap.Next):
if s.selected >= len(s.filteredOptions) {
break
}
value := s.filteredOptions[s.selected].Value
s.setFilter(false)
s.err = s.validate(value)
if s.err != nil {
return s, nil
}
*s.value = value
return s, nextField
}
if s.filtering {
s.filteredOptions = s.options
if s.filter.Value() != "" {
s.filteredOptions = nil
for _, option := range s.options {
if s.filterFunc(option.Key) {
s.filteredOptions = append(s.filteredOptions, option)
}
}
}
if len(s.filteredOptions) > 0 {
s.selected = min(s.selected, len(s.filteredOptions)-1)
}
}
}
return s, cmd
}
// View renders the select field.
func (s *Select[T]) View() string {
styles := s.theme.Blurred
if s.focused {
styles = s.theme.Focused
}
var sb strings.Builder
if s.filtering {
sb.WriteString(s.filter.View())
} else if s.filter.Value() != "" {
sb.WriteString(styles.Title.Render(s.title) + styles.Description.Render("/"+s.filter.Value()))
} else {
sb.WriteString(styles.Title.Render(s.title))
}
if s.err != nil {
sb.WriteString(styles.ErrorIndicator.String())
}
sb.WriteString("\n")
if s.description != "" {
sb.WriteString(styles.Description.Render(s.description) + "\n")
}
c := styles.SelectSelector.String()
for i, option := range s.filteredOptions {
if s.selected == i {
sb.WriteString(c + styles.SelectedOption.Render(option.Key))
} else {
sb.WriteString(strings.Repeat(" ", lipgloss.Width(c)) + styles.Option.Render(option.Key))
}
if i < len(s.options)-1 {
sb.WriteString("\n")
}
}
for i := len(s.filteredOptions); i < len(s.options)-1; i++ {
sb.WriteString("\n")
}
return styles.Base.Render(sb.String())
}
// setFilter sets the filter of the select field.
func (s *Select[T]) setFilter(filter bool) {
s.filtering = filter
s.keymap.SetFilter.SetEnabled(filter)
s.keymap.Filter.SetEnabled(!filter)
s.keymap.ClearFilter.SetEnabled(!filter && s.filter.Value() != "")
}
// filterFunc returns true if the option matches the filter.
func (s *Select[T]) filterFunc(option string) bool {
// XXX: remove diacritics or allow customization of filter function.
return strings.Contains(strings.ToLower(option), strings.ToLower(s.filter.Value()))
}
// Run runs the select field.
func (s *Select[T]) Run() error {
if s.accessible {
return s.runAccessible()
}
return Run(s)
}
// runAccessible runs an accessible select field.
func (s *Select[T]) runAccessible() error {
var sb strings.Builder
sb.WriteString(s.theme.Focused.Title.Render(s.title) + "\n")
for i, option := range s.options {
sb.WriteString(fmt.Sprintf("%d. %s", i+1, option.Key))
sb.WriteString("\n")
}
fmt.Println(s.theme.Blurred.Base.Render(sb.String()))
for {
choice := accessibility.PromptInt("Choose: ", 1, len(s.options))
option := s.options[choice-1]
if err := s.validate(option.Value); err != nil {
fmt.Println(err.Error())
continue
}
fmt.Println(s.theme.Focused.SelectedOption.Render("Chose: " + option.Key + "\n"))
*s.value = option.Value
break
}
return nil
}
// WithTheme sets the theme of the select field.
func (s *Select[T]) WithTheme(theme *Theme) Field {
s.theme = theme
s.filter.Cursor.Style = s.theme.Focused.TextInput.Cursor
s.filter.PromptStyle = s.theme.Focused.TextInput.Prompt
return s
}
// WithKeyMap sets the keymap on a select field.
func (s *Select[T]) WithKeyMap(k *KeyMap) Field {
s.keymap = &k.Select
return s
}
// WithAccessible sets the accessible mode of the select field.
func (s *Select[T]) WithAccessible(accessible bool) Field {
s.accessible = accessible
return s
}
// WithWidth sets the width of the select field.
func (s *Select[T]) WithWidth(width int) Field {
s.width = width
return s
}
// GetKey returns the key of the field.
func (s *Select[T]) GetKey() string {
return s.key
}
// GetValue returns the value of the field.
func (s *Select[T]) GetValue() any {
return *s.value
}