-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathFrame.tsx
456 lines (408 loc) · 13.2 KB
/
Frame.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
import React, {PureComponent, createRef} from 'react';
import type {MouseEvent} from 'react';
import {XIcon} from '@shopify/polaris-icons';
import {CSSTransition} from 'react-transition-group';
import {useI18n} from '../../utilities/i18n';
import {useMediaQuery} from '../../utilities/media-query';
import {classNames} from '../../utilities/css';
import type {Logo} from '../../utilities/frame/types';
import {Icon} from '../Icon';
// eslint-disable-next-line import/no-deprecated
import {EventListener} from '../EventListener';
import {Backdrop} from '../Backdrop';
import {Text} from '../Text';
import {TrapFocus} from '../TrapFocus';
import {dataPolarisTopBar, layer} from '../shared';
import {setRootProperty} from '../../utilities/set-root-property';
import {FrameContext} from '../../utilities/frame';
import type {
ContextualSaveBarProps,
ToastID,
ToastPropsWithID,
} from '../../utilities/frame';
import {UseTheme} from '../../utilities/use-theme';
import {
ToastManager,
Loading,
ContextualSaveBar,
CSSAnimation,
} from './components';
import styles from './Frame.module.css';
export interface FrameProps {
/** Sets the logo for the TopBar, Navigation, and ContextualSaveBar components */
logo?: Logo;
/** A horizontal offset that pushes the frame to the right, leaving empty space on the left */
offset?: string;
/** The content to display inside the frame. */
children?: React.ReactNode;
/** Accepts a top bar component that will be rendered at the top-most portion of an application frame */
topBar?: React.ReactNode;
/** Accepts a navigation component that will be rendered in the left sidebar of an application frame */
navigation?: React.ReactNode;
/** Accepts a global ribbon component that will be rendered fixed to the bottom of an application frame */
globalRibbon?: React.ReactNode;
/** A boolean property indicating whether the mobile navigation is currently visible
* @default false
*/
showMobileNavigation?: boolean;
/** Accepts a ref to the html anchor element you wish to focus when clicking the skip to content link */
skipToContentTarget?: React.RefObject<HTMLAnchorElement>;
/** A callback function to handle clicking the mobile navigation dismiss button */
onNavigationDismiss?(): void;
/** A boolean property indicating whether there should be space for a sidebar
* @default false
*/
sidebar?: boolean;
}
type CombinedProps = FrameProps & {
i18n: ReturnType<typeof useI18n>;
mediaQuery: ReturnType<typeof useMediaQuery>;
};
interface State {
skipFocused?: boolean;
globalRibbonHeight: number;
loadingStack: number;
toastMessages: ToastPropsWithID[];
showContextualSaveBar: boolean;
scrollbarAlwaysVisible: boolean;
}
const APP_FRAME_MAIN = 'AppFrameMain';
const APP_FRAME_NAV = 'AppFrameNav';
const APP_FRAME_TOP_BAR = 'AppFrameTopBar';
const APP_FRAME_LOADING_BAR = 'AppFrameLoadingBar';
class FrameInner extends PureComponent<CombinedProps, State> {
state: State = {
skipFocused: false,
globalRibbonHeight: 0,
loadingStack: 0,
toastMessages: [],
showContextualSaveBar: false,
scrollbarAlwaysVisible: false,
};
private contextualSaveBar: ContextualSaveBarProps | null = null;
private globalRibbonContainer: HTMLDivElement | null = null;
private navigationNode = createRef<HTMLDivElement>();
componentDidMount() {
this.handleResize();
if (this.props.globalRibbon) {
return;
}
this.setGlobalRibbonRootProperty();
this.setOffset();
this.setScrollbarAlwaysVisible();
}
componentDidUpdate(prevProps: FrameProps) {
if (this.props.globalRibbon !== prevProps.globalRibbon) {
this.setGlobalRibbonHeight();
}
this.setOffset();
}
render() {
const {skipFocused, loadingStack, toastMessages, showContextualSaveBar} =
this.state;
const {
logo,
children,
navigation,
topBar,
globalRibbon,
showMobileNavigation = false,
skipToContentTarget,
i18n,
sidebar,
mediaQuery: {isNavigationCollapsed},
} = this.props;
const navClassName = classNames(
styles.Navigation,
showMobileNavigation && styles['Navigation-visible'],
);
const mobileNavHidden = isNavigationCollapsed && !showMobileNavigation;
const mobileNavShowing = isNavigationCollapsed && showMobileNavigation;
const tabIndex = mobileNavShowing ? 0 : -1;
const mobileNavAttributes = {
...(mobileNavShowing && {
'aria-modal': true,
role: 'dialog',
}),
};
const navigationMarkup = navigation ? (
<UseTheme>
{(theme) => (
<TrapFocus trapping={mobileNavShowing}>
<CSSTransition
nodeRef={this.navigationNode}
appear={isNavigationCollapsed}
exit={isNavigationCollapsed}
in={showMobileNavigation}
timeout={parseInt(theme.motion['motion-duration-300'], 10)}
classNames={navTransitionClasses}
>
<div
key="NavContent"
{...mobileNavAttributes}
aria-label={i18n.translate('Polaris.Frame.navigationLabel')}
ref={this.navigationNode}
className={navClassName}
onKeyDown={this.handleNavKeydown}
id={APP_FRAME_NAV}
hidden={mobileNavHidden}
>
{navigation}
<button
type="button"
className={styles.NavigationDismiss}
onClick={this.handleNavigationDismiss}
aria-hidden={
mobileNavHidden ||
(!isNavigationCollapsed && !showMobileNavigation)
}
aria-label={i18n.translate(
'Polaris.Frame.Navigation.closeMobileNavigationLabel',
)}
tabIndex={tabIndex}
>
<Icon source={XIcon} />
</button>
</div>
</CSSTransition>
</TrapFocus>
)}
</UseTheme>
) : null;
const loadingMarkup =
loadingStack > 0 ? (
<div className={styles.LoadingBar} id={APP_FRAME_LOADING_BAR}>
<Loading />
</div>
) : null;
const topBarMarkup = topBar ? (
<div
className={styles.TopBar}
{...layer.props}
{...dataPolarisTopBar.props}
id={APP_FRAME_TOP_BAR}
>
{topBar}
</div>
) : null;
const globalRibbonMarkup = globalRibbon ? (
<div
className={styles.GlobalRibbonContainer}
ref={this.setGlobalRibbonContainer}
>
{globalRibbon}
</div>
) : null;
const skipClassName = classNames(
styles.Skip,
skipFocused && styles.focused,
);
const skipTarget = skipToContentTarget?.current
? skipToContentTarget.current.id
: APP_FRAME_MAIN;
const skipMarkup = (
<div className={skipClassName}>
<a
href={`#${skipTarget}`}
onFocus={this.handleFocus}
onBlur={this.handleBlur}
onClick={this.handleClick}
>
<Text as="span" variant="bodyLg" fontWeight="medium">
{i18n.translate('Polaris.Frame.skipToContent')}
</Text>
</a>
</div>
);
const navigationAttributes = navigation
? {
'data-has-navigation': true,
}
: {};
const getFrameClassName = () =>
classNames(
styles.Frame,
navigation && styles.hasNav,
topBar && styles.hasTopBar,
sidebar && styles.hasSidebar,
this.state.scrollbarAlwaysVisible && styles.ScrollbarAlwaysVisible,
);
const contextualSaveBarMarkup = (
<CSSAnimation
in={showContextualSaveBar}
className={styles.ContextualSaveBar}
type="fade"
>
<ContextualSaveBar {...this.contextualSaveBar} />
</CSSAnimation>
);
const navigationOverlayMarkup =
showMobileNavigation && isNavigationCollapsed ? (
<Backdrop
belowNavigation
onClick={this.handleNavigationDismiss}
onTouchStart={this.handleNavigationDismiss}
/>
) : null;
// This is probably a legit error but I don't have the time to refactor this
// eslint-disable-next-line react/jsx-no-constructed-context-values
const context = {
logo,
showToast: this.showToast,
hideToast: this.hideToast,
toastMessages,
startLoading: this.startLoading,
stopLoading: this.stopLoading,
setContextualSaveBar: this.setContextualSaveBar,
removeContextualSaveBar: this.removeContextualSaveBar,
contextualSaveBarVisible: this.state.showContextualSaveBar,
contextualSaveBarProps: this.contextualSaveBar,
};
return (
<FrameContext.Provider value={context}>
<div
className={getFrameClassName()}
{...layer.props}
{...navigationAttributes}
>
{skipMarkup}
{topBarMarkup}
{navigationMarkup}
{contextualSaveBarMarkup}
{loadingMarkup}
{navigationOverlayMarkup}
<main
className={styles.Main}
id={APP_FRAME_MAIN}
data-has-global-ribbon={Boolean(globalRibbon)}
>
<div className={styles.Content}>{children}</div>
</main>
<ToastManager toastMessages={toastMessages} />
{globalRibbonMarkup}
<EventListener event="resize" handler={this.handleResize} />
</div>
</FrameContext.Provider>
);
}
private setGlobalRibbonHeight = () => {
const {globalRibbonContainer} = this;
if (globalRibbonContainer) {
this.setState(
{
globalRibbonHeight: globalRibbonContainer.offsetHeight,
},
this.setGlobalRibbonRootProperty,
);
}
};
private setOffset = () => {
const {offset = '0px'} = this.props;
setRootProperty('--pc-frame-offset', offset);
};
private setScrollbarAlwaysVisible = () => {
const scrollbarWidth = parseInt(
document.documentElement.style.getPropertyValue(
'--pc-app-provider-scrollbar-width',
),
10,
);
this.setState({scrollbarAlwaysVisible: scrollbarWidth > 0});
};
private setGlobalRibbonRootProperty = () => {
const {globalRibbonHeight} = this.state;
setRootProperty(
'--pc-frame-global-ribbon-height',
`${globalRibbonHeight}px`,
);
};
private showToast = (toast: ToastPropsWithID) => {
this.setState(({toastMessages}: State) => {
const hasToastById =
toastMessages.find(({id}) => id === toast.id) != null;
return {
toastMessages: hasToastById ? toastMessages : [...toastMessages, toast],
};
});
};
private hideToast = ({id}: ToastID) => {
this.setState(({toastMessages}: State) => {
return {
toastMessages: toastMessages.filter(({id: toastId}) => id !== toastId),
};
});
};
private setContextualSaveBar = (props: ContextualSaveBarProps) => {
const {showContextualSaveBar} = this.state;
this.contextualSaveBar = {...props};
if (showContextualSaveBar === true) {
this.forceUpdate();
} else {
this.setState({showContextualSaveBar: true});
}
};
private removeContextualSaveBar = () => {
this.contextualSaveBar = null;
this.setState({showContextualSaveBar: false});
};
private startLoading = () => {
this.setState(({loadingStack}: State) => ({
loadingStack: loadingStack + 1,
}));
};
private stopLoading = () => {
this.setState(({loadingStack}: State) => ({
loadingStack: Math.max(0, loadingStack - 1),
}));
};
private handleResize = () => {
if (this.props.globalRibbon) {
this.setGlobalRibbonHeight();
}
};
private handleFocus = () => {
this.setState({skipFocused: true});
};
private handleBlur = () => {
this.setState({skipFocused: false});
};
private handleClick = (event: MouseEvent<HTMLAnchorElement>) => {
const {skipToContentTarget} = this.props;
if (skipToContentTarget && skipToContentTarget.current) {
skipToContentTarget.current.focus();
event?.preventDefault();
}
};
private handleNavigationDismiss = () => {
const {onNavigationDismiss} = this.props;
if (onNavigationDismiss != null) {
onNavigationDismiss();
}
};
private setGlobalRibbonContainer = (node: HTMLDivElement) => {
this.globalRibbonContainer = node;
};
private handleNavKeydown = (event: React.KeyboardEvent<HTMLElement>) => {
const {key} = event;
const {
mediaQuery: {isNavigationCollapsed},
showMobileNavigation,
} = this.props;
const mobileNavShowing = isNavigationCollapsed && showMobileNavigation;
if (mobileNavShowing && key === 'Escape') {
this.handleNavigationDismiss();
}
};
}
const navTransitionClasses = {
enter: classNames(styles['Navigation-enter']),
enterActive: classNames(styles['Navigation-enterActive']),
enterDone: classNames(styles['Navigation-enterActive']),
exit: classNames(styles['Navigation-exit']),
exitActive: classNames(styles['Navigation-exitActive']),
};
export function Frame(props: FrameProps) {
const i18n = useI18n();
const mediaQuery = useMediaQuery();
return <FrameInner {...props} i18n={i18n} mediaQuery={mediaQuery} />;
}