-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
index.js
334 lines (285 loc) · 8.6 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
/**
* External dependencies
*/
import classnames from 'classnames';
import { defer, isEqual, noop } from 'lodash';
/**
* WordPress dependencies
*/
import { Component } from '@wordpress/element';
import { focus, keycodes } from '@wordpress/utils';
/**
* Internal dependencies
*/
import './style.scss';
import withFocusReturn from '../higher-order/with-focus-return';
import PopoverDetectOutside from './detect-outside';
import IconButton from '../icon-button';
import { Slot, Fill } from '../slot-fill';
/**
* Value representing whether a key is currently pressed. Bound to the document
* for use in determining whether the Popover component has mounted in response
* to a keyboard event. Popover's focusOnMount behavior is specific to keyboard
* interaction. Must be bound at the top-level and its unsetting deferred since
* the component will have already mounted by the time keyup occurs.
*
* @type {boolean}
*/
let isKeyDown = false;
document.addEventListener( 'keydown', () => isKeyDown = true );
document.addEventListener( 'keyup', defer.bind( null, () => isKeyDown = false ) );
const FocusManaged = withFocusReturn( ( { children } ) => children );
const { ESCAPE } = keycodes;
/**
* Name of slot in which popover should fill.
*
* @type {String}
*/
const SLOT_NAME = 'Popover';
const isMobile = () => window.innerWidth < 782;
class Popover extends Component {
constructor() {
super( ...arguments );
this.focus = this.focus.bind( this );
this.bindNode = this.bindNode.bind( this );
this.getAnchorRect = this.getAnchorRect.bind( this );
this.setOffset = this.setOffset.bind( this );
this.throttledSetOffset = this.throttledSetOffset.bind( this );
this.maybeClose = this.maybeClose.bind( this );
this.nodes = {};
this.state = {
forcedYAxis: null,
forcedXAxis: null,
isMobile: false,
};
}
componentDidMount() {
this.setOffset();
this.setForcedPositions();
this.toggleWindowEvents( true );
this.focus();
}
componentWillReceiveProps( nextProps ) {
if ( this.props.position !== nextProps.position ) {
this.setState( {
forcedYAxis: null,
forcedXAxis: null,
} );
}
}
componentDidUpdate( prevProps, prevState ) {
const { position } = this.props;
const { position: prevPosition } = prevProps;
if ( position !== prevPosition ) {
this.setOffset();
this.setForcedPositions();
} else if ( ! isEqual( this.state, prevState ) ) {
// Need to update offset if forced positioning applied
this.setOffset();
}
}
componentWillUnmount() {
this.toggleWindowEvents( false );
}
toggleWindowEvents( isListening ) {
const handler = isListening ? 'addEventListener' : 'removeEventListener';
window.cancelAnimationFrame( this.rafHandle );
window[ handler ]( 'resize', this.throttledSetOffset );
window[ handler ]( 'scroll', this.throttledSetOffset, true );
}
focus() {
const { focusOnMount = true } = this.props;
if ( ! focusOnMount || ! isKeyDown ) {
return;
}
const { content } = this.nodes;
if ( ! content ) {
return;
}
// Find first tabbable node within content and shift focus, falling
// back to the popover panel itself.
const firstTabbable = focus.tabbable.find( content )[ 0 ];
if ( firstTabbable ) {
firstTabbable.focus();
} else {
content.focus();
}
}
throttledSetOffset() {
this.rafHandle = window.requestAnimationFrame( this.setOffset );
}
getAnchorRect() {
const { anchor } = this.nodes;
if ( ! anchor || ! anchor.parentNode ) {
return;
}
const rect = anchor.parentNode.getBoundingClientRect();
// subtract padding
const { paddingTop, paddingBottom } = window.getComputedStyle( anchor.parentNode );
const topPad = parseInt( paddingTop, 10 );
const bottomPad = parseInt( paddingBottom, 10 );
return {
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,
};
}
setOffset() {
const { getAnchorRect = this.getAnchorRect, expandOnMobile = false } = this.props;
const { popover } = this.nodes;
if ( isMobile() && expandOnMobile ) {
popover.style.left = 0;
popover.style.top = 0;
popover.style.right = 0;
popover.style.bottom = 0;
if ( ! this.state.isMobile ) {
this.setState( {
isMobile: true,
} );
}
return;
}
if ( this.state.isMobile ) {
this.setState( {
isMobile: false,
} );
}
const [ yAxis, xAxis ] = this.getPositions();
const isTop = 'top' === yAxis;
const isLeft = 'left' === xAxis;
const isRight = 'right' === xAxis;
const rect = getAnchorRect( { isTop, isLeft, isRight } );
if ( ! rect ) {
return;
}
popover.style.bottom = 'auto';
popover.style.right = 'auto';
// Set popover at parent node center
popover.style.left = Math.round( rect.left + ( rect.width / 2 ) ) + 'px';
// Set at top or bottom of parent node based on popover position
popover.style.top = rect[ yAxis ] + 'px';
}
setForcedPositions() {
const anchor = this.getAnchorRect();
const rect = this.nodes.content.getBoundingClientRect();
// Check exceeding top or bottom of viewport and switch direction if the space is begger
if ( rect.top < 0 || rect.bottom > window.innerHeight ) {
const overflowBottom = window.innerHeight - ( anchor.bottom + rect.height );
const overflowTop = anchor.top - rect.height;
const direction = overflowTop < overflowBottom ? 'bottom' : 'top';
if ( direction !== this.state.forcedYAxis ) {
this.setState( { forcedYAxis: direction } );
}
}
// Check exceeding left or right of viewport and switch direction if the space is begger
if ( rect.left < 0 || rect.right > window.innerWidth ) {
const overflowLeft = anchor.left - rect.width;
const overflowRight = window.innerWidth - ( anchor.right + rect.width );
const direction = overflowLeft < overflowRight ? 'right' : 'left';
if ( direction !== this.state.forcedXAxis ) {
this.setState( { forcedXAxis: direction } );
}
}
}
getPositions() {
const { position = 'top' } = this.props;
const [ yAxis, xAxis = 'center' ] = position.split( ' ' );
const { forcedYAxis, forcedXAxis } = this.state;
return [
forcedYAxis || yAxis,
forcedXAxis || xAxis,
];
}
maybeClose( event ) {
const { onKeyDown, onClose } = this.props;
// Close on escape
if ( event.keyCode === ESCAPE && onClose ) {
event.stopPropagation();
onClose();
}
// Preserve original content prop behavior
if ( onKeyDown ) {
onKeyDown( event );
}
}
bindNode( name ) {
return ( node ) => this.nodes[ name ] = node;
}
render() {
const {
onClose,
children,
className,
onClickOutside = onClose,
// 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,
range,
focusOnMount,
getAnchorRect,
expandOnMobile,
/* eslint-enable no-unused-vars */
...contentProps
} = this.props;
const [ yAxis, xAxis ] = this.getPositions();
const classes = classnames(
'components-popover',
className,
'is-' + yAxis,
'is-' + xAxis,
{
'is-mobile': this.state.isMobile,
}
);
// 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 }>
<div
ref={ this.bindNode( 'popover' ) }
className={ classes }
{ ...contentProps }
onKeyDown={ this.maybeClose }
>
{ this.state.isMobile && (
<div className="components-popover__header">
<IconButton className="components-popover__close" icon="no-alt" onClick={ onClose } />
</div>
) }
<div
ref={ this.bindNode( 'content' ) }
className="components-popover__content"
tabIndex="-1"
>
{ children }
</div>
</div>
</PopoverDetectOutside>
);
/* eslint-enable jsx-a11y/no-static-element-interactions */
// Apply focus return behavior except when default focus on open
// behavior is disabled.
if ( false !== focusOnMount ) {
content = <FocusManaged>{ content }</FocusManaged>;
}
// In case there is no slot context in which to render, default to an
// in-place rendering.
const { getSlot } = this.context;
if ( getSlot && getSlot( SLOT_NAME ) ) {
content = <Fill name={ SLOT_NAME }>{ content }</Fill>;
}
return <span ref={ this.bindNode( 'anchor' ) }>{ content }</span>;
}
}
Popover.contextTypes = {
getSlot: noop,
};
Popover.Slot = () => <Slot bubblesVirtually name={ SLOT_NAME } />;
export default Popover;