notea/pages/_document.tsx
2021-05-27 14:43:21 +08:00

96 lines
2.7 KiB
TypeScript

import { ServerStyleSheets } from '@material-ui/core'
import Document, { Html, Head, Main, NextScript } from 'next/document'
import { Children } from 'react'
class MyDocument extends Document {
render() {
return (
<Html className="nightwind">
<Head>
<meta name="application-name" content="Notea" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="default"
/>
<meta name="apple-mobile-web-app-title" content="Notea" />
<meta
name="description"
content="Self hosted note taking app stored on S3."
/>
<meta name="format-detection" content="telephone=no" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="msapplication-TileColor" content="#2B5797" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="theme-color" content="#ffffff" />
<link
rel="apple-touch-icon"
sizes="192x192"
href="/static/icons/icon-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="128x128"
href="/static/icons/icon-128x128.png"
/>
<link rel="manifest" href="/static/manifest.json" />
</Head>
<body className="bg-gray-50 text-gray-800 overflow-x-hidden">
<Main />
<NextScript />
</body>
</Html>
)
}
}
export default MyDocument
// `getInitialProps` belongs to `_document` (instead of `_app`),
// it's compatible with server-side generation (SSG).
MyDocument.getInitialProps = async (ctx) => {
// Resolution order
//
// On the server:
// 1. app.getInitialProps
// 2. page.getInitialProps
// 3. document.getInitialProps
// 4. app.render
// 5. page.render
// 6. document.render
//
// On the server with error:
// 1. document.getInitialProps
// 2. app.render
// 3. page.render
// 4. document.render
//
// On the client
// 1. app.getInitialProps
// 2. page.getInitialProps
// 3. app.render
// 4. page.render
// Render app and page and get the context of the page with collected side effects.
const sheets = new ServerStyleSheets()
const originalRenderPage = ctx.renderPage
ctx.renderPage = () =>
originalRenderPage({
enhanceApp: (App) => (props) => sheets.collect(<App {...props} />),
})
const initialProps = await Document.getInitialProps(ctx)
return {
...initialProps,
// Styles fragment is rendered after the app and page rendering finish.
styles: [
...Children.toArray(initialProps.styles),
sheets.getStyleElement(),
],
}
}