-
Notifications
You must be signed in to change notification settings - Fork 27k
/
_document.js
81 lines (73 loc) · 2.31 KB
/
_document.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import crypto from 'crypto'
import Document, { Html, Head, Main, NextScript } from 'next/document'
const cspHashOf = (text) => {
const hash = crypto.createHash('sha256')
hash.update(text)
return `'sha256-${hash.digest('base64')}'`
}
export default class MyDocument extends Document {
static async getInitialProps(ctx) {
let options
const enhanceComponent = (Component) => (props) => (
<div>
<span id="render-page-enhance-component">RENDERED</span>
<Component {...props} />
</div>
)
const enhanceApp = (Component) => (props) => (
<div>
<span id="render-page-enhance-app">RENDERED</span>
<Component {...props} />
</div>
)
if (ctx.query.withEnhancer) {
options = enhanceComponent
} else if (ctx.query.withEnhanceComponent || ctx.query.withEnhanceApp) {
options = {}
if (ctx.query.withEnhanceComponent) {
options.enhanceComponent = enhanceComponent
}
if (ctx.query.withEnhanceApp) {
options.enhanceApp = enhanceApp
}
}
const result = await ctx.renderPage(options)
return {
...result,
cssInJsCount: (result.html.match(/css-in-js-class/g) || []).length,
customProperty: 'Hello Document',
withCSP: ctx.query.withCSP,
}
}
render() {
let csp
// eslint-disable-next-line default-case
switch (this.props.withCSP) {
case 'hash':
csp = `default-src 'self'; script-src 'self' ${cspHashOf(
NextScript.getInlineScriptSource(this.props)
)}; style-src 'self' 'unsafe-inline'`
break
case 'nonce':
csp = `default-src 'self'; script-src 'self' 'nonce-test-nonce'; style-src 'self' 'unsafe-inline'`
break
}
return (
<Html className="test-html-props">
<Head nonce="test-nonce">
{csp ? (
<meta httpEquiv="Content-Security-Policy" content={csp} />
) : null}
<style>{`body { margin: 0 } /* custom! */`}</style>
</Head>
<body className="custom_class">
<p id="custom-property">{this.props.customProperty}</p>
<p id="document-hmr">Hello Document HMR</p>
<Main />
<NextScript nonce="test-nonce" />
<div id="css-in-cjs-count">{this.props.cssInJsCount}</div>
</body>
</Html>
)
}
}