mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Add SSR to examples/with-styled-components + bump styled_components v2 (#1908)
This commit is contained in:
parent
12f423faf9
commit
1b893518bb
9
examples/with-styled-components/.babelrc
Normal file
9
examples/with-styled-components/.babelrc
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"presets": [
|
||||
"next/babel",
|
||||
"stage-0"
|
||||
],
|
||||
"plugins": [
|
||||
["styled-components", { "ssr": true, "displayName": true, "preprocess": false } ]
|
||||
]
|
||||
}
|
|
@ -7,10 +7,12 @@
|
|||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"babel-plugin-styled-components": "^1.1.4",
|
||||
"babel-preset-stage-0": "^6.24.1",
|
||||
"next": "latest",
|
||||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2",
|
||||
"styled-components": "^1.4.4"
|
||||
"styled-components": "^2.0.0-17"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
|
|
|
@ -1,23 +1,21 @@
|
|||
import Document, { Head, Main, NextScript } from 'next/document'
|
||||
import styleSheet from 'styled-components/lib/models/StyleSheet'
|
||||
import { ServerStyleSheet } from 'styled-components'
|
||||
|
||||
export default class MyDocument extends Document {
|
||||
static async getInitialProps ({ renderPage }) {
|
||||
const page = renderPage()
|
||||
const styles = (
|
||||
<style dangerouslySetInnerHTML={{ __html: styleSheet.rules().map(rule => rule.cssText).join('\n') }} />
|
||||
)
|
||||
return { ...page, styles }
|
||||
}
|
||||
|
||||
render () {
|
||||
const sheet = new ServerStyleSheet()
|
||||
const main = sheet.collectStyles(<Main />)
|
||||
const styleTags = sheet.getStyleElement()
|
||||
return (
|
||||
<html>
|
||||
<Head>
|
||||
<title>My page</title>
|
||||
{styleTags}
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
<div className='root'>
|
||||
{main}
|
||||
</div>
|
||||
<NextScript />
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue