forked from adobe/react-spectrum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPopover.tsx
207 lines (188 loc) · 7.53 KB
/
Popover.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
/*
* Copyright 2022 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
import {AriaPopoverProps, DismissButton, Overlay, PlacementAxis, PositionProps, usePopover} from 'react-aria';
import {ContextValue, RenderProps, SlotProps, useContextProps, useRenderProps} from './utils';
import {filterDOMProps, mergeProps, useEnterAnimation, useExitAnimation, useLayoutEffect, useResizeObserver} from '@react-aria/utils';
import {forwardRefType, RefObject} from '@react-types/shared';
import {OverlayArrowContext} from './OverlayArrow';
import {OverlayTriggerProps, OverlayTriggerState, useOverlayTriggerState} from 'react-stately';
import {OverlayTriggerStateContext} from './Dialog';
import React, {createContext, ForwardedRef, forwardRef, useCallback, useContext, useMemo, useRef, useState} from 'react';
import {useIsHidden} from '@react-aria/collections';
export interface PopoverProps extends Omit<PositionProps, 'isOpen'>, Omit<AriaPopoverProps, 'popoverRef' | 'triggerRef' | 'offset' | 'arrowSize'>, OverlayTriggerProps, RenderProps<PopoverRenderProps>, SlotProps {
/**
* The name of the component that triggered the popover. This is reflected on the element
* as the `data-trigger` attribute, and can be used to provide specific
* styles for the popover depending on which element triggered it.
*/
trigger?: string,
/**
* The ref for the element which the popover positions itself with respect to.
*
* When used within a trigger component such as DialogTrigger, MenuTrigger, Select, etc.,
* this is set automatically. It is only required when used standalone.
*/
triggerRef?: RefObject<Element | null>,
/**
* Whether the popover is currently performing an entry animation.
*/
isEntering?: boolean,
/**
* Whether the popover is currently performing an exit animation.
*/
isExiting?: boolean,
/**
* The container element in which the overlay portal will be placed. This may have unknown behavior depending on where it is portalled to.
* @default document.body
*/
UNSTABLE_portalContainer?: Element,
/**
* The additional offset applied along the main axis between the element and its
* anchor element.
* @default 8
*/
offset?: number
}
export interface PopoverRenderProps {
/**
* The name of the component that triggered the popover, e.g. "DialogTrigger" or "ComboBox".
* @selector [data-trigger="..."]
*/
trigger: string | null,
/**
* The placement of the popover relative to the trigger.
* @selector [data-placement="left | right | top | bottom"]
*/
placement: PlacementAxis | null,
/**
* Whether the popover is currently entering. Use this to apply animations.
* @selector [data-entering]
*/
isEntering: boolean,
/**
* Whether the popover is currently exiting. Use this to apply animations.
* @selector [data-exiting]
*/
isExiting: boolean
}
export const PopoverContext = createContext<ContextValue<PopoverProps, HTMLElement>>(null);
/**
* A popover is an overlay element positioned relative to a trigger.
*/
export const Popover = /*#__PURE__*/ (forwardRef as forwardRefType)(function Popover(props: PopoverProps, ref: ForwardedRef<HTMLElement>) {
[props, ref] = useContextProps(props, ref, PopoverContext);
let contextState = useContext(OverlayTriggerStateContext);
let localState = useOverlayTriggerState(props);
let state = props.isOpen != null || props.defaultOpen != null || !contextState ? localState : contextState;
let isExiting = useExitAnimation(ref, state.isOpen) || props.isExiting || false;
let isHidden = useIsHidden();
// We can set minWidth to the trigger width as a courtesy for custom trigger elements.
let triggerWidth = Number.parseFloat(props.style?.['--trigger-width']);
let [menuWidth, setMenuWidth] = useState(triggerWidth || 0);
let onResize = useCallback(() => {
if (props.triggerRef?.current) {
let triggerRect = props.triggerRef.current.getBoundingClientRect();
setMenuWidth(triggerRect.right - triggerRect.left);
}
}, [props.triggerRef]);
useResizeObserver({
ref: props.triggerRef,
onResize: onResize
});
let style = useMemo(() => ({
minWidth: menuWidth + 'px',
...props.style
}), [menuWidth, props.style]);
// If we are in a hidden tree, we still need to preserve our children.
if (isHidden) {
let children = props.children;
if (typeof children === 'function') {
children = children({
trigger: props.trigger || null,
placement: 'bottom',
isEntering: false,
isExiting: false,
defaultChildren: null
});
}
return <>{children}</>;
}
if (state && !state.isOpen && !isExiting) {
return null;
}
return (
<PopoverInner
{...props}
style={style}
triggerRef={props.triggerRef!}
state={state}
popoverRef={ref}
isExiting={isExiting} />
);
});
interface PopoverInnerProps extends AriaPopoverProps, RenderProps<PopoverRenderProps>, SlotProps {
state: OverlayTriggerState,
isEntering?: boolean,
isExiting: boolean,
UNSTABLE_portalContainer?: Element,
trigger?: string
}
function PopoverInner({state, isExiting, UNSTABLE_portalContainer, ...props}: PopoverInnerProps) {
// Calculate the arrow size internally (and remove props.arrowSize from PopoverProps)
// Referenced from: packages/@react-spectrum/tooltip/src/TooltipTrigger.tsx
let arrowRef = useRef<HTMLDivElement>(null);
let [arrowWidth, setArrowWidth] = useState(0);
useLayoutEffect(() => {
if (arrowRef.current && state.isOpen) {
setArrowWidth(arrowRef.current.getBoundingClientRect().width);
}
}, [state.isOpen, arrowRef]);
let {popoverProps, underlayProps, arrowProps, placement} = usePopover({
...props,
offset: props.offset ?? 8,
arrowSize: arrowWidth
}, state);
let ref = props.popoverRef as RefObject<HTMLDivElement | null>;
let isEntering = useEnterAnimation(ref, !!placement) || props.isEntering || false;
let renderProps = useRenderProps({
...props,
defaultClassName: 'react-aria-Popover',
values: {
trigger: props.trigger || null,
placement,
isEntering,
isExiting
}
});
let style = {...popoverProps.style, ...renderProps.style};
return (
<Overlay {...props} isExiting={isExiting} portalContainer={UNSTABLE_portalContainer}>
{!props.isNonModal && state.isOpen && <div data-testid="underlay" {...underlayProps} style={{position: 'fixed', inset: 0}} />}
<div
{...mergeProps(filterDOMProps(props as any), popoverProps)}
{...renderProps}
ref={ref}
slot={props.slot || undefined}
style={style}
data-trigger={props.trigger}
data-placement={placement}
data-entering={isEntering || undefined}
data-exiting={isExiting || undefined}>
{!props.isNonModal && <DismissButton onDismiss={state.close} />}
<OverlayArrowContext.Provider value={{...arrowProps, placement, ref: arrowRef}}>
{renderProps.children}
</OverlayArrowContext.Provider>
<DismissButton onDismiss={state.close} />
</div>
</Overlay>
);
}