forked from PostHog/posthog.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-ssr.js
More file actions
79 lines (73 loc) · 2.53 KB
/
gatsby-ssr.js
File metadata and controls
79 lines (73 loc) · 2.53 KB
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
/**
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/ssr-apis/
*/
// You can delete this file if you're not using it
const React = require('react')
import { initKea, wrapElement } from './kea'
import { UserProvider } from './src/hooks/useUser'
import Wrapper from './src/components/Wrapper'
import { Provider } from './src/context/App'
import { Provider as ToastProvider } from './src/context/Toast'
export const wrapRootElement = ({ element }) => (
<ToastProvider>
<UserProvider>{wrapElement({ element })}</UserProvider>
</ToastProvider>
)
export const wrapPageElement = ({ element, props: { location } }) => {
initKea(true, location)
return (
<Provider element={element} location={location}>
<Wrapper />
</Provider>
)
}
export const onRenderBody = function ({ setPreBodyComponents }) {
setPreBodyComponents([
React.createElement('script', {
key: 'dark-mode',
dangerouslySetInnerHTML: {
__html: `
(function () {
window.__onThemeChange = function () {}
function setTheme(newTheme) {
window.__theme = newTheme
preferredTheme = newTheme
document.body.className = newTheme
window.__onThemeChange(newTheme)
}
var preferredTheme
var slug = window.location.pathname.substring(1)
var darkQuery = window.matchMedia('(prefers-color-scheme: dark)')
darkQuery.addListener(function (e) {
if (!localStorage.getItem('theme')) {
window.__setPreferredTheme('system')
}
})
try {
preferredTheme =
localStorage.getItem('theme') || 'light'
} catch (err) {}
window.__setPreferredTheme = function (theme) {
const newTheme = theme === 'system' ? (darkQuery.matches ? 'dark' : 'light') : theme
setTheme(newTheme)
try {
localStorage.setItem('theme', newTheme)
} catch (err) {}
return newTheme
}
setTheme(preferredTheme === 'system' ? (darkQuery.matches ? 'dark' : 'light') : preferredTheme)
// Set initial skin value
try {
const savedSkin = JSON.parse(localStorage.getItem('siteSettings') || '{}').skinMode || 'modern'
document.body.setAttribute('data-skin', savedSkin)
const savedWallpaper = JSON.parse(localStorage.getItem('siteSettings') || '{}').wallpaper || 'keyboard-garden'
document.body.setAttribute('data-wallpaper', savedWallpaper)
} catch (err) {}
})()
`,
},
}),
])
}