-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtypes.ts
232 lines (216 loc) · 5.04 KB
/
types.ts
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
import type { PartialDeep, Prettify } from '@inquirer/type';
import type { Separator, Theme } from '@inquirer/core';
export type SelectOption<Value> = {
name?: string;
value: Value;
disabled?: boolean | string;
};
/**
* @internal
*/
export type SelectedOption<Value> = SelectOption<Value> & { focused?: boolean };
export enum SelectStatus {
UNLOADED = 'unloaded',
FILTERING = 'filtering',
LOADED = 'loaded',
SUBMITTED = 'submitted',
}
export type SelectItem<Value> = Separator | SelectOption<Value>;
/**
* @internal
*/
export type InternalSelectItem<Value> =
| Separator
| (SelectOption<Value> & { checked?: boolean });
export type SelectTheme = {
icon: {
checked: string;
unchecked: string;
cursor: string;
inputCursor: string;
};
style: {
disabledOption: (text: string) => string;
renderSelectedOptions: <T>(
selectedOptions: ReadonlyArray<SelectedOption<T>>,
allOptions: ReadonlyArray<SelectItem<T>>,
) => string;
emptyText: (text: string) => string;
placeholder: (text: string) => string;
};
helpMode: 'always' | 'never' | 'auto';
};
export type SelectValue<Value, Multiple> = Multiple extends true
? Value[]
: Value | null;
export type SelectFilterItems<Value> = (
input?: string,
) =>
| Promise<ReadonlyArray<SelectItem<Value>>>
| ReadonlyArray<SelectItem<Value>>;
/**
* Options of useSelect
*/
export interface UseSelectOptions<Value, Multiple extends boolean = true> {
/**
* The options displayed can be an array or an async function.
*/
options: ReadonlyArray<SelectItem<Value>> | SelectFilterItems<Value>;
/**
* Whether to enable the filter function
*
* @defaultValue
* `true`
*/
filter?: boolean;
/**
* Clear the filter input when the option is selected (also causes the option list to change)
*
* @defaultValue
* `false`
*/
clearInputWhenSelected?: boolean;
/**
* Only valid when multiple is true, confirmation is required when deleting selectable options
*
* @defaultValue
* `false`
*/
confirmDelete?: boolean;
/**
* Enable toggle all options
*
* @defaultValue
* `false`
*/
canToggleAll?: boolean;
/**
* The user's input is debounced, and the default debounce delay is 200ms.
*
* @defaultValue
* `200` ms
*/
inputDelay?: number;
/**
* display options in a loop
*
* @defaultValue
* `false`
*/
loop?: boolean;
/**
* Determine whether two options are equivalent,
*
* @defaultValue
* `(a, b) => (a === b)`;
*/
equals?: (a: Value, b: Value) => boolean;
/**
* Default selected options
*/
defaultValue?: SelectValue<Value, Multiple>;
/**
* triggered after the user completes the selection (or skips)
*/
onSubmitted?: (value: SelectValue<Value, Multiple>) => void;
/**
* Required(true), or skip(false)
*
* @defaultValue
* `false`
*/
required?: boolean;
/**
* select multiple options
*
* @defaultValue
* `true`
*/
multiple?: Multiple;
/**
* Select the currently focused option when submitting (press enter), if no other options are already selected.
*
* @defaultValue
* `false`
*/
selectFocusedOnSubmit?: boolean;
/**
* validate when submitting (press enter). Only when true is returned will the validation pass.
*
* @defaultValue
* `() => true`
*/
validate?: (
options: ReadonlyArray<SelectOption<Value>>,
) => boolean | string | Promise<string | boolean>;
}
export interface SelectBehaviors {
submit: boolean;
select: boolean;
deselect: boolean;
setCursor: boolean;
filter: boolean;
deleteOption: boolean;
blur: boolean;
}
export interface UseSelectReturnValue<Value> {
selections: SelectOption<Value>[];
focusedSelection: number;
confirmDelete: boolean;
filterInput: string;
displayItems: ReadonlyArray<InternalSelectItem<Value>>;
cursor: number;
status: SelectStatus;
error: string;
loop: boolean;
multiple: boolean;
enableFilter: boolean;
canToggleAll: boolean;
required: boolean;
behaviors: SelectBehaviors;
}
/**
* @internal
*/
export interface SelectContext<Value> extends UseSelectReturnValue<Value> {
theme: Prettify<Theme<SelectTheme>>;
pageSize: number;
instructions: SelectProps<Value>['instructions'];
emptyText: string;
placeholder: string;
}
export interface SelectProps<Value, Multiple extends boolean = true>
extends UseSelectOptions<Value, Multiple> {
/**
* prompt message
*/
message: string;
/**
* page size
*/
pageSize?: number;
/**
* Pass in false to directly close the instructions.
* If you need to display dynamic instructions based on the state of the select,
* you can also use the function.
*/
instructions?: boolean | ((context: SelectContext<Value>) => string);
/**
* The text displayed when the search results are empty
*
* @defaultValue
* `"No results."`
*/
emptyText?: string;
/**
* filter input placeholder
*
* @defaultValue
* `"Type to search"`
*/
placeholder?: string;
/**
* theming
*/
theme?: PartialDeep<Theme<SelectTheme>>;
}