-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathMenu.tsx
708 lines (636 loc) · 18.1 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
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
/** @jsx jsx */
import {
createContext,
JSX,
ReactElement,
ReactNode,
Ref,
useCallback,
useContext,
useMemo,
useRef,
useState,
} from 'react';
import { jsx } from '@emotion/react';
import { createPortal } from 'react-dom';
import { autoUpdate } from '@floating-ui/dom';
import useLayoutEffect from 'use-isomorphic-layout-effect';
import {
animatedScrollTo,
getBoundingClientObj,
getScrollParent,
getScrollTop,
getStyleProps,
normalizedHeight,
scrollTo,
} from '../utils';
import {
MenuPlacement,
MenuPosition,
CommonProps,
GroupBase,
CommonPropsAndClassName,
CoercedMenuPlacement,
CSSObjectWithLabel,
} from '../types';
// ==============================
// Menu
// ==============================
// Get Menu Placement
// ------------------------------
interface CalculatedMenuPlacementAndHeight {
placement: CoercedMenuPlacement;
maxHeight: number;
}
interface PlacementArgs {
maxHeight: number;
menuEl: HTMLDivElement | null;
minHeight: number;
placement: MenuPlacement;
shouldScroll: boolean;
isFixedPosition: boolean;
controlHeight: number;
}
export function getMenuPlacement({
maxHeight: preferredMaxHeight,
menuEl,
minHeight,
placement: preferredPlacement,
shouldScroll,
isFixedPosition,
controlHeight,
}: PlacementArgs): CalculatedMenuPlacementAndHeight {
const scrollParent = getScrollParent(menuEl!);
const defaultState: CalculatedMenuPlacementAndHeight = {
placement: 'bottom',
maxHeight: preferredMaxHeight,
};
// something went wrong, return default state
if (!menuEl || !menuEl.offsetParent) return defaultState;
// we can't trust `scrollParent.scrollHeight` --> it may increase when
// the menu is rendered
const { height: scrollHeight } = scrollParent.getBoundingClientRect();
const {
bottom: menuBottom,
height: menuHeight,
top: menuTop,
} = menuEl.getBoundingClientRect();
const { top: containerTop } = menuEl.offsetParent.getBoundingClientRect();
const viewHeight = isFixedPosition
? window.innerHeight
: normalizedHeight(scrollParent);
const scrollTop = getScrollTop(scrollParent);
const marginBottom = parseInt(getComputedStyle(menuEl).marginBottom, 10);
const marginTop = parseInt(getComputedStyle(menuEl).marginTop, 10);
const viewSpaceAbove = containerTop - marginTop;
const viewSpaceBelow = viewHeight - menuTop;
const scrollSpaceAbove = viewSpaceAbove + scrollTop;
const scrollSpaceBelow = scrollHeight - scrollTop - menuTop;
const scrollDown = menuBottom - viewHeight + scrollTop + marginBottom;
const scrollUp = scrollTop + menuTop - marginTop;
const scrollDuration = 160;
switch (preferredPlacement) {
case 'auto':
case 'bottom':
// 1: the menu will fit, do nothing
if (viewSpaceBelow >= menuHeight) {
return { placement: 'bottom', maxHeight: preferredMaxHeight };
}
// 2: the menu will fit, if scrolled
if (scrollSpaceBelow >= menuHeight && !isFixedPosition) {
if (shouldScroll) {
animatedScrollTo(scrollParent, scrollDown, scrollDuration);
}
return { placement: 'bottom', maxHeight: preferredMaxHeight };
}
// 3: the menu will fit, if constrained
if (
(!isFixedPosition && scrollSpaceBelow >= minHeight) ||
(isFixedPosition && viewSpaceBelow >= minHeight)
) {
if (shouldScroll) {
animatedScrollTo(scrollParent, scrollDown, scrollDuration);
}
// we want to provide as much of the menu as possible to the user,
// so give them whatever is available below rather than the minHeight.
const constrainedHeight = isFixedPosition
? viewSpaceBelow - marginBottom
: scrollSpaceBelow - marginBottom;
return {
placement: 'bottom',
maxHeight: constrainedHeight,
};
}
// 4. Forked beviour when there isn't enough space below
// AUTO: flip the menu, render above
if (preferredPlacement === 'auto' || isFixedPosition) {
// may need to be constrained after flipping
let constrainedHeight = preferredMaxHeight;
const spaceAbove = isFixedPosition ? viewSpaceAbove : scrollSpaceAbove;
if (spaceAbove >= minHeight) {
constrainedHeight = Math.min(
spaceAbove - marginBottom - controlHeight,
preferredMaxHeight
);
}
return { placement: 'top', maxHeight: constrainedHeight };
}
// BOTTOM: allow browser to increase scrollable area and immediately set scroll
if (preferredPlacement === 'bottom') {
if (shouldScroll) {
scrollTo(scrollParent, scrollDown);
}
return { placement: 'bottom', maxHeight: preferredMaxHeight };
}
break;
case 'top':
// 1: the menu will fit, do nothing
if (viewSpaceAbove >= menuHeight) {
return { placement: 'top', maxHeight: preferredMaxHeight };
}
// 2: the menu will fit, if scrolled
if (scrollSpaceAbove >= menuHeight && !isFixedPosition) {
if (shouldScroll) {
animatedScrollTo(scrollParent, scrollUp, scrollDuration);
}
return { placement: 'top', maxHeight: preferredMaxHeight };
}
// 3: the menu will fit, if constrained
if (
(!isFixedPosition && scrollSpaceAbove >= minHeight) ||
(isFixedPosition && viewSpaceAbove >= minHeight)
) {
let constrainedHeight = preferredMaxHeight;
// we want to provide as much of the menu as possible to the user,
// so give them whatever is available below rather than the minHeight.
if (
(!isFixedPosition && scrollSpaceAbove >= minHeight) ||
(isFixedPosition && viewSpaceAbove >= minHeight)
) {
constrainedHeight = isFixedPosition
? viewSpaceAbove - marginTop
: scrollSpaceAbove - marginTop;
}
if (shouldScroll) {
animatedScrollTo(scrollParent, scrollUp, scrollDuration);
}
return {
placement: 'top',
maxHeight: constrainedHeight,
};
}
// 4. not enough space, the browser WILL NOT increase scrollable area when
// absolutely positioned element rendered above the viewport (only below).
// Flip the menu, render below
return { placement: 'bottom', maxHeight: preferredMaxHeight };
default:
throw new Error(`Invalid placement provided "${preferredPlacement}".`);
}
return defaultState;
}
// Menu Component
// ------------------------------
export interface MenuPlacementProps {
/** Set the minimum height of the menu. */
minMenuHeight: number;
/** Set the maximum height of the menu. */
maxMenuHeight: number;
/** Set whether the menu should be at the top, at the bottom. The auto options sets it to bottom. */
menuPlacement: MenuPlacement;
/** The CSS position value of the menu, when "fixed" extra layout management is required */
menuPosition: MenuPosition;
/** Set whether the page should scroll to show the menu. */
menuShouldScrollIntoView: boolean;
}
export interface MenuProps<
Option = unknown,
IsMulti extends boolean = boolean,
Group extends GroupBase<Option> = GroupBase<Option>
> extends CommonPropsAndClassName<Option, IsMulti, Group>,
MenuPlacementProps {
/** Reference to the internal element, consumed by the MenuPlacer component */
innerRef: Ref<HTMLDivElement>;
innerProps: JSX.IntrinsicElements['div'];
isLoading: boolean;
placement: CoercedMenuPlacement;
/** The children to be rendered. */
children: ReactNode;
}
interface PlacerProps {
placement: CoercedMenuPlacement;
maxHeight: number;
}
interface ChildrenProps {
ref: Ref<HTMLDivElement>;
placerProps: PlacerProps;
}
export interface MenuPlacerProps<
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
> extends CommonProps<Option, IsMulti, Group>,
MenuPlacementProps {
/** The children to be rendered. */
children: (childrenProps: ChildrenProps) => ReactElement;
}
function alignToControl(placement: CoercedMenuPlacement) {
const placementToCSSProp = { bottom: 'top', top: 'bottom' };
return placement ? placementToCSSProp[placement] : 'bottom';
}
const coercePlacement = (p: MenuPlacement) => (p === 'auto' ? 'bottom' : p);
export const menuCSS = <
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
>(
{
placement,
theme: { borderRadius, spacing, colors },
}: MenuProps<Option, IsMulti, Group>,
unstyled: boolean
): CSSObjectWithLabel => ({
label: 'menu',
[alignToControl(placement)]: '100%',
position: 'absolute',
width: '100%',
zIndex: 1,
...(unstyled
? {}
: {
backgroundColor: colors.neutral0,
borderRadius: borderRadius,
boxShadow:
'0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)',
marginBottom: spacing.menuGutter,
marginTop: spacing.menuGutter,
}),
});
const PortalPlacementContext =
createContext<{
setPortalPlacement: (placement: CoercedMenuPlacement) => void;
} | null>(null);
// NOTE: internal only
export const MenuPlacer = <
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
>(
props: MenuPlacerProps<Option, IsMulti, Group>
) => {
const {
children,
minMenuHeight,
maxMenuHeight,
menuPlacement,
menuPosition,
menuShouldScrollIntoView,
selectProps,
theme,
} = props;
const { isLoading } = selectProps;
const { setPortalPlacement } = useContext(PortalPlacementContext) || {};
const ref = useRef<HTMLDivElement | null>(null);
const [maxHeight, setMaxHeight] = useState(maxMenuHeight);
const [placement, setPlacement] = useState<CoercedMenuPlacement | null>(null);
const { controlHeight } = theme.spacing;
useLayoutEffect(() => {
const menuEl = ref.current;
if (!menuEl) return;
// DO NOT scroll if position is fixed
const isFixedPosition = menuPosition === 'fixed';
const shouldScroll = menuShouldScrollIntoView && !isFixedPosition;
const state = getMenuPlacement({
maxHeight: maxMenuHeight,
menuEl,
minHeight: minMenuHeight,
placement: menuPlacement,
shouldScroll,
isFixedPosition,
controlHeight,
});
setMaxHeight(state.maxHeight);
setPlacement(state.placement);
setPortalPlacement?.(state.placement);
}, [
isLoading,
maxMenuHeight,
menuPlacement,
menuPosition,
menuShouldScrollIntoView,
minMenuHeight,
setPortalPlacement,
controlHeight,
]);
return children({
ref,
placerProps: {
...props,
placement: placement || coercePlacement(menuPlacement),
maxHeight,
},
});
};
const Menu = <Option, IsMulti extends boolean, Group extends GroupBase<Option>>(
props: MenuProps<Option, IsMulti, Group>
) => {
const { children, innerRef, innerProps } = props;
return (
<div
{...getStyleProps(props, 'menu', { menu: true })}
ref={innerRef}
{...innerProps}
>
{children}
</div>
);
};
export default Menu;
// ==============================
// Menu List
// ==============================
export interface MenuListProps<
Option = unknown,
IsMulti extends boolean = boolean,
Group extends GroupBase<Option> = GroupBase<Option>
> extends CommonPropsAndClassName<Option, IsMulti, Group> {
/** Set the max height of the Menu component */
maxHeight: number;
/** The children to be rendered. */
children: ReactNode;
/** Inner ref to DOM ReactNode */
innerRef: Ref<HTMLDivElement>;
/** The currently focused option */
focusedOption: Option;
/** Props to be passed to the menu-list wrapper. */
innerProps: JSX.IntrinsicElements['div'];
}
export const menuListCSS = <
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
>(
{
maxHeight,
theme: {
spacing: { baseUnit },
},
}: MenuListProps<Option, IsMulti, Group>,
unstyled: boolean
): CSSObjectWithLabel => ({
maxHeight,
overflowY: 'auto',
position: 'relative', // required for offset[Height, Top] > keyboard scroll
WebkitOverflowScrolling: 'touch',
...(unstyled
? {}
: {
paddingBottom: baseUnit,
paddingTop: baseUnit,
}),
});
export const MenuList = <
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
>(
props: MenuListProps<Option, IsMulti, Group>
) => {
const { children, innerProps, innerRef, isMulti } = props;
return (
<div
{...getStyleProps(props, 'menuList', {
'menu-list': true,
'menu-list--is-multi': isMulti,
})}
ref={innerRef}
{...innerProps}
>
{children}
</div>
);
};
// ==============================
// Menu Notices
// ==============================
const noticeCSS = <
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
>(
{
theme: {
spacing: { baseUnit },
colors,
},
}: NoticeProps<Option, IsMulti, Group>,
unstyled: boolean
): CSSObjectWithLabel => ({
textAlign: 'center',
...(unstyled
? {}
: {
color: colors.neutral40,
padding: `${baseUnit * 2}px ${baseUnit * 3}px`,
}),
});
export const noOptionsMessageCSS = noticeCSS;
export const loadingMessageCSS = noticeCSS;
export interface NoticeProps<
Option = unknown,
IsMulti extends boolean = boolean,
Group extends GroupBase<Option> = GroupBase<Option>
> extends CommonPropsAndClassName<Option, IsMulti, Group> {
/** The children to be rendered. */
children: ReactNode;
/** Props to be passed on to the wrapper. */
innerProps: JSX.IntrinsicElements['div'];
}
export const NoOptionsMessage = <
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
>({
children = 'No options',
innerProps,
...restProps
}: NoticeProps<Option, IsMulti, Group>) => {
return (
<div
{...getStyleProps(
{ ...restProps, children, innerProps },
'noOptionsMessage',
{
'menu-notice': true,
'menu-notice--no-options': true,
}
)}
{...innerProps}
>
{children}
</div>
);
};
export const LoadingMessage = <
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
>({
children = 'Loading...',
innerProps,
...restProps
}: NoticeProps<Option, IsMulti, Group>) => {
return (
<div
{...getStyleProps(
{ ...restProps, children, innerProps },
'loadingMessage',
{
'menu-notice': true,
'menu-notice--loading': true,
}
)}
{...innerProps}
>
{children}
</div>
);
};
// ==============================
// Menu Portal
// ==============================
export interface MenuPortalProps<
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
> extends CommonPropsAndClassName<Option, IsMulti, Group> {
appendTo: HTMLElement | undefined;
children: ReactNode; // ideally Menu<MenuProps>
controlElement: HTMLDivElement | null;
innerProps: JSX.IntrinsicElements['div'];
menuPlacement: MenuPlacement;
menuPosition: MenuPosition;
}
export interface PortalStyleArgs {
offset: number;
position: MenuPosition;
rect: { left: number; width: number };
}
export const menuPortalCSS = ({
rect,
offset,
position,
}: PortalStyleArgs): CSSObjectWithLabel => ({
left: rect.left,
position: position,
top: offset,
width: rect.width,
zIndex: 1,
});
interface ComputedPosition {
offset: number;
rect: { left: number; width: number };
}
export const MenuPortal = <
Option,
IsMulti extends boolean,
Group extends GroupBase<Option>
>(
props: MenuPortalProps<Option, IsMulti, Group>
) => {
const {
appendTo,
children,
controlElement,
innerProps,
menuPlacement,
menuPosition,
} = props;
const menuPortalRef = useRef<HTMLDivElement | null>(null);
const cleanupRef = useRef<(() => void) | void | null>(null);
const [placement, setPortalPlacement] = useState<'bottom' | 'top'>(
coercePlacement(menuPlacement)
);
const portalPlacementContext = useMemo(
() => ({
setPortalPlacement,
}),
[]
);
const [computedPosition, setComputedPosition] =
useState<ComputedPosition | null>(null);
const updateComputedPosition = useCallback(() => {
if (!controlElement) return;
const rect = getBoundingClientObj(controlElement);
const scrollDistance = menuPosition === 'fixed' ? 0 : window.pageYOffset;
const offset = rect[placement] + scrollDistance;
if (
offset !== computedPosition?.offset ||
rect.left !== computedPosition?.rect.left ||
rect.width !== computedPosition?.rect.width
) {
setComputedPosition({ offset, rect });
}
}, [
controlElement,
menuPosition,
placement,
computedPosition?.offset,
computedPosition?.rect.left,
computedPosition?.rect.width,
]);
useLayoutEffect(() => {
updateComputedPosition();
}, [updateComputedPosition]);
const runAutoUpdate = useCallback(() => {
if (typeof cleanupRef.current === 'function') {
cleanupRef.current();
cleanupRef.current = null;
}
if (controlElement && menuPortalRef.current) {
cleanupRef.current = autoUpdate(
controlElement,
menuPortalRef.current,
updateComputedPosition,
{ elementResize: 'ResizeObserver' in window }
);
}
}, [controlElement, updateComputedPosition]);
useLayoutEffect(() => {
runAutoUpdate();
}, [runAutoUpdate]);
const setMenuPortalElement = useCallback(
(menuPortalElement: HTMLDivElement) => {
menuPortalRef.current = menuPortalElement;
runAutoUpdate();
},
[runAutoUpdate]
);
// bail early if required elements aren't present
if ((!appendTo && menuPosition !== 'fixed') || !computedPosition) return null;
// same wrapper element whether fixed or portalled
const menuWrapper = (
<div
ref={setMenuPortalElement}
{...getStyleProps(
{
...props,
offset: computedPosition.offset,
position: menuPosition,
rect: computedPosition.rect,
},
'menuPortal',
{
'menu-portal': true,
}
)}
{...innerProps}
>
{children}
</div>
);
return (
<PortalPlacementContext.Provider value={portalPlacementContext}>
{appendTo ? createPortal(menuWrapper, appendTo) : menuWrapper}
</PortalPlacementContext.Provider>
);
};