2018-10-02 22:08:57 +00:00
|
|
|
/* eslint-disable */
|
|
|
|
import React, { Component } from 'react'
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import htmlescape from 'htmlescape'
|
|
|
|
import flush from 'styled-jsx/server'
|
|
|
|
|
|
|
|
const Fragment = React.Fragment || function Fragment ({ children }) {
|
|
|
|
return <div>{children}</div>
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class Document extends Component {
|
|
|
|
static childContextTypes = {
|
|
|
|
_documentProps: PropTypes.any
|
|
|
|
}
|
|
|
|
|
|
|
|
static getInitialProps ({ renderPage }) {
|
2018-12-13 00:00:46 +00:00
|
|
|
const { html, head } = renderPage()
|
2018-10-02 22:08:57 +00:00
|
|
|
const styles = flush()
|
2018-12-13 00:00:46 +00:00
|
|
|
return { html, head, styles }
|
2018-10-02 22:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getChildContext () {
|
|
|
|
return { _documentProps: this.props }
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return <html>
|
|
|
|
<Head />
|
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Head extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
_documentProps: PropTypes.any
|
|
|
|
}
|
|
|
|
|
|
|
|
static propTypes = {
|
2018-11-13 20:36:09 +00:00
|
|
|
nonce: PropTypes.string,
|
|
|
|
crossOrigin: PropTypes.string
|
2018-10-02 22:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getCssLinks () {
|
|
|
|
const { assetPrefix, files } = this.context._documentProps
|
|
|
|
if(!files || files.length === 0) {
|
|
|
|
return null
|
|
|
|
}
|
2018-11-01 13:05:39 +00:00
|
|
|
|
2018-10-02 22:08:57 +00:00
|
|
|
return files.map((file) => {
|
|
|
|
// Only render .css files here
|
|
|
|
if(!/\.css$/.exec(file)) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
return <link
|
|
|
|
key={file}
|
|
|
|
nonce={this.props.nonce}
|
|
|
|
rel='stylesheet'
|
|
|
|
href={`${assetPrefix}/_next/${file}`}
|
2018-12-13 00:05:21 +00:00
|
|
|
crossOrigin={this.props.crossOrigin || process.crossOrigin}
|
2018-10-02 22:08:57 +00:00
|
|
|
/>
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getPreloadDynamicChunks () {
|
|
|
|
const { dynamicImports, assetPrefix } = this.context._documentProps
|
|
|
|
return dynamicImports.map((bundle) => {
|
|
|
|
return <link
|
|
|
|
rel='preload'
|
|
|
|
key={bundle.file}
|
|
|
|
href={`${assetPrefix}/_next/${bundle.file}`}
|
|
|
|
as='script'
|
|
|
|
nonce={this.props.nonce}
|
2018-12-13 00:05:21 +00:00
|
|
|
crossOrigin={this.props.crossOrigin || process.crossOrigin}
|
2018-10-02 22:08:57 +00:00
|
|
|
/>
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getPreloadMainLinks () {
|
|
|
|
const { assetPrefix, files } = this.context._documentProps
|
|
|
|
if(!files || files.length === 0) {
|
|
|
|
return null
|
|
|
|
}
|
2018-11-01 13:05:39 +00:00
|
|
|
|
2018-10-02 22:08:57 +00:00
|
|
|
return files.map((file) => {
|
|
|
|
// Only render .js files here
|
|
|
|
if(!/\.js$/.exec(file)) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
return <link
|
|
|
|
key={file}
|
|
|
|
nonce={this.props.nonce}
|
|
|
|
rel='preload'
|
|
|
|
href={`${assetPrefix}/_next/${file}`}
|
|
|
|
as='script'
|
2018-12-13 00:05:21 +00:00
|
|
|
crossOrigin={this.props.crossOrigin || process.crossOrigin}
|
2018-10-02 22:08:57 +00:00
|
|
|
/>
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { head, styles, assetPrefix, __NEXT_DATA__ } = this.context._documentProps
|
2018-10-10 19:58:15 +00:00
|
|
|
const { page, buildId } = __NEXT_DATA__
|
|
|
|
const pagePathname = getPagePathname(page)
|
2018-10-02 22:08:57 +00:00
|
|
|
|
|
|
|
let children = this.props.children
|
|
|
|
// show a warning if Head contains <title> (only in development)
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
children = React.Children.map(children, (child) => {
|
|
|
|
if (child && child.type === 'title') {
|
|
|
|
console.warn("Warning: <title> should not be used in _document.js's <Head>. https://err.sh/next.js/no-document-title")
|
|
|
|
}
|
|
|
|
return child
|
|
|
|
})
|
2018-12-13 00:05:21 +00:00
|
|
|
if (this.props.crossOrigin) console.warn('Warning: `Head` attribute `crossOrigin` is deprecated. https://err.sh/next.js/doc-crossorigin-deprecated')
|
2018-10-02 22:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return <head {...this.props}>
|
2018-12-10 22:40:42 +00:00
|
|
|
{children}
|
2018-10-02 22:08:57 +00:00
|
|
|
{head}
|
2018-12-13 00:05:21 +00:00
|
|
|
{page !== '/_error' && <link rel='preload' href={`${assetPrefix}/_next/static/${buildId}/pages${pagePathname}`} as='script' nonce={this.props.nonce} crossOrigin={this.props.crossOrigin || process.crossOrigin} />}
|
|
|
|
<link rel='preload' href={`${assetPrefix}/_next/static/${buildId}/pages/_app.js`} as='script' nonce={this.props.nonce} crossOrigin={this.props.crossOrigin || process.crossOrigin} />
|
|
|
|
<link rel='preload' href={`${assetPrefix}/_next/static/${buildId}/pages/_error.js`} as='script' nonce={this.props.nonce} crossOrigin={this.props.crossOrigin || process.crossOrigin} />
|
2018-10-02 22:08:57 +00:00
|
|
|
{this.getPreloadDynamicChunks()}
|
|
|
|
{this.getPreloadMainLinks()}
|
|
|
|
{this.getCssLinks()}
|
|
|
|
{styles || null}
|
|
|
|
</head>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Main extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
_documentProps: PropTypes.any
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { html } = this.context._documentProps
|
|
|
|
return (
|
|
|
|
<div id='__next' dangerouslySetInnerHTML={{ __html: html }} />
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class NextScript extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
_documentProps: PropTypes.any
|
|
|
|
}
|
|
|
|
|
|
|
|
static propTypes = {
|
2018-11-13 20:36:09 +00:00
|
|
|
nonce: PropTypes.string,
|
|
|
|
crossOrigin: PropTypes.string
|
2018-10-02 22:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getDynamicChunks () {
|
|
|
|
const { dynamicImports, assetPrefix } = this.context._documentProps
|
|
|
|
return dynamicImports.map((bundle) => {
|
|
|
|
return <script
|
|
|
|
async
|
|
|
|
key={bundle.file}
|
|
|
|
src={`${assetPrefix}/_next/${bundle.file}`}
|
2018-11-13 20:36:09 +00:00
|
|
|
nonce={this.props.nonce}
|
2018-12-13 00:05:21 +00:00
|
|
|
crossOrigin={this.props.crossOrigin || process.crossOrigin}
|
2018-10-02 22:08:57 +00:00
|
|
|
/>
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getScripts () {
|
|
|
|
const { assetPrefix, files } = this.context._documentProps
|
|
|
|
if(!files || files.length === 0) {
|
|
|
|
return null
|
|
|
|
}
|
2018-11-01 13:05:39 +00:00
|
|
|
|
2018-10-02 22:08:57 +00:00
|
|
|
return files.map((file) => {
|
|
|
|
// Only render .js files here
|
|
|
|
if(!/\.js$/.exec(file)) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
return <script
|
|
|
|
key={file}
|
|
|
|
src={`${assetPrefix}/_next/${file}`}
|
|
|
|
nonce={this.props.nonce}
|
|
|
|
async
|
2018-12-13 00:05:21 +00:00
|
|
|
crossOrigin={this.props.crossOrigin || process.crossOrigin}
|
2018-10-02 22:08:57 +00:00
|
|
|
/>
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
static getInlineScriptSource (documentProps) {
|
|
|
|
const { __NEXT_DATA__ } = documentProps
|
2018-11-03 18:49:09 +00:00
|
|
|
return htmlescape(__NEXT_DATA__)
|
2018-10-02 22:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { staticMarkup, assetPrefix, devFiles, __NEXT_DATA__ } = this.context._documentProps
|
2018-10-10 19:58:15 +00:00
|
|
|
const { page, buildId } = __NEXT_DATA__
|
|
|
|
const pagePathname = getPagePathname(page)
|
2018-10-02 22:08:57 +00:00
|
|
|
|
2018-12-13 00:05:21 +00:00
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
if (this.props.crossOrigin) console.warn('Warning: `NextScript` attribute `crossOrigin` is deprecated. https://err.sh/next.js/doc-crossorigin-deprecated')
|
|
|
|
}
|
|
|
|
|
2018-10-02 22:08:57 +00:00
|
|
|
return <Fragment>
|
2018-12-13 00:05:21 +00:00
|
|
|
{devFiles ? devFiles.map((file) => <script key={file} src={`${assetPrefix}/_next/${file}`} nonce={this.props.nonce} crossOrigin={this.props.crossOrigin || process.crossOrigin} />) : null}
|
|
|
|
{staticMarkup ? null : <script id="__NEXT_DATA__" type="application/json" nonce={this.props.nonce} crossOrigin={this.props.crossOrigin || process.crossOrigin} dangerouslySetInnerHTML={{
|
2018-10-02 22:08:57 +00:00
|
|
|
__html: NextScript.getInlineScriptSource(this.context._documentProps)
|
|
|
|
}} />}
|
2018-12-13 00:05:21 +00:00
|
|
|
{page !== '/_error' && <script async id={`__NEXT_PAGE__${page}`} src={`${assetPrefix}/_next/static/${buildId}/pages${pagePathname}`} nonce={this.props.nonce} crossOrigin={this.props.crossOrigin || process.crossOrigin} />}
|
|
|
|
<script async id={`__NEXT_PAGE__/_app`} src={`${assetPrefix}/_next/static/${buildId}/pages/_app.js`} nonce={this.props.nonce} crossOrigin={this.props.crossOrigin || process.crossOrigin} />
|
|
|
|
<script async id={`__NEXT_PAGE__/_error`} src={`${assetPrefix}/_next/static/${buildId}/pages/_error.js`} nonce={this.props.nonce} crossOrigin={this.props.crossOrigin || process.crossOrigin} />
|
2018-10-02 22:08:57 +00:00
|
|
|
{staticMarkup ? null : this.getDynamicChunks()}
|
|
|
|
{staticMarkup ? null : this.getScripts()}
|
|
|
|
</Fragment>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 19:58:15 +00:00
|
|
|
function getPagePathname (page) {
|
|
|
|
if (page === '/') {
|
2018-10-02 22:08:57 +00:00
|
|
|
return '/index.js'
|
|
|
|
}
|
|
|
|
|
2018-10-10 19:58:15 +00:00
|
|
|
return `${page}.js`
|
2018-10-02 22:08:57 +00:00
|
|
|
}
|