-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhtml.js
48 lines (45 loc) · 1.6 KB
/
html.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
import React from 'react'
import Helmet from 'react-helmet'
import ga from './src/htmlScripts/ga'
import loadCSS from './src/htmlScripts/loadCSS'
import { prefixLink } from 'gatsby-helpers' // eslint-disable-line import/no-unresolved
const BUILD_TIME = new Date().getTime()
module.exports = React.createClass({
propTypes () {
return {
body: React.PropTypes.string
}
},
render () {
const head = Helmet.rewind()
const isProduction = process.env.NODE_ENV === 'production'
let css
if (isProduction) {
css = <style dangerouslySetInnerHTML={{ __html: require('!raw!./public/styles.css') }} />
}
return (
<html {...head.htmlAttributes.toComponent()}>
<head>
<meta charSet="utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
{head.title.toComponent()}
{head.meta.toComponent()}
<meta name="mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#e65100" />
<link rel="shortcut icon" href="/img/favicon.ico" />
{css}
</head>
<body>
<div id="react-mount" dangerouslySetInnerHTML={{ __html: this.props.body }} />
{!isProduction && <script src={prefixLink(`/bundle.js?t=${BUILD_TIME}`)} />}
{isProduction && <script dangerouslySetInnerHTML={{__html: ga}} />}
<script dangerouslySetInnerHTML={{__html: loadCSS}} />
</body>
</html>
)
}
})