@emotion/react#CacheProvider JavaScript Examples
The following examples show how to use
@emotion/react#CacheProvider.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: client.js From Edlib with GNU General Public License v3.0 | 6 votes |
hydrate(
<CacheProvider value={emotionCache}>
<ThemeProvider theme={muiTheme}>
<BrowserRouter>
<FetchProvider initialState={window.__FETCH_STATE__ || {}}>
{/* eslint-disable-next-line no-restricted-globals*/}
<ConfigurationProvider
apiUrl={(
location.protocol +
'//' +
location.host
).replace('www', 'api')}
wwwUrl={location.protocol + '//' + location.host}
>
<App />
</ConfigurationProvider>
</FetchProvider>
</BrowserRouter>
</ThemeProvider>
</CacheProvider>,
document.getElementById('root')
);
Example #2
Source File: index.js From Reactive with MIT License | 5 votes |
ReactDOM.render( <React.StrictMode> <CacheProvider value={muiCache}> <App /> </CacheProvider> </React.StrictMode>, document.getElementById('root') )
Example #3
Source File: server.js From Edlib with GNU General Public License v3.0 | 4 votes |
renderApp = async (req, res) => {
const context = {};
const emotionCache = createEmotionCache();
const sheet = new ServerStyleSheet();
const emotionServers = [
// Every emotion cache used in the app should be provided.
// Caches for MUI should use "prepend": true.
// MUI cache should come first.
emotionCache,
getTssDefaultEmotionCache({ doReset: true }),
].map(createEmotionServer);
const wwwUrl = `${req.protocol}://${req.get('host')}`;
const SetupApp = (initialState, promiseList = []) => (
<CacheProvider value={emotionCache}>
<ThemeProvider theme={muiTheme}>
<StaticRouter context={context} location={req.url}>
<FetchProvider
promiseList={promiseList}
initialState={initialState}
ssrCookies={res.getCookies()}
ssrAddCookiesFromSetCookie={res.addCookiesFromSetCookie}
>
<ConfigurationProvider
apiUrl={wwwUrl.replace('www', 'api')}
wwwUrl={wwwUrl}
isSSR
cookies={req.cookies}
>
<App />
</ConfigurationProvider>
</FetchProvider>
</StaticRouter>
</ThemeProvider>
</CacheProvider>
);
const maxDepth = 10;
const getStateFromTree = async (state = {}, depth = 0) => {
const promiseList = [];
renderToString(SetupApp(state, promiseList));
if (promiseList.length !== 0 && depth < maxDepth) {
await addPromiseListToState(state, promiseList);
return getStateFromTree(state, depth + 1);
}
return { state };
};
const { state } = await getStateFromTree();
const markup = renderToString(sheet.collectStyles(SetupApp(state, [])));
const helmet = Helmet.renderStatic();
// Grab the CSS from emotion
const styleTagsAsStr = emotionServers
.map(({ extractCriticalToChunks, constructStyleTagsFromChunks }) =>
constructStyleTagsFromChunks(extractCriticalToChunks(markup))
)
.join('');
// Grab the CSS from styled-components
const styledComponentsTags = sheet.getStyleTags();
const html = `<!doctype html>
<html lang="">
<head ${helmet.htmlAttributes.toString()}>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
${cssLinksFromAssets(assets, 'client')}
${styleTagsAsStr}
${styledComponentsTags}
${helmet.title.toString()}
${helmet.meta.toString()}
${helmet.link.toString()}
</head>
<body ${helmet.bodyAttributes.toString()}>
<script>
window.__FETCH_STATE__=${JSON.stringify(state).replace(
/</g,
'\\u003c'
)};
</script>
<div id="root">${markup}</div>
${jsScriptTagsFromAssets(assets, 'client', 'defer', 'crossorigin')}
</body>
</html>`;
return { context, html };
}