|
import { CacheProvider } from "@emotion/react" |
|
import createEmotionServer from "@emotion/server/create-instance" |
|
import { renderToString } from "react-dom/server" |
|
import { ChakraProvider } from "../components/chakra-provider" |
|
import { createEmotionCache } from "./emotion-cache" |
|
|
|
export function createEmotion() { |
|
const cache = createEmotionCache() |
|
const server = createEmotionServer(cache) |
|
|
|
function injectStyles(html: string) { |
|
const { styles } = server.extractCriticalToChunks(html) |
|
|
|
let stylesHTML = "" |
|
|
|
styles.forEach(({ key, ids, css }) => { |
|
const emotionKey = `${key} ${ids.join(" ")}` |
|
const newStyleTag = `<style data-emotion="${emotionKey}">${css}</style>` |
|
stylesHTML = `${stylesHTML}${newStyleTag}` |
|
}) |
|
|
|
|
|
const markup = html.replace( |
|
/<meta(\s)*name="emotion-insertion-point"(\s)*content="emotion-insertion-point"(\s)*\/>/, |
|
`<meta name="emotion-insertion-point" content="emotion-insertion-point"/>${stylesHTML}`, |
|
) |
|
|
|
return markup |
|
} |
|
|
|
function _renderToString(element: React.ReactNode) { |
|
return renderToString( |
|
<CacheProvider value={cache}> |
|
<ChakraProvider>{element}</ChakraProvider> |
|
</CacheProvider>, |
|
) |
|
} |
|
|
|
return { |
|
server, |
|
cache, |
|
injectStyles, |
|
renderToString: _renderToString, |
|
} |
|
} |
|
|