forked from charmbracelet/huh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
field_filepicker.go
371 lines (319 loc) · 8.73 KB
/
field_filepicker.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
package huh
import (
"errors"
"fmt"
"os"
"strings"
xstrings "github.com/charmbracelet/x/exp/strings"
"github.com/charmbracelet/bubbles/filepicker"
"github.com/charmbracelet/bubbles/key"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/huh/accessibility"
"github.com/charmbracelet/lipgloss"
)
// FilePicker is a form file file field.
type FilePicker struct {
value *string
key string
picker filepicker.Model
// state
focused bool
picking bool
// customization
title string
description string
// error handling
validate func(string) error
err error
// options
width int
height int
accessible bool
theme *Theme
keymap FilePickerKeyMap
}
// NewFilePicker returns a new file field.
func NewFilePicker() *FilePicker {
fp := filepicker.New()
fp.ShowSize = false
fp.AutoHeight = false
if cmd := fp.Init(); cmd != nil {
fp, _ = fp.Update(cmd())
}
return &FilePicker{
value: new(string),
validate: func(string) error { return nil },
picker: fp,
theme: ThemeCharm(),
}
}
// CurrentDirectory sets the directory of the file field.
func (f *FilePicker) CurrentDirectory(directory string) *FilePicker {
f.picker.CurrentDirectory = directory
return f
}
// Picking sets whether the file picker should be in the picking files state.
func (f *FilePicker) Picking(v bool) *FilePicker {
f.setPicking(v)
return f
}
// ShowHidden sets whether to show hidden files.
func (f *FilePicker) ShowHidden(v bool) *FilePicker {
f.picker.ShowHidden = v
return f
}
// Value sets the value of the file field.
func (f *FilePicker) Value(value *string) *FilePicker {
f.value = value
return f
}
// Key sets the key of the file field which can be used to retrieve the value
// after submission.
func (f *FilePicker) Key(key string) *FilePicker {
f.key = key
return f
}
// Title sets the title of the file field.
func (f *FilePicker) Title(title string) *FilePicker {
f.title = title
return f
}
// Description sets the description of the file field.
func (f *FilePicker) Description(description string) *FilePicker {
f.description = description
return f
}
// AllowedTypes sets the allowed types of the file field. These will be the only
// valid file types accepted, other files will show as disabled.
func (f *FilePicker) AllowedTypes(types []string) *FilePicker {
f.picker.AllowedTypes = types
return f
}
// Height sets the height of the file field. If the number of options
// exceeds the height, the file field will become scrollable.
func (f *FilePicker) Height(height int) *FilePicker {
adjust := 0
if f.title != "" {
adjust++
}
if f.description != "" {
adjust++
}
f.picker.Height = height - adjust
f.picker.AutoHeight = false
return f
}
// Validate sets the validation function of the file field.
func (f *FilePicker) Validate(validate func(string) error) *FilePicker {
f.validate = validate
return f
}
// Error returns the error of the file field.
func (f *FilePicker) Error() error {
return f.err
}
// Skip returns whether the file should be skipped or should be blocking.
func (*FilePicker) Skip() bool {
return false
}
// Zoom returns whether the input should be zoomed.
func (f *FilePicker) Zoom() bool {
return f.picking
}
// Focus focuses the file field.
func (f *FilePicker) Focus() tea.Cmd {
f.focused = true
return f.picker.Init()
}
// Blur blurs the file field.
func (f *FilePicker) Blur() tea.Cmd {
f.focused = false
f.setPicking(false)
f.err = f.validate(*f.value)
return nil
}
// KeyBinds returns the help keybindings for the file field.
func (f *FilePicker) KeyBinds() []key.Binding {
return []key.Binding{f.keymap.Up, f.keymap.Down, f.keymap.Close, f.keymap.Open, f.keymap.Prev, f.keymap.Next, f.keymap.Submit}
}
// Init initializes the file field.
func (f *FilePicker) Init() tea.Cmd {
return f.picker.Init()
}
// Update updates the file field.
func (f *FilePicker) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
f.err = nil
switch msg := msg.(type) {
case tea.KeyMsg:
switch {
case key.Matches(msg, f.keymap.Open):
if f.picking {
break
}
f.setPicking(true)
return f, f.picker.Init()
case key.Matches(msg, f.keymap.Close):
f.setPicking(false)
return f, nil
case key.Matches(msg, f.keymap.Next):
f.setPicking(false)
return f, nextField
case key.Matches(msg, f.keymap.Prev):
f.setPicking(false)
return f, prevField
}
}
var cmd tea.Cmd
f.picker, cmd = f.picker.Update(msg)
didSelect, file := f.picker.DidSelectFile(msg)
if didSelect {
*f.value = file
f.setPicking(false)
return f, nextField
}
didSelect, _ = f.picker.DidSelectDisabledFile(msg)
if didSelect {
f.err = errors.New(xstrings.EnglishJoin(f.picker.AllowedTypes, true) + " files only")
return f, nil
}
return f, cmd
}
// View renders the file field.
func (f *FilePicker) View() string {
styles := f.theme.Blurred
if f.focused {
styles = f.theme.Focused
}
var sb strings.Builder
if f.title != "" {
sb.WriteString(styles.Title.Render(f.title) + "\n")
}
if f.description != "" {
sb.WriteString(styles.Description.Render(f.description) + "\n")
}
if f.picking {
sb.WriteString(strings.TrimSuffix(f.picker.View(), "\n"))
} else {
if *f.value != "" {
sb.WriteString(styles.SelectedOption.Render(*f.value))
} else {
sb.WriteString(styles.TextInput.Placeholder.Render("No file selected."))
}
}
return styles.Base.Render(sb.String())
}
func (f *FilePicker) setPicking(v bool) {
f.picking = v
f.keymap.Close.SetEnabled(v)
f.keymap.Up.SetEnabled(v)
f.keymap.Down.SetEnabled(v)
f.keymap.Select.SetEnabled(v)
f.keymap.Back.SetEnabled(v)
f.picker.KeyMap.Up.SetEnabled(v)
f.picker.KeyMap.Down.SetEnabled(v)
f.picker.KeyMap.Select.SetEnabled(v)
f.picker.KeyMap.Open.SetEnabled(v)
f.picker.KeyMap.Back.SetEnabled(v)
}
// Run runs the file field.
func (f *FilePicker) Run() error {
if f.accessible {
return f.runAccessible()
}
return Run(f)
}
// runAccessible runs an accessible file field.
func (f *FilePicker) runAccessible() error {
fmt.Println(f.theme.Blurred.Base.Render(f.theme.Focused.Title.Render(f.title)))
fmt.Println()
validateFile := func(s string) error {
// is the string a file?
if _, err := os.Open(s); err != nil {
return errors.New("not a file")
}
// is it one of the allowed types?
valid := false
for _, ext := range f.picker.AllowedTypes {
if strings.HasSuffix(s, ext) {
valid = true
break
}
}
if !valid {
return errors.New("cannot select: " + s)
}
// does it pass user validation?
return f.validate(s)
}
*f.value = accessibility.PromptString("File: ", validateFile)
fmt.Println(f.theme.Focused.SelectedOption.Render(*f.value + "\n"))
return nil
}
// WithTheme sets the theme of the file field.
func (f *FilePicker) WithTheme(theme *Theme) Field {
f.theme = theme
// XXX: add specific themes
f.picker.Styles = filepicker.Styles{
DisabledCursor: lipgloss.Style{},
Cursor: theme.Focused.TextInput.Prompt,
Symlink: lipgloss.NewStyle(),
Directory: theme.Focused.Directory,
File: theme.Focused.File,
DisabledFile: theme.Focused.TextInput.Placeholder,
Permission: theme.Focused.TextInput.Placeholder,
Selected: theme.Focused.SelectedOption,
DisabledSelected: theme.Focused.TextInput.Placeholder,
FileSize: theme.Focused.TextInput.Placeholder,
EmptyDirectory: theme.Focused.TextInput.Placeholder.Copy().SetString("No files found."),
}
return f
}
// WithKeyMap sets the keymap on a file field.
func (f *FilePicker) WithKeyMap(k *KeyMap) Field {
f.keymap = k.FilePicker
f.picker.KeyMap = filepicker.KeyMap{
GoToTop: k.FilePicker.GoToTop,
GoToLast: k.FilePicker.GoToLast,
Down: k.FilePicker.Down,
Up: k.FilePicker.Up,
PageUp: k.FilePicker.PageUp,
PageDown: k.FilePicker.PageDown,
Back: k.FilePicker.Back,
Open: k.FilePicker.Open,
Select: k.FilePicker.Select,
}
f.setPicking(f.picking)
return f
}
// WithAccessible sets the accessible mode of the file field.
func (f *FilePicker) WithAccessible(accessible bool) Field {
f.accessible = accessible
return f
}
// WithWidth sets the width of the file field.
func (f *FilePicker) WithWidth(width int) Field {
f.width = width
return f
}
// WithHeight sets the height of the file field.
func (f *FilePicker) WithHeight(height int) Field {
f.height = height
f.Height(height)
f.picker, _ = f.picker.Update(nil)
return f
}
// WithPosition sets the position of the file field.
func (f *FilePicker) WithPosition(p FieldPosition) Field {
f.keymap.Prev.SetEnabled(!p.IsFirst())
f.keymap.Next.SetEnabled(!p.IsLast())
f.keymap.Submit.SetEnabled(p.IsLast())
return f
}
// GetKey returns the key of the field.
func (f *FilePicker) GetKey() string {
return f.key
}
// GetValue returns the value of the field.
func (f *FilePicker) GetValue() any {
return *f.value
}