forked from PostHog/posthog.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-ssr.js
73 lines (69 loc) · 2.31 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* 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 HandbookLayout from './src/templates/Handbook'
import Product from './src/templates/Product'
import Job from './src/templates/Job'
export const wrapPageElement = ({ element, props }) => {
const slug = props.location.pathname.substring(1)
initKea(true, props.location)
return wrapElement({
element:
props.custom404 || !props.data ? (
element
) : /^handbook|^docs\/(?!api)|^manual/.test(slug) &&
!['docs/api/post-only-endpoints', 'docs/api/user'].includes(slug) ? (
<HandbookLayout {...props} />
) : /^product\//.test(slug) ? (
<Product {...props} />
) : /^careers\//.test(slug) ? (
<Job {...props} />
) : (
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|^tutorials|^questions|^using-posthog|^manual|^community/.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)
})()
`,
},
}),
])
}