-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-ssr.js
52 lines (43 loc) · 1.4 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
const React = require("react");
const {
ServerStyleSheetManager,
StyleSheetManagerContext,
ThemeContext
} = require("css-system");
const { SwitchThemeProvider } = require("./index.js");
const stylesheets = new Map();
const StyleSheetProvider = ({ children, pathname }) => {
const stylesheetManager = new ServerStyleSheetManager();
stylesheets.set(pathname, stylesheetManager);
return (
<StyleSheetManagerContext.Provider value={stylesheetManager}>
{children}
</StyleSheetManagerContext.Provider>
);
};
exports.wrapRootElement = ({ element, pathname }, pluginOptions = {}) => {
if (pluginOptions.theme) {
return (
<ThemeContext.Provider value={pluginOptions.theme}>
<StyleSheetProvider pathname={pathname}>{element}</StyleSheetProvider>
</ThemeContext.Provider>
);
}
if (pluginOptions.themes) {
return (
<ThemeContext.Provider
value={pluginOptions.themes[pluginOptions.defaultTheme]}
>
<StyleSheetProvider pathname={pathname}>{element}</StyleSheetProvider>
</ThemeContext.Provider>
);
}
return <StyleSheetProvider pathname={pathname}>{element}</StyleSheetProvider>;
};
exports.onRenderBody = ({ setHeadComponents, pathname }) => {
const stylesheetManager = stylesheets.get(pathname);
if (stylesheetManager) {
setHeadComponents(stylesheetManager.getStyleComponents());
stylesheets.delete(pathname);
}
};