-
Notifications
You must be signed in to change notification settings - Fork 1
/
menu.tsx
369 lines (330 loc) · 9.98 KB
/
menu.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
import { size } from '@floating-ui/dom';
import {
FloatingFocusManager,
FloatingNode,
FloatingPortal,
FloatingTree,
autoUpdate,
flip,
offset,
safePolygon,
shift,
useClick,
useDismiss,
useFloating,
useFloatingNodeId,
useFloatingParentNodeId,
useFloatingTree,
useHover,
useInteractions,
useListNavigation,
useMergeRefs,
useRole,
useTypeahead,
type Placement,
} from '@floating-ui/react';
import {
Children,
cloneElement,
forwardRef,
isValidElement,
useCallback,
useEffect,
useRef,
useState,
type FC,
type ForwardedRef,
type PropsWithChildren,
type ReactElement,
type ReactNode,
type Ref,
} from 'react';
import { Button, type ButtonProps } from './button.js';
import { DesignSystem } from './design-system.js';
import { useDesignSystem } from './hooks/use-design-system.js';
import { ArrowForwardIcon, MenuDropdownArrowIcon } from './icons.js';
import { Flex, type FlexProps } from './layout.js';
import type { Merge, ReactHTMLElementsHacked } from './types.js';
const defaultMenuDropdownProps = {
space: '4',
padding: '0',
flexDirection: 'column',
} satisfies FlexProps;
export type MenuButtonFallbackProps = Omit<MenuProps, 'fallback'>;
type MenuCommonProps<T extends keyof ReactHTMLElementsHacked> =
PropsWithChildren<{
initialPlacement?: Placement;
onOpenChange?: (isOpen: boolean) => void;
menuDropdownProps?: FlexProps<T>;
nested?: boolean;
fallback?: ReactElement;
activator?: FC<MenuActivatorProps>;
label?: ReactNode;
}>;
export type MenuProps = Merge<
ButtonProps<'div'>,
MenuCommonProps<'div'> & { component?: never; size?: never; onClick?: never }
>;
export type MenuActivatorProps = Merge<
ButtonProps<'div'>,
{
onClick?: never;
isNested?: boolean;
}
>;
const DefaultMenuActivator = forwardRef(
(
{ isNested, ...props }: MenuActivatorProps,
forwardedRef: ForwardedRef<HTMLDivElement>,
) => (
<Button
component="div"
iconEnd={<MenuDropdownArrowIcon />}
ref={forwardedRef}
icon={isNested && <ArrowForwardIcon />}
{...(isNested && {
// Indicates this is a nested <Menu /> acting as a <MenuItem />.
role: 'menuitem',
})}
// className: `${isNested ? 'MenuItem' : 'RootMenu'}`,
{...props}
/>
),
);
const MenuInner = forwardRef(
(
{
initialPlacement = 'bottom-start',
children,
label,
onOpenChange,
menuDropdownProps,
activator,
className,
...props
}: MenuProps,
forwardedRef: Ref<HTMLDivElement>,
) => {
const ds = useDesignSystem();
const [isOpen, setIsOpen] = useState(false);
const [activeIndex, setActiveIndex] = useState<number | null>(null);
const [allowHover, setAllowHover] = useState(false);
const listItemsRef = useRef<Array<HTMLButtonElement | null>>([]);
const listContentRef = useRef(
Children.map(children, (child): string | null =>
isValidElement(child) &&
'label' in child.props &&
typeof child.props.label === 'string'
? child.props.label
: null,
) || [],
);
const openChange = useCallback(
(o: boolean) => {
onOpenChange?.(o);
setIsOpen(o);
},
[onOpenChange],
);
const tree = useFloatingTree();
const nodeId = useFloatingNodeId();
const parentId = useFloatingParentNodeId();
const isNested = parentId != null;
const { x, y, strategy, refs, context } = useFloating<HTMLElement>({
nodeId,
open: isOpen,
onOpenChange: openChange,
placement: isNested ? 'right-start' : initialPlacement,
whileElementsMounted: autoUpdate,
middleware: [
offset({
mainAxis: isNested ? 0 : 4,
alignmentAxis: isNested ? -4 : 0,
}),
flip(),
shift(),
// NOTE: The 'bestFit' fallback strategy in the flip() middleware is
// the default, which ensures the best fitting placement is used. In this
// scenario, place size() after flip():
size({
apply({ rects, availableWidth, availableHeight, elements }) {
Object.assign(elements.floating.style, {
minWidth: `${rects.reference.width}px`,
maxWidth: `${availableWidth}px`,
maxHeight: `${availableHeight}px`,
});
},
}),
],
});
const hover = useHover(context, {
enabled: isNested && allowHover,
delay: { open: 75 },
restMs: 25,
handleClose: safePolygon({
blockPointerEvents: true,
}),
});
const click = useClick(context, {
event: 'mousedown',
toggle: !isNested || !allowHover,
ignoreMouse: isNested,
});
const role = useRole(context, { role: 'menu' });
const dismiss = useDismiss(context);
const listNavigation = useListNavigation(context, {
listRef: listItemsRef,
activeIndex,
nested: isNested,
onNavigate: setActiveIndex,
});
const typeahead = useTypeahead(context, {
enabled: isOpen,
listRef: listContentRef,
activeIndex,
...(isOpen && { onMatch: setActiveIndex }),
});
const { getReferenceProps, getFloatingProps, getItemProps } =
useInteractions([hover, click, role, dismiss, listNavigation, typeahead]);
// Event emitter allows you to communicate across tree components.
// This effect closes all menus when an item gets clicked anywhere
// in the tree.
useEffect(() => {
if (!tree) {
return () => {};
}
function handleTreeClick() {
setIsOpen(false);
}
function onSubMenuOpen(event: { nodeId: string; parentId: string }) {
if (event.nodeId !== nodeId && event.parentId === parentId) {
setIsOpen(false);
}
}
tree.events.on('click', handleTreeClick);
tree.events.on('menuopen', onSubMenuOpen);
return () => {
tree.events.off('click', handleTreeClick);
tree.events.off('menuopen', onSubMenuOpen);
};
}, [tree, nodeId, parentId]);
useEffect(() => {
if (isOpen && tree) {
tree.events.emit('menuopen', { parentId, nodeId });
}
}, [tree, isOpen, nodeId, parentId]);
// Determine if "hover" logic can run based on the modality of input. This
// prevents unwanted focus synchronization as menus open and close with
// keyboard navigation and the cursor is resting on the menu.
useEffect(() => {
function onPointerMove({ pointerType }: PointerEvent) {
if (pointerType !== 'touch') {
setAllowHover(true);
}
}
function onKeyDown() {
setAllowHover(false);
}
window.addEventListener('pointermove', onPointerMove, {
once: true,
capture: true,
});
window.addEventListener('keydown', onKeyDown, true);
return () => {
window.removeEventListener('pointermove', onPointerMove, {
capture: true,
});
window.removeEventListener('keydown', onKeyDown, true);
};
}, [allowHover]);
const referenceRef = useMergeRefs([refs.setReference, forwardedRef]);
const activatorProps = {
className,
...getReferenceProps({
...props,
onClick(e) {
e.stopPropagation();
},
}),
children: label,
} satisfies MenuActivatorProps;
return (
<FloatingNode id={nodeId}>
{activator ? (
<Flex ref={referenceRef} {...activatorProps}>
{activator({ isNested })}
</Flex>
) : (
<DefaultMenuActivator ref={referenceRef} {...activatorProps} />
)}
<FloatingPortal>
<DesignSystem {...ds}>
{isOpen && (
<FloatingFocusManager
context={context}
// Prevent outside content interference.
modal={false}
// Only initially focus the root floating menu.
initialFocus={isNested ? -1 : 0}
// Only return focus to the root menu's reference when menus close.
returnFocus={!isNested}
>
<Flex
ref={refs.setFloating}
style={{
position: strategy,
top: y ?? 0,
left: x ?? 0,
// width: 'max-content',
}}
{...getFloatingProps()}
{...defaultMenuDropdownProps}
{...menuDropdownProps}
>
{Children.map(
children,
(child, index) =>
isValidElement(child) &&
cloneElement(
child,
getItemProps({
tabIndex: activeIndex === index ? 0 : -1,
ref(node: HTMLButtonElement) {
listItemsRef.current[index] = node;
},
onClick(event) {
child.props.onClick?.(event);
tree?.events.emit('click');
},
// Allow focus synchronization if the cursor did not move.
onMouseEnter() {
if (allowHover && isOpen) {
setActiveIndex(index);
}
},
}),
),
)}
</Flex>
</FloatingFocusManager>
)}
</DesignSystem>
</FloatingPortal>
</FloatingNode>
);
},
);
const Menu = forwardRef(
(props: MenuProps, forwardedRef: Ref<HTMLDivElement>) => {
const parentId = useFloatingParentNodeId();
if (parentId === null) {
return (
<FloatingTree>
<MenuInner {...props} ref={forwardedRef} />
</FloatingTree>
);
}
return <MenuInner {...props} ref={forwardedRef} />;
},
);
export default Menu;