-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.tsx
377 lines (356 loc) · 11.3 KB
/
index.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
// The MIT License
//
// Copyright (c) 2018 Google, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
import * as React from 'react';
import * as classnames from 'classnames';
// @ts-ignore no .d.ts file
import {MDCMenuSurfaceFoundation, MDCMenuSurfaceAdapter, Corner} from '@material/menu-surface/dist/mdc.menuSurface';
export interface MenuSurfaceProps extends React.HTMLProps<HTMLDivElement> {
className: string;
anchorElement?: HTMLElement;
anchorCorner: number;
anchorMargin?: {
top?: number;
left?: number;
bottom?: number;
right?: number;
};
styles: React.CSSProperties;
coordinates?: {
x: number;
y: number;
};
onClose: () => void;
onOpen: () => void;
onKeyDown: (event: React.KeyboardEvent) => void;
quickOpen: boolean;
open: boolean;
fixed: boolean;
};
export interface MenuSurfaceState {
transformOrigin: string;
maxHeight?: number;
styleLeft?: number;
styleRight?: number;
styleTop?: number;
styleBottom?: number;
classList: Set<string>;
};
interface Position {
top?: string;
right?: string;
bottom?: string;
left?: string;
};
class MenuSurface extends React.Component<MenuSurfaceProps, MenuSurfaceState> {
menuSurfaceElement: React.RefObject<HTMLDivElement> = React.createRef();
previousFocus: HTMLElement | null = null;
foundation: MDCMenuSurfaceFoundation;
handleWindowClick?: EventListener;
registerWindowClickListener?: () => void;
deregisterWindowClickListener?: () => void;
firstFocusableElement: HTMLElement | null = null;
lastFocusableElement: HTMLElement | null = null;
state: MenuSurfaceState = {
transformOrigin: '',
maxHeight: undefined,
styleLeft: undefined,
styleRight: undefined,
styleTop: undefined,
styleBottom: undefined,
classList: new Set(),
};
static defaultProps: Partial<MenuSurfaceProps> = {
className: '',
styles: {},
anchorCorner: 0,
anchorMargin: {},
onClose: () => {},
onOpen: () => {},
onKeyDown: () => {},
quickOpen: false,
open: false,
fixed: false,
};
componentDidMount() {
const {
anchorCorner,
anchorMargin,
coordinates,
fixed,
open,
quickOpen,
} = this.props;
this.handleWindowClick = (evt) => this.foundation.handleBodyClick(evt);
this.registerWindowClickListener = () =>
window.addEventListener('click', this.handleWindowClick!);
this.deregisterWindowClickListener = () =>
window.removeEventListener('click', this.handleWindowClick!);
this.foundation = new MDCMenuSurfaceFoundation(this.adapter);
this.foundation.init();
this.hoistToBody();
this.foundation.setFixedPosition(fixed);
if (coordinates) {
this.setCoordinates();
}
if (anchorCorner) {
this.foundation.setAnchorCorner(anchorCorner);
}
if (anchorMargin) {
this.foundation.setAnchorMargin(anchorMargin);
}
if (quickOpen) {
this.foundation.setQuickOpen(quickOpen);
}
if (open) {
this.open_();
}
}
componentDidUpdate(prevProps: MenuSurfaceProps) {
if (this.props.open !== prevProps.open) {
this.open_();
}
if (this.props.coordinates !== prevProps.coordinates) {
this.setCoordinates();
}
if (this.props.anchorCorner !== prevProps.anchorCorner) {
this.foundation.setAnchorCorner(this.props.anchorCorner);
}
if (this.props.anchorMargin !== prevProps.anchorMargin) {
this.foundation.setAnchorMargin(this.props.anchorMargin);
}
if (this.props.quickOpen !== prevProps.quickOpen) {
this.foundation.setQuickOpen(this.props.quickOpen);
}
}
componentWillUnmount() {
if (this.deregisterWindowClickListener) {
this.deregisterWindowClickListener();
}
if (this.foundation) {
this.foundation.destroy();
}
}
private hoistToBody(): void {
// this deviates from the mdc web version.
// here we force the menu to hoist, and require either
// this.props.(x,y) or this.props.anchorElement.
const menuSurfaceElement = this.menuSurfaceElement.current;
if (!menuSurfaceElement) return;
if (!menuSurfaceElement.parentElement) return;
document.body.appendChild(
menuSurfaceElement.parentElement.removeChild(menuSurfaceElement)
);
this.foundation.setIsHoisted(true);
}
private setCoordinates(): void {
if (!this.props.coordinates) return;
const {x, y} = this.props.coordinates;
this.foundation.setAbsolutePosition(x, y);
}
get classes(): string {
const {fixed, className} = this.props;
const {classList} = this.state;
return classnames('mdc-menu-surface', Array.from(classList), className, {
'mdc-menu-surface--fixed': fixed,
});
}
get styles(): React.CSSProperties {
const {
styleLeft,
styleRight,
styleTop,
styleBottom,
transformOrigin,
maxHeight,
} = this.state;
return Object.assign({}, this.props.styles, {
transformOrigin,
maxHeight,
left: styleLeft,
right: styleRight,
top: styleTop,
bottom: styleBottom,
});
}
get adapter(): MDCMenuSurfaceAdapter {
const focusAdapterMethods = {
isFocused: () =>
this.menuSurfaceElement &&
document.activeElement === this.menuSurfaceElement.current,
saveFocus: () => {
this.previousFocus = document.activeElement as HTMLElement | null;
},
restoreFocus: () => {
const element = this.menuSurfaceElement;
if (!element) return;
if (!element.current) return;
if (!element.current.contains(document.activeElement)) return;
if (!this.previousFocus) return;
if (!this.previousFocus.focus) return;
this.previousFocus.focus();
},
isFirstElementFocused: () =>
this.firstFocusableElement &&
this.firstFocusableElement === document.activeElement,
isLastElementFocused: () =>
this.lastFocusableElement &&
this.lastFocusableElement === document.activeElement,
focusFirstElement: () =>
this.firstFocusableElement &&
this.firstFocusableElement.focus &&
this.firstFocusableElement.focus(),
focusLastElement: () =>
this.lastFocusableElement &&
this.lastFocusableElement.focus &&
this.lastFocusableElement.focus(),
};
const dimensionAdapterMethods = {
getInnerDimensions: () => {
const element = this.menuSurfaceElement.current;
if (!element) return;
return {width: element.offsetWidth, height: element.offsetHeight};
},
getAnchorDimensions: () =>
this.props.anchorElement &&
this.props.anchorElement.getBoundingClientRect(),
getWindowDimensions: () => {
return {width: window.innerWidth, height: window.innerHeight};
},
getBodyDimensions: () => {
return {
width: document.body.clientWidth,
height: document.body.clientHeight,
};
},
getWindowScroll: () => {
return {x: window.pageXOffset, y: window.pageYOffset};
},
setPosition: (position: Position) => {
this.setState((prevState) => Object.assign(prevState, {
styleLeft: 'left' in position ? position.left : null,
styleRight: 'right' in position ? position.right : null,
styleTop: 'top' in position ? position.top : null,
styleBottom: 'bottom' in position ? position.bottom : null,
}));
},
setMaxHeight: (maxHeight: number) => this.setState({maxHeight}),
};
return Object.assign(
{
addClass: (className: string) => {
const classList = new Set(this.state.classList);
classList.add(className);
this.setState({classList});
},
removeClass: (className: string) => {
const classList = new Set(this.state.classList);
classList.delete(className);
this.setState({classList});
},
hasClass: (className: string) => this.classes.split(' ').includes(className),
hasAnchor: () => !!this.props.anchorElement,
notifyOpen: () => {
if (this.registerWindowClickListener) {
this.registerWindowClickListener();
}
this.props.onOpen();
},
notifyClose: () => {
if (this.deregisterWindowClickListener) {
this.deregisterWindowClickListener();
}
this.props.onClose();
},
isElementInContainer: (el: HTMLElement) => {
if (!this.menuSurfaceElement.current) return false;
if (this.menuSurfaceElement.current === el) {
return true;
}
return this.menuSurfaceElement.current.contains(el);
},
isRtl: () => {
if (!this.menuSurfaceElement) return false;
if (!this.menuSurfaceElement.current) return false;
return window
.getComputedStyle(this.menuSurfaceElement.current)
.getPropertyValue('direction') === 'rtl';
},
setTransformOrigin: (transformOrigin: string) => this.setState({transformOrigin}),
},
focusAdapterMethods,
dimensionAdapterMethods
);
}
open_ = (): void => {
if (this.props.open) {
if (!this.menuSurfaceElement.current) return;
const focusableElements = this.menuSurfaceElement.current.querySelectorAll(
MDCMenuSurfaceFoundation.strings.FOCUSABLE_ELEMENTS
);
this.firstFocusableElement =
focusableElements.length > 0 ? focusableElements[0] : null;
this.lastFocusableElement =
focusableElements.length > 0
? focusableElements[focusableElements.length - 1]
: null;
this.foundation.open();
} else {
this.foundation.close();
}
};
handleKeydown = (evt: React.KeyboardEvent) => {
this.props.onKeyDown(evt);
this.foundation.handleKeydown(evt);
};
render() {
const {
/* eslint-disable */
anchorCorner,
anchorElement,
anchorMargin,
className,
coordinates,
fixed,
onClose,
onOpen,
onKeyDown,
styles,
quickOpen,
/* eslint-enable */
children,
...otherProps
} = this.props;
return (
<div
className={this.classes}
onKeyDown={this.handleKeydown}
ref={this.menuSurfaceElement}
style={this.styles}
{...otherProps}
>
{children}
</div>
);
}
}
export default MenuSurface;
export {Corner};