-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiselect.go
154 lines (131 loc) · 4.05 KB
/
multiselect.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
package surveyexpect
var _ Prompt = (*MultiSelectPrompt)(nil)
// MultiSelectPrompt is an expectation of survey.Select.
type MultiSelectPrompt struct {
*basePrompt
message string
steps *InlineSteps
}
func (p *MultiSelectPrompt) append(steps ...Step) *MultiSelectPrompt {
p.lock()
defer p.unlock()
p.steps.Append(steps...)
return p
}
// ShowHelp asks for help and asserts the help text.
//
// Survey.ExpectMultiSelect("Select a language:").
// ShowHelp("Your preferred language")
func (p *MultiSelectPrompt) ShowHelp(help string, options ...string) *MultiSelectPrompt {
return p.append(pressHelp(help, options...))
}
// Type sends some text to filter the options.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng")
func (p *MultiSelectPrompt) Type(s string) *MultiSelectPrompt {
return p.append(typeAnswer(s))
}
// Tab sends the TAB key the indicated times. Default is 1 when omitted.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// Tab()
func (p *MultiSelectPrompt) Tab(times ...int) *MultiSelectPrompt {
return p.append(repeatStep(pressTab(), times...)...)
}
// Interrupt sends ^C and ends the sequence.
//
// Survey.ExpectMultiSelect("Select a language:").
// Interrupt()
func (p *MultiSelectPrompt) Interrupt() {
p.append(pressInterrupt())
p.steps.Close()
}
// Enter sends the ENTER key and ends the sequence.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// Enter()
func (p *MultiSelectPrompt) Enter() {
p.append(pressEnter())
p.steps.Close()
}
// Delete sends the DELETE key the indicated times. Default is 1 when omitted.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// Delete(3)
func (p *MultiSelectPrompt) Delete(times ...int) *MultiSelectPrompt {
return p.append(repeatStep(pressDelete(), times...)...)
}
// MoveUp sends the ARROW UP key the indicated times. Default is 1 when omitted.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// MoveUp()
func (p *MultiSelectPrompt) MoveUp(times ...int) *MultiSelectPrompt {
return p.append(repeatStep(pressArrowUp(), times...)...)
}
// MoveDown sends the ARROW DOWN key the indicated times. Default is 1 when omitted.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// MoveDown()
func (p *MultiSelectPrompt) MoveDown(times ...int) *MultiSelectPrompt {
return p.append(repeatStep(pressArrowDown(), times...)...)
}
// Select selects an option. If the option is selected, it will be deselected.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// Select()
func (p *MultiSelectPrompt) Select() *MultiSelectPrompt {
return p.append(pressSpace())
}
// SelectNone deselects all filtered options.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// SelectNone()
func (p *MultiSelectPrompt) SelectNone() *MultiSelectPrompt {
return p.append(pressArrowLeft())
}
// SelectAll selects all filtered options.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// SelectAll()
func (p *MultiSelectPrompt) SelectAll() *MultiSelectPrompt {
return p.append(pressArrowRight())
}
// ExpectOptions expects a list of options.
//
// Survey.ExpectMultiSelect("Select a language:").
// Type("Eng").
// ExpectOptions("English")
func (p *MultiSelectPrompt) ExpectOptions(options ...string) *MultiSelectPrompt {
return p.append(expectMultiSelect(options...))
}
// Do runs the step.
func (p *MultiSelectPrompt) Do(c Console) error {
if _, err := c.ExpectString(p.message); err != nil {
return err
}
return p.steps.Do(c)
}
// String represents the expectation as a string.
func (p *MultiSelectPrompt) String() string {
var sb stringsBuilder
return sb.WriteLabelLinef("Expect", "MultiSelect Prompt").
WriteLabelLinef("Message", "%q", p.message).
WriteString(p.steps.String()).
String()
}
func newMultiSelect(parent *Survey, message string) *MultiSelectPrompt {
return &MultiSelectPrompt{
basePrompt: &basePrompt{parent: parent},
message: message,
steps: inlineSteps(),
}
}