-
Notifications
You must be signed in to change notification settings - Fork 10
/
single-select.tsx
467 lines (435 loc) · 15.1 KB
/
single-select.tsx
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
IDProvider,
type AriaProps,
type StyleType,
} from "@khanacademy/wonder-blocks-core";
import DropdownCore from "./dropdown-core";
import DropdownOpener from "./dropdown-opener";
import SelectOpener from "./select-opener";
import {
defaultLabels,
selectDropdownStyle,
filterableDropdownStyle,
} from "../util/constants";
import OptionItem from "./option-item";
import type {
DropdownItem,
OpenerProps,
OptionItemComponentArray,
} from "../util/types";
import {getLabel} from "../util/helpers";
export type SingleSelectLabels = {
/**
* Label for describing the dismiss icon on the search filter.
*/
clearSearch: string;
/**
* Label for the search placeholder.
*/
filter: string;
/**
* Label for when the filter returns no results.
*/
noResults: string;
/**
* Label for the opening component when there are some items selected.
*/
someResults: (numOptions: number) => string;
};
type DefaultProps = Readonly<{
/**
* Whether this dropdown should be left-aligned or right-aligned with the
* opener component. Defaults to left-aligned.
*/
alignment?: "left" | "right";
/**
* Whether to auto focus an option. Defaults to true.
*/
autoFocus?: boolean;
/**
* Whether this component is disabled. A disabled dropdown may not be opened
* and does not support interaction. Defaults to false.
*/
disabled?: boolean;
/**
* Whether to enable the type-ahead suggestions feature. Defaults to true.
*
* This feature allows to navigate the listbox using the keyboard.
* - Type a character: focus moves to the next item with a name that starts
* with the typed character.
* - Type multiple characters in rapid succession: focus moves to the next
* item with a name that starts with the string of characters typed.
*
* **NOTE:** Type-ahead is recommended for all listboxes, but there might be
* some cases where it's not desirable (for example when using a `TextField`
* as the opener element).
*/
enableTypeAhead?: boolean;
/**
* Whether or not the input in is an error state. Defaults to false.
*/
error?: boolean;
/**
* Whether to display the "light" version of this component instead, for
* use when the component is used on a dark background.
*/
light?: boolean;
/**
* The object containing the custom labels used inside this component.
*/
labels?: SingleSelectLabels;
}>;
type Props = AriaProps &
DefaultProps &
Readonly<{
/**
* The items in this select.
*/
children?: Array<
| React.ReactElement<React.ComponentProps<typeof OptionItem>>
| false
| null
| undefined
>;
/**
* Callback for when the selection. Parameter is the value of the newly
* selected item.
*/
onChange: (selectedValue: string) => unknown;
/**
* Can be used to override the state of the ActionMenu by parent elements
*/
opened?: boolean;
/**
* In controlled mode, use this prop in case the parent needs to be notified
* when the menu opens/closes.
*/
onToggle?: (opened: boolean) => unknown;
/**
* Unique identifier attached to the field control. If used, we need to
* guarantee that the ID is unique within everything rendered on a page.
* Used to match `<label>` with `<button>` elements for screenreaders.
*/
id?: string;
/**
* Placeholder for the opening component when there are no items selected.
*/
placeholder: string;
/**
* Value of the currently selected item.
*/
selectedValue?: string | null | undefined;
/**
* Optional styling to add to the opener component wrapper.
*/
style?: StyleType;
/**
* Adds CSS classes to the opener component wrapper.
*/
className?: string;
/**
* Test ID used for e2e testing.
*/
testId?: string;
/**
* Optional styling to add to the dropdown wrapper.
*/
dropdownStyle?: StyleType;
/**
* The child function that returns the anchor the ActionMenu will be
* activated by. This function takes eventState, which allows the opener
* element to access pointer event state.
*/
opener?: (openerProps: OpenerProps) => React.ReactElement<any>;
/**
* When this is true, the dropdown body shows a search text input at the
* top. The items will be filtered by the input.
*/
isFilterable?: boolean;
/**
* Unique identifier attached to the listbox dropdown. If used, we need to
* guarantee that the ID is unique within everything rendered on a page.
* If one is not provided, one is auto-generated. It is used for the
* opener's `aria-controls` attribute for screenreaders.
*/
dropdownId?: string;
}>;
/**
* The single select allows the selection of one item. Clients are responsible
* for keeping track of the selected item in the select.
*
* The single select dropdown closes after the selection of an item. If the same
* item is selected, there is no callback.
*
* **NOTE:** If there are more than 125 items, the component automatically uses
* [react-window](https://github.com/bvaughn/react-window) to improve
* performance when rendering these elements and is capable of handling many
* hundreds of items without performance problems.
*
* ## Usage
* General usage
*
* ```jsx
* import {OptionItem, SingleSelect} from "@khanacademy/wonder-blocks-dropdown";
*
* const [selectedValue, setSelectedValue] = React.useState("");
*
* <SingleSelect placeholder="Choose a fruit" onChange={setSelectedValue} selectedValue={selectedValue}>
* <OptionItem label="Pear" value="pear" />
* <OptionItem label="Mango" value="mango" />
* </SingleSelect>
* ```
*
* Mapping a list
*
* ```jsx
* import {OptionItem, SingleSelect} from "@khanacademy/wonder-blocks-dropdown";
*
* const [selectedValue, setSelectedValue] = React.useState("");
* const fruitArray = ["Apple", "Banana", "Orange", "Mango", "Pear"];
*
* <SingleSelect
* placeholder="Choose a fruit"
* onChange={setSelectedValue}
* selectedValue={selectedValue}
* >
* {fruitArray.map((value, index) => (
* <OptionItem key={index} value={value} label={value} />
* ))}
* </SingleSelect>
* ```
*/
const SingleSelect = (props: Props) => {
const selectedIndex = React.useRef(0);
const {
children,
error = false,
id,
opener,
light = false,
placeholder,
selectedValue,
testId,
alignment = "left",
autoFocus = true,
dropdownStyle,
enableTypeAhead = true,
isFilterable,
labels = {
clearSearch: defaultLabels.clearSearch,
filter: defaultLabels.filter,
noResults: defaultLabels.noResults,
someResults: defaultLabels.someSelected,
},
onChange,
onToggle,
opened,
style,
className,
"aria-invalid": ariaInvalid,
"aria-required": ariaRequired,
disabled = false,
dropdownId,
...sharedProps
} = props;
// Whether or not the dropdown is open.
const [open, setOpen] = React.useState(false);
// The text input to filter the items by their label. Defaults to an empty string.
const [searchText, setSearchText] = React.useState("");
// The DOM reference to the opener element. This is mainly used to set focus
// to this element, and also to pass the reference to Popper.js.
const [openerElement, setOpenerElement] = React.useState<HTMLElement>();
React.useEffect(() => {
// Used to sync the `opened` state when this component acts as a controlled
if (disabled) {
// open should always be false if select is disabled
setOpen(false);
} else if (typeof opened === "boolean") {
setOpen(opened);
}
}, [disabled, opened]);
const handleOpenChanged = (opened: boolean) => {
setOpen(opened);
setSearchText("");
if (onToggle) {
onToggle(opened);
}
};
const handleToggle = (newSelectedValue: string) => {
// Call callback if selection changed.
if (newSelectedValue !== selectedValue) {
onChange(newSelectedValue);
}
// Bring focus back to the opener element.
if (open && openerElement) {
openerElement.focus();
}
setOpen(false); // close the menu upon selection
if (onToggle) {
onToggle(false);
}
};
const mapOptionItemsToDropdownItems = (
children: OptionItemComponentArray,
): DropdownItem[] => {
// Figure out which index should receive focus when this select opens
// Needs to exclude counting items that are disabled
let indexCounter = 0;
selectedIndex.current = 0;
return children.map((option) => {
const {disabled, value} = option.props;
const selected = selectedValue === value;
if (selected) {
selectedIndex.current = indexCounter;
}
if (!disabled) {
indexCounter += 1;
}
return {
component: option,
focusable: !disabled,
populatedProps: {
onToggle: handleToggle,
selected: selected,
variant: "check",
},
};
});
};
const filterChildren = (
children: OptionItemComponentArray,
): OptionItemComponentArray => {
const lowercasedSearchText = searchText.toLowerCase();
// Filter the children with the searchText if any.
return children.filter(
({props}) =>
!searchText ||
getLabel(props).toLowerCase().indexOf(lowercasedSearchText) >
-1,
);
};
const getMenuItems = (
children: OptionItemComponentArray,
): DropdownItem[] => {
// If it's not filterable, no need to do any extra besides mapping the
// option items to dropdown items.
return mapOptionItemsToDropdownItems(
isFilterable ? filterChildren(children) : children,
);
};
const handleSearchTextChanged = (searchText: string) => {
setSearchText(searchText);
};
const handleOpenerRef: (node?: any) => void = (node) => {
const openerElement = ReactDOM.findDOMNode(node) as HTMLElement;
setOpenerElement(openerElement);
};
const handleClick = (e: React.SyntheticEvent) => {
handleOpenChanged(!open);
};
const renderOpener = (
isDisabled: boolean,
dropdownId: string,
):
| React.ReactElement<React.ComponentProps<typeof DropdownOpener>>
| React.ReactElement<React.ComponentProps<typeof SelectOpener>> => {
const items = React.Children.toArray(
children,
) as OptionItemComponentArray;
const selectedItem = items.find(
(option) => option.props.value === selectedValue,
);
// If nothing is selected, or if the selectedValue doesn't match any
// item in the menu, use the placeholder.
const menuText = selectedItem
? getLabel(selectedItem.props)
: placeholder;
const dropdownOpener = (
<IDProvider id={id} scope="single-select-opener">
{(uniqueOpenerId) => {
return opener ? (
<DropdownOpener
id={uniqueOpenerId}
aria-controls={dropdownId}
aria-haspopup="listbox"
onClick={handleClick}
disabled={isDisabled}
ref={handleOpenerRef}
text={menuText}
opened={open}
>
{opener}
</DropdownOpener>
) : (
<SelectOpener
{...sharedProps}
aria-controls={dropdownId}
disabled={isDisabled}
id={uniqueOpenerId}
error={error}
isPlaceholder={!selectedItem}
light={light}
onOpenChanged={handleOpenChanged}
open={open}
ref={handleOpenerRef}
testId={testId}
>
{menuText}
</SelectOpener>
);
}}
</IDProvider>
);
return dropdownOpener;
};
const allChildren = (
React.Children.toArray(children) as Array<
React.ReactElement<React.ComponentProps<typeof OptionItem>>
>
).filter(Boolean);
const numEnabledOptions = allChildren.filter(
(option) => !option.props.disabled,
).length;
const items = getMenuItems(allChildren);
const isDisabled = numEnabledOptions === 0 || disabled;
return (
<IDProvider id={dropdownId} scope="single-select-dropdown">
{(uniqueDropdownId) => (
<DropdownCore
id={uniqueDropdownId}
role="listbox"
selectionType="single"
alignment={alignment}
autoFocus={autoFocus}
enableTypeAhead={enableTypeAhead}
dropdownStyle={[
isFilterable && filterableDropdownStyle,
selectDropdownStyle,
dropdownStyle,
]}
initialFocusedIndex={selectedIndex.current}
items={items}
light={light}
onOpenChanged={handleOpenChanged}
open={open}
opener={renderOpener(isDisabled, uniqueDropdownId)}
openerElement={openerElement}
style={style}
className={className}
isFilterable={isFilterable}
onSearchTextChanged={
isFilterable ? handleSearchTextChanged : undefined
}
searchText={isFilterable ? searchText : ""}
labels={labels}
aria-invalid={ariaInvalid}
aria-required={ariaRequired}
disabled={isDisabled}
/>
)}
</IDProvider>
);
};
export default SingleSelect;