forked from PostHog/posthog.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-ssr.js
55 lines (51 loc) · 1.6 KB
/
gatsby-ssr.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
/**
* 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'
export const wrapPageElement = ({ element, props }) => {
initKea(true, props.location)
return wrapElement({ element })
}
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) {
window.__setPreferredTheme(e.matches ? 'dark' : 'light')
})
try {
preferredTheme =
(/^handbook|^docs|^blog|^integrations|^product|^tutorials/.test(slug) &&
(localStorage.getItem('theme') || (darkQuery.matches ? 'dark' : 'light'))) ||
'light'
} catch (err) {}
window.__setPreferredTheme = function (newTheme) {
setTheme(newTheme)
try {
localStorage.setItem('theme', newTheme)
} catch (err) {}
}
setTheme(preferredTheme)
})()
`,
},
}),
])
}