2016-12-16 18:42:40 +00:00
|
|
|
import React, { Component, PropTypes } from 'react'
|
|
|
|
import htmlescape from 'htmlescape'
|
2016-12-19 18:42:19 +00:00
|
|
|
import flush from 'styled-jsx/server'
|
2016-12-16 18:42:40 +00:00
|
|
|
|
|
|
|
export default class Document extends Component {
|
|
|
|
static getInitialProps ({ renderPage }) {
|
2017-02-26 12:28:00 +00:00
|
|
|
const {html, head} = renderPage()
|
|
|
|
const styles = flush()
|
|
|
|
return { html, head, styles }
|
2016-12-16 18:42:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static childContextTypes = {
|
|
|
|
_documentProps: PropTypes.any
|
|
|
|
}
|
|
|
|
|
|
|
|
getChildContext () {
|
|
|
|
return { _documentProps: this.props }
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return <html>
|
|
|
|
<Head />
|
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Head extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
_documentProps: PropTypes.any
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2017-02-26 12:28:00 +00:00
|
|
|
const { head, styles } = this.context._documentProps
|
2016-12-16 18:42:40 +00:00
|
|
|
return <head>
|
|
|
|
{(head || []).map((h, i) => React.cloneElement(h, { key: i }))}
|
2017-02-26 12:28:00 +00:00
|
|
|
{styles || null}
|
2016-12-16 18:42:40 +00:00
|
|
|
{this.props.children}
|
|
|
|
</head>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Main extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
_documentProps: PropTypes.any
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2017-01-20 00:14:05 +00:00
|
|
|
const { html } = this.context._documentProps
|
|
|
|
return <div id='__next' dangerouslySetInnerHTML={{ __html: html }} />
|
2016-12-16 18:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class NextScript extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
_documentProps: PropTypes.any
|
|
|
|
}
|
|
|
|
|
2017-03-24 07:51:34 +00:00
|
|
|
getChunkScript (filename, additionalProps = {}) {
|
2017-03-07 18:43:56 +00:00
|
|
|
const { __NEXT_DATA__ } = this.context._documentProps
|
|
|
|
let { buildStats } = __NEXT_DATA__
|
|
|
|
const hash = buildStats ? buildStats[filename].hash : '-'
|
|
|
|
|
|
|
|
return (
|
2017-03-24 07:51:34 +00:00
|
|
|
<script
|
|
|
|
type='text/javascript'
|
|
|
|
src={`/_next/${hash}/${filename}`}
|
|
|
|
{...additionalProps}
|
|
|
|
/>
|
2017-03-07 18:43:56 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-03-24 07:51:34 +00:00
|
|
|
getScripts () {
|
|
|
|
const { dev } = this.context._documentProps
|
|
|
|
if (dev) {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{ this.getChunkScript('commons.js') }
|
|
|
|
{ this.getChunkScript('main.js') }
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// In the production mode, we have a single asset with all the JS content.
|
|
|
|
// So, we can load the script with async
|
|
|
|
return this.getChunkScript('app.js', { async: true })
|
|
|
|
}
|
|
|
|
|
2016-12-16 18:42:40 +00:00
|
|
|
render () {
|
2017-01-11 20:16:18 +00:00
|
|
|
const { staticMarkup, __NEXT_DATA__ } = this.context._documentProps
|
2016-12-17 08:49:10 +00:00
|
|
|
|
2016-12-16 18:42:40 +00:00
|
|
|
return <div>
|
2017-01-20 00:14:05 +00:00
|
|
|
{staticMarkup ? null : <script dangerouslySetInnerHTML={{
|
|
|
|
__html: `__NEXT_DATA__ = ${htmlescape(__NEXT_DATA__)}; module={};`
|
|
|
|
}} />}
|
2017-03-24 07:51:34 +00:00
|
|
|
{staticMarkup ? null : this.getScripts()}
|
2016-12-16 18:42:40 +00:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
}
|