tldraw/pages/_document.tsx

103 lines
3 KiB
TypeScript
Raw Normal View History

2021-06-21 21:35:28 +00:00
import NextDocument, {
Html,
Head,
Main,
NextScript,
DocumentContext,
} from 'next/document'
import { dark, getCssString } from 'styles'
2021-06-19 09:00:44 +00:00
import { GA_TRACKING_ID } from 'utils/gtag'
2021-05-09 12:03:39 +00:00
2021-05-09 21:22:25 +00:00
class MyDocument extends NextDocument {
2021-06-21 21:35:28 +00:00
static async getInitialProps(ctx: DocumentContext): Promise<{
styles: JSX.Element
html: string
head?: JSX.Element[]
}> {
2021-05-09 21:22:25 +00:00
try {
const initialProps = await NextDocument.getInitialProps(ctx)
return {
...initialProps,
styles: (
<>
{initialProps.styles}
<style
id="stitches"
dangerouslySetInnerHTML={{ __html: getCssString() }}
/>
</>
),
}
} catch (e) {
2021-05-25 09:09:51 +00:00
console.error(e.message)
2021-05-09 21:22:25 +00:00
} finally {
2021-06-21 21:35:28 +00:00
null
2021-05-09 21:22:25 +00:00
}
2021-05-09 12:03:39 +00:00
}
2021-06-21 21:35:28 +00:00
render(): JSX.Element {
2021-06-29 19:48:06 +00:00
const APP_NAME = 'tldraw'
const APP_DESCRIPTION = 'A tiny little drawing app.'
const APP_URL = 'https://tldraw.com'
2021-05-09 12:03:39 +00:00
return (
2021-05-09 21:22:25 +00:00
<Html lang="en">
2021-06-11 12:37:09 +00:00
<Head>
2021-06-29 19:48:06 +00:00
<meta name="application-name" content={APP_NAME} />
2021-06-11 12:37:09 +00:00
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
2021-06-29 19:48:06 +00:00
<meta name="apple-mobile-web-app-title" content={APP_NAME} />
<meta name="description" content={APP_DESCRIPTION} />
2021-06-11 12:37:09 +00:00
<meta name="format-detection" content="telephone=no" />
<meta name="mobile-web-app-capable" content="yes" />
2021-06-11 20:14:43 +00:00
<meta name="theme-color" content="#fafafa" />
2021-06-29 19:48:06 +00:00
2021-06-11 12:37:09 +00:00
<meta name="twitter:card" content="summary" />
2021-06-29 19:48:06 +00:00
<meta name="twitter:url" content={APP_URL} />
<meta name="twitter:title" content={APP_NAME} />
<meta name="twitter:description" content={APP_DESCRIPTION} />
2021-06-11 12:37:09 +00:00
<meta name="twitter:creator" content="@steveruizok" />
2021-06-29 19:48:06 +00:00
2021-06-11 12:37:09 +00:00
<meta property="og:type" content="website" />
2021-06-29 19:48:06 +00:00
<meta property="og:title" content={APP_NAME} />
<meta property="og:description" content={APP_DESCRIPTION} />
<meta property="og:site_name" content={APP_NAME} />
<meta property="og:url" content={APP_URL} />
<link rel="manifest" href="/manifest.json" />
<link rel="shortcut icon" href="/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/icons/apple-touch-icon.png"
2021-06-11 12:37:09 +00:00
/>
2021-06-29 19:48:06 +00:00
2021-06-19 09:00:44 +00:00
<script
async
src={`https://www.googletagmanager.com/gtag/js?id=${GA_TRACKING_ID}`}
/>
<script
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '${GA_TRACKING_ID}', {
page_path: window.location.pathname,
});
`,
}}
/>
2021-06-11 12:37:09 +00:00
</Head>
2021-05-09 12:03:39 +00:00
<body className={dark}>
<Main />
<NextScript />
</body>
</Html>
)
}
}
export default MyDocument