1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/lib/document.js

53 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-10-17 08:08:53 +00:00
import React from 'react'
2016-10-05 23:52:50 +00:00
import htmlescape from 'htmlescape'
2016-11-15 08:24:20 +00:00
import readPkgUp from 'read-pkg-up'
const { pkg } = readPkgUp.sync({
cwd: __dirname,
normalize: false
})
2016-10-05 23:52:50 +00:00
2016-10-28 14:38:24 +00:00
export default ({ head, css, html, data, dev, staticMarkup, cdn }) => {
2016-10-17 08:08:53 +00:00
return <html>
<head>
{(head || []).map((h, i) => React.cloneElement(h, { key: i }))}
<style dangerouslySetInnerHTML={{ __html: css }} />
2016-10-17 08:08:53 +00:00
</head>
<body>
<div id='__next' dangerouslySetInnerHTML={{ __html: html }} />
{staticMarkup ? null : <script dangerouslySetInnerHTML={{
__html: `__NEXT_DATA__ =${htmlescape(data)}; module={};`
}} />}
2016-10-28 14:38:24 +00:00
{staticMarkup ? null : createClientScript({ dev, cdn })}
<script type='text/javascript' src='/_next/commons.js' />
2016-10-17 08:08:53 +00:00
</body>
</html>
2016-10-05 23:52:50 +00:00
}
2016-10-28 14:38:24 +00:00
function createClientScript ({ dev, cdn }) {
if (dev) {
return <script type='text/javascript' src='/_next/next-dev.bundle.js' />
}
if (!cdn) {
return <script type='text/javascript' src='/_next/next.bundle.js' />
}
return <script dangerouslySetInnerHTML={{ __html: `
(function () {
load('https://cdn.zeit.co/next.js/${pkg.version}/next.min.js', function (err) {
if (err) load('/_next/next.bundle.js')
})
function load (src, fn) {
fn = fn || function () {}
var script = document.createElement('script')
script.src = src
script.onload = function () { fn(null) }
script.onerror = fn
script.crossorigin = 'anonymous'
2016-12-06 23:53:50 +00:00
document.body.appendChild(script)
2016-10-28 14:38:24 +00:00
}
})()
`}} />
}