-
Notifications
You must be signed in to change notification settings - Fork 1
/
Select.tsx
84 lines (74 loc) · 2.26 KB
/
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
import classNames from 'classnames';
import { FC, isValidElement, ReactElement, ReactNode } from 'react';
import {
Dropdown,
DropdownButtonProps,
DropdownItemProps
} from 'react-bootstrap';
import { makeArray } from 'web-utility';
export interface OptionProps extends DropdownItemProps {
value?: string;
}
export const Option: FC<OptionProps> = ({ value, children, ...props }) => (
<Dropdown.Item {...props} data-value={value}>
{children}
</Dropdown.Item>
);
Option.displayName = 'Option';
export interface SelectProps
extends Omit<OptionProps, 'onChange'>,
Pick<DropdownButtonProps, 'variant' | 'menuVariant'> {
onChange?: (value: string) => any;
valueRender?: (value: string) => ReactNode;
}
export const Select: FC<SelectProps> = ({
className,
style,
variant,
menuVariant,
children,
value,
onChange,
valueRender
}) => {
const current = (makeArray(children) as ReactNode[])
.flat(Infinity)
.find(
node =>
isValidElement<OptionProps>(node) &&
node.type === Option &&
node.props.value === value
) as ReactElement<OptionProps, typeof Option>;
return (
<Dropdown
onClick={({ target }) => {
const option = (target as HTMLElement).closest<HTMLElement>(
'.dropdown-item'
);
if (!option) return;
const { value } = option.dataset;
onChange?.(value);
}}
>
<Dropdown.Toggle
className={classNames(
'w-100',
'd-flex',
'justify-content-between',
'align-items-center',
!variant && 'bg-white text-dark',
className
)}
{...{ style, variant }}
>
{valueRender?.(value) || (
<div className={current?.props.className}>
{current?.props.children}
</div>
)}
</Dropdown.Toggle>
<Dropdown.Menu variant={menuVariant}>{children}</Dropdown.Menu>
</Dropdown>
);
};
Select.displayName = 'Select';