-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
index.js
337 lines (302 loc) · 9.47 KB
/
index.js
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
/**
* External dependencies
*/
import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { useRef, useState, useEffect } from '@wordpress/element';
import { focus } from '@wordpress/dom';
import { ESCAPE } from '@wordpress/keycodes';
import isShallowEqual from '@wordpress/is-shallow-equal';
/**
* Internal dependencies
*/
import { computePopoverPosition } from './utils';
import withFocusReturn from '../higher-order/with-focus-return';
import withConstrainedTabbing from '../higher-order/with-constrained-tabbing';
import PopoverDetectOutside from './detect-outside';
import IconButton from '../icon-button';
import ScrollLock from '../scroll-lock';
import IsolatedEventContainer from '../isolated-event-container';
import { Slot, Fill, Consumer } from '../slot-fill';
import Animate from '../animate';
const FocusManaged = withConstrainedTabbing( withFocusReturn( ( { children } ) => children ) );
/**
* Name of slot in which popover should fill.
*
* @type {String}
*/
const SLOT_NAME = 'Popover';
const Popover = ( {
headerTitle,
onClose,
onKeyDown,
children,
className,
onClickOutside = onClose,
noArrow = false,
// Disable reason: We generate the `...contentProps` rest as remainder
// of props which aren't explicitly handled by this component.
/* eslint-disable no-unused-vars */
position = 'top',
range,
focusOnMount = 'firstElement',
anchorRect,
getAnchorRect,
expandOnMobile,
animate = true,
/* eslint-enable no-unused-vars */
...contentProps
} ) => {
const anchorRef = useRef( null );
const contentRef = useRef( null );
// Animation
const [ isReadyToAnimate, setIsReadyToAnimate ] = useState( false );
// Anchor position
const [ anchor, setAnchor ] = useState( null );
const refreshAnchorRect = () => {
if ( ! anchorRect && ! anchorRef.current ) {
return;
}
let newAnchor;
if ( anchorRect ) {
newAnchor = anchorRect;
} else if ( getAnchorRect ) {
newAnchor = getAnchorRect( anchorRef.current );
} else {
const rect = anchorRef.current.parentNode.getBoundingClientRect();
// subtract padding
const { paddingTop, paddingBottom } = window.getComputedStyle( anchorRef.current.parentNode );
const topPad = parseInt( paddingTop, 10 );
const bottomPad = parseInt( paddingBottom, 10 );
newAnchor = {
x: rect.left,
y: rect.top + topPad,
width: rect.width,
height: rect.height - topPad - bottomPad,
left: rect.left,
right: rect.right,
top: rect.top + topPad,
bottom: rect.bottom - bottomPad,
};
}
const didAnchorRectChange = ! isShallowEqual( anchorRect, anchor );
if ( didAnchorRectChange ) {
setAnchor( newAnchor );
}
};
useEffect( refreshAnchorRect, [ anchorRect, getAnchorRect ] );
useEffect( () => {
/*
* There are sometimes we need to reposition or resize the popover that are not
* handled by the resize/scroll window events (i.e. CSS changes in the layout
* that changes the position of the anchor).
*
* For these situations, we refresh the popover every 0.5s
*/
const intervalHandle = setInterval( refreshAnchorRect, 500 );
return () => clearInterval( intervalHandle );
}, [] );
// Content size
const [ contentSize, setContentSize ] = useState( null );
useEffect( () => {
const contentRect = contentRef.current.getBoundingClientRect();
setContentSize( {
width: contentRect.width,
height: contentRect.height,
} );
setIsReadyToAnimate( true );
}, [] );
// Compute the position
const [ popoverPosition, setPopoverPosition ] = useState( {
popoverLeft: null,
popoverTop: null,
yAxis: 'top',
xAxis: 'center',
contentHeight: null,
contentWidth: null,
isMobile: false,
} );
const refreshPopoverPosition = () => {
if ( ! anchor || ! contentSize ) {
return;
}
const newPopoverPosition = computePopoverPosition(
anchor,
contentSize,
position,
expandOnMobile
);
if (
popoverPosition.yAxis !== newPopoverPosition.yAxis ||
popoverPosition.xAxis !== newPopoverPosition.xAxis ||
popoverPosition.popoverLeft !== newPopoverPosition.popoverLeft ||
popoverPosition.popoverTop !== newPopoverPosition.popoverTop ||
popoverPosition.contentHeight !== newPopoverPosition.contentHeight ||
popoverPosition.contentWidth !== newPopoverPosition.contentWidth ||
popoverPosition.isMobile !== newPopoverPosition.isMobile
) {
setPopoverPosition( newPopoverPosition );
}
};
useEffect( refreshPopoverPosition, [ anchor, contentSize ] );
// Refresh anchor rect on resize
useEffect( () => {
const refreshWindowSizeDependencies = () => {
refreshAnchorRect();
refreshPopoverPosition();
};
let refreshHandle;
const throttledRefresh = ( event ) => {
window.cancelAnimationFrame( refreshHandle );
if ( event && event.type === 'scroll' && contentRef.current.contains( event.target ) ) {
return;
}
refreshHandle = window.requestAnimationFrame( refreshWindowSizeDependencies );
};
window.addEventListener( 'resize', throttledRefresh );
window.addEventListener( 'scroll', throttledRefresh );
return () => {
window.removeEventListener( 'resize', throttledRefresh );
window.removeEventListener( 'scroll', throttledRefresh );
};
}, [] );
// Focus handling
useEffect( () => {
/*
* Without the setTimeout, the dom node is not being focused. Related:
* https://stackoverflow.com/questions/35522220/react-ref-with-focus-doesnt-work-without-settimeout-my-example
*
* TODO: Treat the cause, not the symptom.
*/
const focusTimeout = setTimeout( () => {
if ( ! focusOnMount || ! contentRef.current ) {
return;
}
if ( focusOnMount === 'firstElement' ) {
// Find first tabbable node within content and shift focus, falling
// back to the popover panel itself.
const firstTabbable = focus.tabbable.find( contentRef.current )[ 0 ];
if ( firstTabbable ) {
firstTabbable.focus();
} else {
contentRef.current.focus();
}
return;
}
if ( focusOnMount === 'container' ) {
// Focus the popover panel itself so items in the popover are easily
// accessed via keyboard navigation.
contentRef.current.focus();
}
}, 0 );
return () => clearTimeout( focusTimeout );
}, [] );
// Event handlers
const maybeClose = ( event ) => {
// Close on escape
if ( event.keyCode === ESCAPE && onClose ) {
event.stopPropagation();
onClose();
}
// Preserve original content prop behavior
if ( onKeyDown ) {
onKeyDown( event );
}
};
// Compute the animation position
const yAxisMapping = {
top: 'bottom',
bottom: 'top',
};
const xAxisMapping = {
left: 'right',
right: 'left',
};
const animateYAxis = yAxisMapping[ popoverPosition.yAxis ] || 'middle';
const animateXAxis = xAxisMapping[ popoverPosition.xAxis ] || 'center';
const classes = classnames(
'components-popover',
className,
'is-' + popoverPosition.yAxis,
'is-' + popoverPosition.xAxis,
{
'is-mobile': popoverPosition.isMobile,
'is-without-arrow': noArrow || (
popoverPosition.xAxis === 'center' &&
popoverPosition.yAxis === 'middle'
),
}
);
// Disable reason: We care to capture the _bubbled_ events from inputs
// within popover as inferring close intent.
/* eslint-disable jsx-a11y/no-static-element-interactions */
let content = (
<PopoverDetectOutside onClickOutside={ onClickOutside }>
<Animate
type={ animate && isReadyToAnimate ? 'appear' : null }
options={ { origin: animateYAxis + ' ' + animateXAxis } }
>
{ ( { className: animateClassName } ) => (
<IsolatedEventContainer
className={ classnames( classes, animateClassName ) }
style={ {
top: ! popoverPosition.isMobile && popoverPosition.popoverTop ? popoverPosition.popoverTop + 'px' : undefined,
left: ! popoverPosition.isMobile && popoverPosition.popoverLeft ? popoverPosition.popoverLeft + 'px' : undefined,
visibility: contentSize ? undefined : 'hidden',
} }
{ ...contentProps }
onKeyDown={ maybeClose }
>
{ popoverPosition.isMobile && (
<div className="components-popover__header">
<span className="components-popover__header-title">
{ headerTitle }
</span>
<IconButton className="components-popover__close" icon="no-alt" onClick={ onClose } />
</div>
) }
<div
ref={ contentRef }
className="components-popover__content"
style={ {
maxHeight: ! popoverPosition.isMobile && popoverPosition.contentHeight ? popoverPosition.contentHeight + 'px' : undefined,
maxWidth: ! popoverPosition.isMobile && popoverPosition.contentWidth ? popoverPosition.contentWidth + 'px' : undefined,
} }
tabIndex="-1"
>
{ children }
</div>
</IsolatedEventContainer>
) }
</Animate>
</PopoverDetectOutside>
);
/* eslint-enable jsx-a11y/no-static-element-interactions */
// Apply focus to element as long as focusOnMount is truthy; false is
// the only "disabled" value.
if ( focusOnMount ) {
content = <FocusManaged>{ content }</FocusManaged>;
}
return (
<Consumer>
{ ( { getSlot } ) => {
// In case there is no slot context in which to render,
// default to an in-place rendering.
if ( getSlot && getSlot( SLOT_NAME ) ) {
content = <Fill name={ SLOT_NAME }>{ content }</Fill>;
}
return (
<span ref={ anchorRef }>
{ content }
{ popoverPosition.isMobile && expandOnMobile && <ScrollLock /> }
</span>
);
} }
</Consumer>
);
};
const PopoverContainer = Popover;
PopoverContainer.Slot = () => <Slot bubblesVirtually name={ SLOT_NAME } />;
export default PopoverContainer;