1
1
mirror of https://github.com/primer/css.git synced 2024-12-01 04:21:12 +03:00
css/docs/pages/_document.js
Shawn Allen fea374a1d8 lint
2018-12-20 14:29:18 -08:00

65 lines
2.4 KiB
JavaScript

import React from 'react'
import Document, {Main, NextScript} from 'next/document'
import {ServerStyleSheet} from 'styled-components'
import {extractCritical} from 'emotion-server'
import {config, getAssetPath} from '../src/utils'
export default class MyDocument extends Document {
static getInitialProps({renderPage}) {
const sheet = new ServerStyleSheet()
const page = renderPage(App => props => sheet.collectStyles(<App {...props} />))
return {
...page,
styleTags: (
<>
<style id="emotion-static">{extractCritical(page.html).css}</style>
{sheet.getStyleElement()}
</>
)
}
}
render() {
const {styleTags} = this.props
return (
<html lang="en">
<head>
<title>Primer CSS</title>
{/* TODO: update this with a new id
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126681523-1" />
<script async href={getAssetPath('analytics.js')} />
*/}
<meta charSet="utf8" />
<link rel="icon" href={getAssetPath('favicon.png')} />
<link rel="apple-touch-icon" href={getAssetPath('apple-touch-icon.png')} />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta property="og:title" content="Primer CSS" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://primer.style/css/" />
<meta property="og:description" content="CSS for GitHub's Primer design system" />
<meta
property="og:image"
content="https://user-images.githubusercontent.com/586552/47590375-121cad80-d93a-11e8-89f2-a1cf108e0548.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:site" content="@githubprimer" />
<link rel="stylesheet" href={getAssetPath('github/styleguide.css')} />
<link
rel="stylesheet"
href={config.production ? getAssetPath('primer.css') : '/_next/static/css/styles.chunk.css'}
/>
{styleTags}
</head>
<body>
<Main />
<NextScript />
<script src={getAssetPath('github/styleguide.js')} />
</body>
</html>
)
}
}