-
Notifications
You must be signed in to change notification settings - Fork 930
/
Copy pathlist.tsx
213 lines (178 loc) · 6.32 KB
/
list.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
import * as React from 'react';
import { composeEventHandlers } from '@radix-ui/primitive';
import { createContextScope, type Scope } from '@radix-ui/react-context';
import { useDirection } from '@radix-ui/react-direction';
import { Primitive } from '@radix-ui/react-primitive';
import * as RovingFocusGroup from '@radix-ui/react-roving-focus';
import { createRovingFocusGroupScope } from '@radix-ui/react-roving-focus';
import { useControllableState } from '@radix-ui/react-use-controllable-state';
/* -------------------------------------------------------------------------------------------------
* List
* ----------------------------------------------------------------------------------------------- */
const LIST_NAME = 'List';
type ScopedProps<P> = P & { __scopeList?: Scope };
const [createListContext, createListScope] = createContextScope(LIST_NAME, [
createRovingFocusGroupScope,
]);
const useRovingFocusGroupScope = createRovingFocusGroupScope();
type RovingFocusGroupProps = React.ComponentPropsWithoutRef<typeof RovingFocusGroup.Root>;
type ListContextValue = {
orientation: RovingFocusGroupProps['orientation'];
dir: RovingFocusGroupProps['dir'];
multiselect: boolean;
selectedKeys: Set<string>;
onSelect(key: string): void;
};
const [ListProvider, useListContext] = createListContext<ListContextValue>(LIST_NAME);
type ListElement = React.ElementRef<typeof Primitive.div>;
type ListProps = React.ComponentPropsWithoutRef<typeof Primitive.div> & {
orientation?: RovingFocusGroupProps['orientation'];
loop?: RovingFocusGroupProps['loop'];
dir?: RovingFocusGroupProps['dir'];
multiselect?: boolean;
selectedKeys?: string[];
onSelectedKeysChange?: (selectedKeys: string[]) => void;
defaultSelectedKeys?: string[];
};
const List = React.forwardRef<ListElement, ScopedProps<ListProps>>((props, forwardedRef) => {
const {
__scopeList,
orientation = 'vertical',
loop = true,
dir,
multiselect = false,
selectedKeys: selectedKeysProp,
onSelectedKeysChange,
defaultSelectedKeys = [],
...domProps
} = props;
// RovingFocus scope for focus management
const rovingFocusScope = useRovingFocusGroupScope(__scopeList);
// useControllableState for selected keys
const [selectedKeys, setSelectedKeys] = useControllableState<string[]>({
prop: selectedKeysProp,
onChange: onSelectedKeysChange,
defaultProp: defaultSelectedKeys,
});
const handleSelect = React.useCallback(
(key: string) => {
setSelectedKeys((prevValue) => {
const prevSet = new Set(prevValue ?? []);
if (!multiselect) {
// single-select
return [key];
} else {
// multi-select
if (prevSet.has(key)) {
prevSet.delete(key);
} else {
prevSet.add(key);
}
return Array.from(prevSet);
}
});
},
[multiselect, setSelectedKeys]
);
// Convert direction + set up the context
const direction = useDirection(dir);
// Convert arrays to sets for internal usage
const selectedKeysSet = React.useMemo(() => new Set(selectedKeys), [selectedKeys]);
return (
<ListProvider
scope={__scopeList}
orientation={orientation}
dir={direction}
multiselect={multiselect}
selectedKeys={selectedKeysSet}
onSelect={handleSelect}
>
<RovingFocusGroup.Root
asChild
{...rovingFocusScope}
orientation={orientation}
dir={direction}
loop={loop}
>
<Primitive.div
ref={forwardedRef}
role="listbox"
aria-multiselectable={multiselect || undefined}
data-orientation={orientation}
{...domProps}
/>
</RovingFocusGroup.Root>
</ListProvider>
);
});
List.displayName = LIST_NAME;
/* -------------------------------------------------------------------------------------------------
* ListItem
* ----------------------------------------------------------------------------------------------- */
type ListItemElement = React.ElementRef<typeof Primitive.div>;
type ListItemProps = React.ComponentPropsWithoutRef<typeof Primitive.div> & {
id: string;
};
const ListItem = React.forwardRef<ListItemElement, ScopedProps<ListItemProps>>(
(props, forwardedRef) => {
const { id, __scopeList, ...domProps } = props;
const { selectedKeys, onSelect, orientation } = useListContext(LIST_NAME, __scopeList);
const isSelected = selectedKeys.has(id);
const handleKeyDown = React.useCallback(
(event: React.KeyboardEvent) => {
const { key } = event;
if (key === 'Enter') {
onSelect(id);
}
},
[onSelect, id]
);
const rovingFocusGroupScope = useRovingFocusGroupScope(__scopeList);
return (
<RovingFocusGroup.Item asChild {...rovingFocusGroupScope}>
<Primitive.div
ref={forwardedRef}
role="option"
aria-selected={isSelected || undefined}
tabIndex={-1}
data-orientation={orientation}
onKeyDown={composeEventHandlers(props.onKeyDown, handleKeyDown)}
onClick={composeEventHandlers(props.onClick, () => onSelect(id))}
{...domProps}
/>
</RovingFocusGroup.Item>
);
}
);
ListItem.displayName = 'ListItem';
/* -------------------------------------------------------------------------------------------------
* ListGroup
* ----------------------------------------------------------------------------------------------- */
type ListGroupElement = React.ElementRef<typeof Primitive.div>;
type ListGroupProps = React.ComponentPropsWithoutRef<typeof Primitive.div>;
const ListGroup = React.forwardRef<ListGroupElement, ScopedProps<ListGroupProps>>(
(props, forwardedRef) => {
const { __scopeList, ...domProps } = props;
return <Primitive.div ref={forwardedRef} role="group" {...domProps} />;
}
);
ListGroup.displayName = 'ListGroup';
/* -------------------------------------------------------------------------------------------------
* Exports
* ----------------------------------------------------------------------------------------------- */
export const createListPrimitiveScope = createListScope();
const Root = List;
const Group = ListGroup;
const Item = ListItem;
export {
createListScope,
//
List,
ListGroup,
ListItem,
//
Root,
Group,
Item,
};
export type { ListProps, ListItemProps };