0c5f8dda48
* remove sponsorwall for main route * Adds sponsorship link * Remove all sponsorwall * Fix sponsorship link appearance on dark mode * Add heart icon * Fix text bug * Fix toolbar, hide resize handles on sticky * Add eraser * Update Kbd.tsx * cleanup * base zoom delta on event deltaMode * Fix image in example * Fix eraser icon * eraser tool resets to previous tool * Update EraseTool.spec.ts * Improves support for locked shapes * Update _document.tsx * Update CHANGELOG.md * Adds multiplayer menu, fix develop route in example * Tighten up top panel padding * Update top bar, bump packages * refactor TLDrawState -> TLDrawApp, mutables, new tests * Fix scaling bug, delete groups bug * fix snapping * add pressure to points * Remove mutables, rename to tldraw (or Tldraw) * Clean up types, add darkmode prop * more renaming * rename getShapeUtils to getShapeUtil * Fix file names * Fix last bugs related to renaming * Update state to app in tests * rename types to TD * remove unused styles / rename styles * slight update to panel * Fix rogue radix perf issue * Update ZoomMenu.tsx * Consolidate style panel * Fix text wrapping in text shape, improve action menu * Fix props * add indicators for tool lock * fix calloits * Add click to erase shapes * Slightly improve loading screen * Update PrimaryTools.tsx * remove force consistent filenames from tsconfig * Update useTldrawApp.tsx * fix capitalization * Update main.yml
86 lines
2.9 KiB
TypeScript
86 lines
2.9 KiB
TypeScript
import NextDocument, { Html, Head, Main, NextScript, DocumentContext } from 'next/document'
|
|
import { getCssText } from '../styles'
|
|
import { GA_TRACKING_ID } from '../utils/gtag'
|
|
|
|
const APP_NAME = 'Tldraw'
|
|
const APP_DESCRIPTION = 'A tiny little drawing app.'
|
|
const APP_URL = 'https://tldraw.com'
|
|
|
|
class MyDocument extends NextDocument {
|
|
static async getInitialProps(ctx: DocumentContext): Promise<{
|
|
styles: JSX.Element
|
|
html: string
|
|
head?: JSX.Element[]
|
|
}> {
|
|
try {
|
|
const initialProps = await NextDocument.getInitialProps(ctx)
|
|
|
|
return {
|
|
...initialProps,
|
|
styles: (
|
|
<>
|
|
{initialProps.styles}
|
|
<style id="stitches" dangerouslySetInnerHTML={{ __html: getCssText() }} />
|
|
</>
|
|
),
|
|
}
|
|
} catch (e) {
|
|
console.error(e.message)
|
|
} finally {
|
|
null
|
|
}
|
|
}
|
|
|
|
render(): JSX.Element {
|
|
return (
|
|
<Html lang="en">
|
|
<Head>
|
|
<meta name="application-name" content={APP_NAME} />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
<meta name="apple-mobile-web-app-title" content={APP_NAME} />
|
|
<meta name="description" content={APP_DESCRIPTION} />
|
|
<meta name="format-detection" content="telephone=no" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="theme-color" content="#fafafa" />
|
|
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:url" content={APP_URL} />
|
|
<meta name="twitter:title" content={APP_NAME} />
|
|
<meta name="twitter:description" content={APP_DESCRIPTION} />
|
|
<meta name="twitter:creator" content="@steveruizok" />
|
|
|
|
<meta property="og:type" content="website" />
|
|
<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" />
|
|
|
|
<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,
|
|
});
|
|
`,
|
|
}}
|
|
/>
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default MyDocument
|