forked from pterm/pterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interactive_select_printer.go
318 lines (275 loc) · 8.85 KB
/
interactive_select_printer.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
package pterm
import (
"fmt"
"math"
"sort"
"atomicgo.dev/cursor"
"atomicgo.dev/keyboard"
"atomicgo.dev/keyboard/keys"
"github.com/lithammer/fuzzysearch/fuzzy"
"github.com/overmindtech/pterm/internal"
)
var (
// DefaultInteractiveSelect is the default InteractiveSelect printer.
DefaultInteractiveSelect = InteractiveSelectPrinter{
TextStyle: &ThemeDefault.PrimaryStyle,
DefaultText: "Please select an option",
Options: []string{},
OptionStyle: &ThemeDefault.DefaultText,
DefaultOption: "",
MaxHeight: 5,
Selector: ">",
SelectorStyle: &ThemeDefault.SecondaryStyle,
Filter: true,
}
)
// InteractiveSelectPrinter is a printer for interactive select menus.
type InteractiveSelectPrinter struct {
TextStyle *Style
DefaultText string
Options []string
OptionStyle *Style
DefaultOption string
MaxHeight int
Selector string
SelectorStyle *Style
OnInterruptFunc func()
Filter bool
selectedOption int
result string
text string
fuzzySearchString string
fuzzySearchMatches []string
displayedOptions []string
displayedOptionsStart int
displayedOptionsEnd int
}
// WithDefaultText sets the default text.
func (p InteractiveSelectPrinter) WithDefaultText(text string) *InteractiveSelectPrinter {
p.DefaultText = text
return &p
}
// WithOptions sets the options.
func (p InteractiveSelectPrinter) WithOptions(options []string) *InteractiveSelectPrinter {
p.Options = options
return &p
}
// WithDefaultOption sets the default options.
func (p InteractiveSelectPrinter) WithDefaultOption(option string) *InteractiveSelectPrinter {
p.DefaultOption = option
return &p
}
// WithMaxHeight sets the maximum height of the select menu.
func (p InteractiveSelectPrinter) WithMaxHeight(maxHeight int) *InteractiveSelectPrinter {
p.MaxHeight = maxHeight
return &p
}
// OnInterrupt sets the function to execute on exit of the input reader
func (p InteractiveSelectPrinter) WithOnInterruptFunc(exitFunc func()) *InteractiveSelectPrinter {
p.OnInterruptFunc = exitFunc
return &p
}
// WithFilter sets the Filter option
func (p InteractiveSelectPrinter) WithFilter(b ...bool) *InteractiveSelectPrinter {
p.Filter = internal.WithBoolean(b)
return &p
}
// Show shows the interactive select menu and returns the selected entry.
func (p *InteractiveSelectPrinter) Show(text ...string) (string, error) {
// should be the first defer statement to make sure it is executed last
// and all the needed cleanup can be done before
cancel, exit := internal.NewCancelationSignal(p.OnInterruptFunc)
defer exit()
if len(text) == 0 || Sprint(text[0]) == "" {
text = []string{p.DefaultText}
}
p.text = p.TextStyle.Sprint(text[0])
p.fuzzySearchMatches = append([]string{}, p.Options...)
if p.MaxHeight == 0 {
p.MaxHeight = DefaultInteractiveSelect.MaxHeight
}
maxHeight := p.MaxHeight
if maxHeight > len(p.fuzzySearchMatches) {
maxHeight = len(p.fuzzySearchMatches)
}
if len(p.Options) == 0 {
return "", fmt.Errorf("no options provided")
}
p.displayedOptions = append([]string{}, p.fuzzySearchMatches[:maxHeight]...)
p.displayedOptionsStart = 0
p.displayedOptionsEnd = maxHeight
// Get index of default option
if p.DefaultOption != "" {
for i, option := range p.Options {
if option == p.DefaultOption {
p.selectedOption = i
if i > 0 && len(p.Options) > maxHeight {
p.displayedOptionsEnd = int(math.Min(float64(i-1+maxHeight), float64(len(p.Options))))
p.displayedOptionsStart = p.displayedOptionsEnd - maxHeight
} else {
p.displayedOptionsStart = 0
p.displayedOptionsEnd = maxHeight
}
p.displayedOptions = p.Options[p.displayedOptionsStart:p.displayedOptionsEnd]
break
}
}
}
area, err := DefaultArea.Start(p.renderSelectMenu())
defer area.Stop()
if err != nil {
return "", fmt.Errorf("could not start area: %w", err)
}
area.Update(p.renderSelectMenu())
cursor.Hide()
defer cursor.Show()
err = keyboard.Listen(func(keyInfo keys.Key) (stop bool, err error) {
key := keyInfo.Code
if p.MaxHeight > len(p.fuzzySearchMatches) {
maxHeight = len(p.fuzzySearchMatches)
} else {
maxHeight = p.MaxHeight
}
switch key {
case keys.RuneKey:
if p.Filter {
// Fuzzy search for options
// append to fuzzy search string
p.fuzzySearchString += keyInfo.String()
p.selectedOption = 0
p.displayedOptionsStart = 0
p.displayedOptionsEnd = maxHeight
p.displayedOptions = append([]string{}, p.fuzzySearchMatches[:maxHeight]...)
area.Update(p.renderSelectMenu())
}
case keys.Space:
p.fuzzySearchString += " "
p.selectedOption = 0
area.Update(p.renderSelectMenu())
case keys.Backspace:
// Remove last character from fuzzy search string
if p.fuzzySearchString != "" {
// Handle UTF-8 characters
p.fuzzySearchString = string([]rune(p.fuzzySearchString)[:len([]rune(p.fuzzySearchString))-1])
}
if p.fuzzySearchString == "" {
p.fuzzySearchMatches = append([]string{}, p.Options...)
}
p.renderSelectMenu()
if len(p.fuzzySearchMatches) > p.MaxHeight {
maxHeight = p.MaxHeight
} else {
maxHeight = len(p.fuzzySearchMatches)
}
p.selectedOption = 0
p.displayedOptionsStart = 0
p.displayedOptionsEnd = maxHeight
p.displayedOptions = append([]string{}, p.fuzzySearchMatches[p.displayedOptionsStart:p.displayedOptionsEnd]...)
area.Update(p.renderSelectMenu())
case keys.Up, keys.CtrlP:
if len(p.fuzzySearchMatches) == 0 {
return false, nil
}
if p.selectedOption > 0 {
p.selectedOption--
if p.selectedOption < p.displayedOptionsStart {
p.displayedOptionsStart--
p.displayedOptionsEnd--
if p.displayedOptionsStart < 0 {
p.displayedOptionsStart = 0
p.displayedOptionsEnd = maxHeight
}
p.displayedOptions = append([]string{}, p.fuzzySearchMatches[p.displayedOptionsStart:p.displayedOptionsEnd]...)
}
} else {
p.selectedOption = len(p.fuzzySearchMatches) - 1
p.displayedOptionsStart = len(p.fuzzySearchMatches) - maxHeight
p.displayedOptionsEnd = len(p.fuzzySearchMatches)
p.displayedOptions = append([]string{}, p.fuzzySearchMatches[p.displayedOptionsStart:p.displayedOptionsEnd]...)
}
area.Update(p.renderSelectMenu())
case keys.Down, keys.CtrlN:
if len(p.fuzzySearchMatches) == 0 {
return false, nil
}
p.displayedOptions = p.fuzzySearchMatches[:maxHeight]
if p.selectedOption < len(p.fuzzySearchMatches)-1 {
p.selectedOption++
if p.selectedOption >= p.displayedOptionsEnd {
p.displayedOptionsStart++
p.displayedOptionsEnd++
p.displayedOptions = append([]string{}, p.fuzzySearchMatches[p.displayedOptionsStart:p.displayedOptionsEnd]...)
}
} else {
p.selectedOption = 0
p.displayedOptionsStart = 0
p.displayedOptionsEnd = maxHeight
p.displayedOptions = append([]string{}, p.fuzzySearchMatches[p.displayedOptionsStart:p.displayedOptionsEnd]...)
}
area.Update(p.renderSelectMenu())
case keys.CtrlC:
cancel()
return true, nil
case keys.Enter:
if len(p.fuzzySearchMatches) == 0 {
return false, nil
}
area.Update(p.renderFinishedMenu())
return true, nil
}
return false, nil
})
if err != nil {
Error.Println(err)
return "", fmt.Errorf("failed to start keyboard listener: %w", err)
}
return p.result, nil
}
func (p *InteractiveSelectPrinter) renderSelectMenu() string {
var content string
if p.Filter {
content += Sprintf("%s %s: %s\n", p.text, p.SelectorStyle.Sprint("[type to search]"), p.fuzzySearchString)
} else {
content += Sprintf("%s:\n", p.text)
}
// find options that match fuzzy search string
rankedResults := fuzzy.RankFindFold(p.fuzzySearchString, p.Options)
// map rankedResults to fuzzySearchMatches
p.fuzzySearchMatches = []string{}
if len(rankedResults) != len(p.Options) {
sort.Sort(rankedResults)
}
for _, result := range rankedResults {
p.fuzzySearchMatches = append(p.fuzzySearchMatches, result.Target)
}
if len(p.fuzzySearchMatches) != 0 {
p.result = p.fuzzySearchMatches[p.selectedOption]
}
indexMapper := make([]string, len(p.fuzzySearchMatches))
for i := 0; i < len(p.fuzzySearchMatches); i++ {
// if in displayed options range
if i >= p.displayedOptionsStart && i < p.displayedOptionsEnd {
indexMapper[i] = p.fuzzySearchMatches[i]
}
}
for i, option := range indexMapper {
if option == "" {
continue
}
if i == p.selectedOption {
content += Sprintf("%s %s\n", p.renderSelector(), p.OptionStyle.Sprint(option))
} else {
content += Sprintf(" %s\n", p.OptionStyle.Sprint(option))
}
}
return content
}
func (p InteractiveSelectPrinter) renderFinishedMenu() string {
var content string
content += Sprintf("%s: %s\n", p.text, p.fuzzySearchString)
content += Sprintf(" %s %s\n", p.renderSelector(), p.result)
return content
}
func (p InteractiveSelectPrinter) renderSelector() string {
return p.SelectorStyle.Sprint(p.Selector)
}