-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathAppBar.js
153 lines (133 loc) · 3.57 KB
/
AppBar.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
import React, { useContext } from 'react'
import { styled } from '@mui/material/styles'
import { AppBar as MUIAppBar, Toolbar, useScrollTrigger, Slide } from '@mui/material'
import PropTypes from 'prop-types'
import clsx from 'clsx'
import PWAContext from './PWAContext'
const PREFIX = 'AppBar'
const defaultClasses = {
root: `${PREFIX}-root`,
relative: `${PREFIX}-relative`,
spacer: `${PREFIX}-spacer`,
toolbar: `${PREFIX}-toolbar`,
offline: `${PREFIX}-offline`,
}
// TODO jss-to-styled codemod: The Fragment root was replaced by div. Change the tag if needed.
const Root = styled('div')(({ theme }) => ({
/**
* Styles applied to the root element.
*/
[`& .${defaultClasses.root}`]: {
boxSizing: 'border-box',
backgroundColor: theme.palette.background.default,
boxShadow: 'none',
borderBottom: `1px solid ${theme.palette.divider}`,
zIndex: theme.zIndex.modal + 10,
height: theme.headerHeight,
display: 'flex',
flexDirection: 'column',
alignItems: 'stretch',
},
[`& .${defaultClasses.relative}`]: {
position: 'relative',
},
/**
* Styles applied to the spacer that fills the height behind the floating toolbar.
*/
[`& .${defaultClasses.spacer}`]: {
boxSizing: 'border-box',
height: theme.headerHeight,
},
/**
* Styles applied to the `Toolbar` element.
*/
[`& .${defaultClasses.toolbar}`]: {
justifyContent: 'space-between',
alignItems: 'center',
flex: 1,
},
/**
* Styles applied to the offline warning element.
*/
[`& .${defaultClasses.offline}`]: {
textAlign: 'center',
backgroundColor: '#f34c4c',
zIndex: 999999,
width: '100vw',
color: 'white',
},
}))
export default function AppBar({
children,
classes: c = {},
style,
variant,
fixed,
offlineWarning,
}) {
if (fixed) {
variant = 'fixed'
}
const classes = { ...defaultClasses, ...c }
const trigger = useScrollTrigger()
const { offline } = useContext(PWAContext)
let appBar = (
<MUIAppBar
className={clsx({
[classes.root]: true,
[classes.relative]: variant === 'relative',
})}
style={{
...style,
}}
>
<Toolbar disableGutters className={classes.toolbar}>
{children}
</Toolbar>
</MUIAppBar>
)
if (variant === 'hide') {
appBar = (
<Slide appear={false} in={!trigger}>
{appBar}
</Slide>
)
}
return (
<Root>
{(variant === 'hide' || variant === 'fixed') && <div className={classes.spacer} />}
{offline && <div className={classes.offline}>{offlineWarning}</div>}
{appBar}
</Root>
)
}
AppBar.propTypes = {
/**
* Override or extend the styles applied to the component. See [CSS API](#css) below for more details.
*/
classes: PropTypes.object,
/**
* Affixes the AppBar to the top of the viewport. This prop is deprecated.
* Use `variant="fixed"` instead.
* @deprecated
*/
fixed: PropTypes.bool,
/**
* String or Element to render within the offline warning container at the top of the app.
*/
offlineWarning: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
/**
* * relative - The AppBar stays at the top of the page.
* * fixed - The AppBar stays at the top of the viewport.
* * hide - The same as fixed, but the app bar automatically hides when the user scrolls down.
*/
variant: PropTypes.oneOf(['relative', 'fixed', 'hide']),
style: PropTypes.object,
children: PropTypes.any,
}
AppBar.defaultProps = {
offlineWarning: 'Your device lost its internet connection.',
variant: 'hide',
fixed: false,
style: {},
}