mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
98cf0a8311
This updates the react-jss example to work with the v10 alpha
44 lines
1 KiB
JavaScript
44 lines
1 KiB
JavaScript
import React from 'react'
|
|
import Document, { Head, Main, NextScript } from 'next/document'
|
|
import { SheetsRegistry, JssProvider, createGenerateId } from 'react-jss'
|
|
|
|
export default class JssDocument extends Document {
|
|
static async getInitialProps (ctx) {
|
|
const registry = new SheetsRegistry()
|
|
const generateId = createGenerateId()
|
|
const originalRenderPage = ctx.renderPage
|
|
ctx.renderPage = () =>
|
|
originalRenderPage({
|
|
enhanceApp: App => props => (
|
|
<JssProvider registry={registry} generateId={generateId}>
|
|
<App {...props} />
|
|
</JssProvider>
|
|
)
|
|
})
|
|
|
|
const initialProps = await Document.getInitialProps(ctx)
|
|
|
|
return {
|
|
...initialProps,
|
|
registry
|
|
}
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<html>
|
|
<Head>
|
|
<style id='server-side-styles'>
|
|
{this.props.registry.toString()}
|
|
</style>
|
|
</Head>
|
|
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
}
|