-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathPWA.js
76 lines (62 loc) · 1.96 KB
/
PWA.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
import React, { useEffect, useMemo, useRef, useState } from 'react'
import { styled } from '@mui/material/styles'
import PropTypes from 'prop-types'
import PWAContext from './PWAContext'
import ErrorBoundary from './ErrorBoundary'
import LinkContextProvider from './link/LinkContextProvider'
import useSimpleNavigation from './router/useSimpleNavigation'
import './hooks/useTraceUpdate'
import './profile'
const PREFIX = 'RSFPWA'
const classes = {
body: `${PREFIX}-body`,
a: `${PREFIX}-a`,
}
const StyledPWAContextProvider = styled(PWAContext.Provider)(({ theme }) => ({
[`& .${classes.body}`]: {
'WebkitTapHighlightColor?': 'transparent',
},
[`& .${classes.a}`]: {
color: theme.palette.primary.main,
textDecoration: 'underline',
},
}))
export {}
export default function PWA({ children, errorReporter }) {
const thumbnail = useRef(null)
const [offline, setOffline] = useState(typeof navigator !== 'undefined' && !navigator.onLine)
const context = useMemo(
() => ({
thumbnail,
offline,
}),
[offline],
)
// enable client-side navigation when the user clicks a simple HTML anchor element
useSimpleNavigation()
useEffect(() => {
context.hydrating = false
const handleOnline = () => setOffline(false)
const handleOffline = () => setOffline(true)
window.addEventListener('online', handleOnline)
window.addEventListener('offline', handleOffline)
return () => {
window.removeEventListener('online', handleOnline)
window.removeEventListener('offline', handleOffline)
}
}, [])
return (
<StyledPWAContextProvider value={context}>
<LinkContextProvider>
<ErrorBoundary onError={errorReporter}>{children}</ErrorBoundary>
</LinkContextProvider>
</StyledPWAContextProvider>
)
}
PWA.propTypes = {
/**
* A function to be called whenever an error occurs. Use this to report errors
* to a service like Airbrake or Rollbar.
*/
errorReporter: PropTypes.func,
}