mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-27 07:18:17 +01:00
refactor: linting html.js
This commit is contained in:
parent
1e87dfdb6b
commit
84cd888614
12
.eslintrc
12
.eslintrc
@ -4,5 +4,15 @@
|
|||||||
"react",
|
"react",
|
||||||
"jsx-a11y",
|
"jsx-a11y",
|
||||||
"import"
|
"import"
|
||||||
]
|
],
|
||||||
|
"rules": {
|
||||||
|
"react/jsx-filename-extension": [0],
|
||||||
|
"react/prefer-es6-class": [0],
|
||||||
|
"global-require": [0],
|
||||||
|
"react/prefer-stateless-function": [0],
|
||||||
|
/* to allow importing 'gatsby-helpers' */
|
||||||
|
"import/no-extraneous-dependencies": [0],
|
||||||
|
"import/no-unresolved": [0],
|
||||||
|
"import/extensions": [0]
|
||||||
|
}
|
||||||
}
|
}
|
27
html.js
27
html.js
@ -1,8 +1,8 @@
|
|||||||
import React from 'react'
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet'
|
import Helmet from 'react-helmet';
|
||||||
import { prefixLink } from 'gatsby-helpers'
|
import { prefixLink } from 'gatsby-helpers';
|
||||||
|
|
||||||
const BUILD_TIME = new Date().getTime()
|
const BUILD_TIME = new Date().getTime();
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: 'HTML',
|
displayName: 'HTML',
|
||||||
@ -10,12 +10,13 @@ module.exports = React.createClass({
|
|||||||
body: React.PropTypes.string,
|
body: React.PropTypes.string,
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
const {body, route} = this.props
|
const { body } = this.props;
|
||||||
const {title} = Helmet.rewind()
|
const { title } = Helmet.rewind();
|
||||||
const font = <link href='https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,700&subset=latin,cyrillic' rel='stylesheet' type='text/css' />
|
const font = <link href="https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,700&subset=latin,cyrillic" rel="stylesheet" type="text/css" />;
|
||||||
let css
|
let css;
|
||||||
if (process.env.NODE_ENV === 'production') {
|
if (process.env.NODE_ENV === 'production') {
|
||||||
css = <style dangerouslySetInnerHTML={ { __html: require('!raw!./public/styles.css')} } />
|
// eslint-disable-next-line import/no-webpack-loader-syntax
|
||||||
|
css = <style dangerouslySetInnerHTML={{ __html: require('!raw!./public/styles.css') }} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -29,10 +30,10 @@ module.exports = React.createClass({
|
|||||||
{ css }
|
{ css }
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="react-mount" dangerouslySetInnerHTML={ { __html: this.props.body} } />
|
<div id="react-mount" dangerouslySetInnerHTML={{ __html: this.props.body }} />
|
||||||
<script src={ prefixLink(`/bundle.js?t=${BUILD_TIME}`) } />
|
<script src={prefixLink(`/bundle.js?t=${BUILD_TIME}`)} />
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
)
|
);
|
||||||
},
|
},
|
||||||
})
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user