2023-02-16 22:39:57 +00:00
|
|
|
import type { DocumentContext, DocumentProps } from "next/document";
|
|
|
|
import Document, { Head, Html, Main, NextScript } from "next/document";
|
2022-12-08 23:39:15 +00:00
|
|
|
import Script from "next/script";
|
2023-02-06 22:50:08 +00:00
|
|
|
import { z } from "zod";
|
2021-07-07 19:58:18 +00:00
|
|
|
|
2023-01-03 10:09:05 +00:00
|
|
|
import { getDirFromLang } from "@calcom/lib/i18n";
|
|
|
|
|
2023-02-06 22:50:08 +00:00
|
|
|
import { csp } from "@lib/csp";
|
2022-07-28 10:50:25 +00:00
|
|
|
|
2023-02-06 22:50:08 +00:00
|
|
|
type Props = Record<string, unknown> & DocumentProps;
|
2022-07-28 10:50:25 +00:00
|
|
|
|
2021-09-09 13:51:06 +00:00
|
|
|
class MyDocument extends Document<Props> {
|
|
|
|
static async getInitialProps(ctx: DocumentContext) {
|
2023-02-06 22:50:08 +00:00
|
|
|
const { nonce } = csp(ctx.req || null, ctx.res || null);
|
|
|
|
if (!process.env.CSP_POLICY) {
|
|
|
|
ctx.res?.setHeader("x-csp", "not-opted-in");
|
|
|
|
} else if (!ctx.res?.getHeader("x-csp")) {
|
|
|
|
// If x-csp not set by gSSP, then it's initialPropsOnly
|
|
|
|
ctx.res?.setHeader("x-csp", "initialPropsOnly");
|
|
|
|
}
|
2022-10-19 21:25:03 +00:00
|
|
|
const isEmbed = ctx.asPath?.includes("/embed") || ctx.asPath?.includes("embedType=");
|
2021-07-07 19:58:18 +00:00
|
|
|
const initialProps = await Document.getInitialProps(ctx);
|
2023-02-06 22:50:08 +00:00
|
|
|
return { isEmbed, nonce, ...initialProps };
|
2021-07-07 19:58:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2022-07-12 14:18:53 +00:00
|
|
|
const { locale } = this.props.__NEXT_DATA__;
|
2023-02-06 22:50:08 +00:00
|
|
|
const { isEmbed } = this.props;
|
|
|
|
const nonceParsed = z.string().safeParse(this.props.nonce);
|
|
|
|
const nonce = nonceParsed.success ? nonceParsed.data : "";
|
2023-01-03 10:09:05 +00:00
|
|
|
const dir = getDirFromLang(locale);
|
2021-07-07 19:58:18 +00:00
|
|
|
return (
|
2022-02-01 22:17:37 +00:00
|
|
|
<Html lang={locale} dir={dir}>
|
2023-02-06 22:50:08 +00:00
|
|
|
<Head nonce={nonce}>
|
2021-08-03 09:39:06 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000" />
|
|
|
|
<meta name="msapplication-TileColor" content="#ff0000" />
|
|
|
|
<meta name="theme-color" content="#ffffff" />
|
2022-07-27 02:24:00 +00:00
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
href="/fonts/Inter-roman.var.woff2"
|
|
|
|
as="font"
|
|
|
|
type="font/woff2"
|
|
|
|
crossOrigin="anonymous"
|
|
|
|
/>
|
|
|
|
<link rel="preload" href="/fonts/cal.ttf" as="font" type="font/ttf" crossOrigin="anonymous" />
|
2023-02-06 22:50:08 +00:00
|
|
|
<Script src="/embed-init-iframe.js" strategy="beforeInteractive" />
|
2021-08-03 09:32:37 +00:00
|
|
|
</Head>
|
2022-03-31 08:45:47 +00:00
|
|
|
|
2022-10-19 21:25:03 +00:00
|
|
|
<body
|
2023-01-17 16:36:06 +00:00
|
|
|
className="dark:bg-darkgray-50 desktop-transparent bg-gray-100 antialiased"
|
2022-10-19 21:25:03 +00:00
|
|
|
style={
|
2023-02-06 22:50:08 +00:00
|
|
|
isEmbed
|
2022-10-19 21:25:03 +00:00
|
|
|
? {
|
|
|
|
background: "transparent",
|
|
|
|
// Keep the embed hidden till parent initializes and
|
|
|
|
// - gives it the appropriate styles if UI instruction is there.
|
|
|
|
// - gives iframe the appropriate height(equal to document height) which can only be known after loading the page once in browser.
|
|
|
|
// - Tells iframe which mode it should be in (dark/light) - if there is a a UI instruction for that
|
|
|
|
visibility: "hidden",
|
|
|
|
}
|
|
|
|
: {}
|
|
|
|
}>
|
2021-07-07 19:58:18 +00:00
|
|
|
<Main />
|
2023-02-06 22:50:08 +00:00
|
|
|
<NextScript nonce={nonce} />
|
2021-07-07 19:58:18 +00:00
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyDocument;
|