chore (SW-834): Upgrade to Next 15 * wip: apply codemod and upgrade swc plugin * wip: design-system to react 19, fix issues from async (search)params * wip: fix remaining issues from codemod serverClient is now async because context use headers() getLang is now async because it uses headers() * Minor cleanup * Inline react-material-symbols package Package is seemingly not maintained any more and doesn't support React 19. This copies the package source into `design-system`, makes the necessary changes for 19 and export it for others to use. * Fix missing awaits * Disable modal exit animations Enabling modal exit animations via isExiting prop is causing modals to be rendered in "hidden" state and never unmount. Seems to be an issue with react-aria-components, see https://github.com/adobe/react-spectrum/issues/7563. Can probably be fixed by rewriting to a solution similar to https://react-spectrum.adobe.com/react-aria/examples/framer-modal-sheet.html * Remove unstable cache implementation and use in memory cache locally * Fix ref type in SelectFilter * Use cloneElement to add key prop to element Approved-by: Linus Flood
92 lines
2.7 KiB
TypeScript
92 lines
2.7 KiB
TypeScript
/* eslint-disable formatjs/no-literal-string-in-jsx */
|
|
|
|
import "@scandic-hotels/design-system/fonts.css"
|
|
import "@/app/globals.css"
|
|
import "@/public/_static/css/design-system-current-deprecated.css"
|
|
import "@scandic-hotels/design-system/style.css"
|
|
|
|
import Script from "next/script"
|
|
|
|
import { Lang } from "@/constants/languages"
|
|
|
|
import TokenRefresher from "@/components/Auth/TokenRefresher"
|
|
import CookieBotConsent from "@/components/CookieBot"
|
|
import AdobeScript from "@/components/Current/AdobeScript"
|
|
import Footer from "@/components/Current/Footer"
|
|
import LangPopup from "@/components/Current/LangPopup"
|
|
import SkipToMainContent from "@/components/SkipToMainContent"
|
|
import RouterTracking from "@/components/TrackingSDK/RouterTracking"
|
|
import { getMessages } from "@/i18n"
|
|
import ClientIntlProvider from "@/i18n/Provider"
|
|
import { setLang } from "@/i18n/serverContext"
|
|
|
|
import type { Metadata } from "next"
|
|
|
|
import type { LangParams, LayoutArgs } from "@/types/params"
|
|
|
|
export const fetchCache = "default-no-store"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Scandic Hotels",
|
|
}
|
|
|
|
export default async function RootLayout(
|
|
props: React.PropsWithChildren<
|
|
LayoutArgs<LangParams> & { header: React.ReactNode }
|
|
>
|
|
) {
|
|
const params = await props.params;
|
|
|
|
const {
|
|
children,
|
|
header
|
|
} = props;
|
|
|
|
setLang(params.lang)
|
|
const messages = await getMessages(params.lang)
|
|
|
|
return (
|
|
<html lang={params.lang}>
|
|
<head>
|
|
{/* eslint-disable-next-line @next/next/no-css-tags */}
|
|
<link rel="stylesheet" href="/_static/css/core.css" />
|
|
{/* eslint-disable-next-line @next/next/no-css-tags */}
|
|
<link rel="stylesheet" href="/_static/css/scandic.css" />
|
|
<Script
|
|
strategy="beforeInteractive"
|
|
data-blockingmode="auto"
|
|
data-cbid="6d539de8-3e67-4f0f-a0df-8cef9070f712"
|
|
data-culture={params.lang}
|
|
id="Cookiebot"
|
|
src="https://consent.cookiebot.com/uc.js"
|
|
/>
|
|
<Script id="ensure-datalayer">{`
|
|
window.datalayer = window.datalayer || {}
|
|
`}</Script>
|
|
<AdobeScript />
|
|
</head>
|
|
<body className="theme-00Corecolours theme-X0Oldcorecolours">
|
|
<LangPopup />
|
|
<SkipToMainContent />
|
|
<ClientIntlProvider
|
|
defaultLocale={Lang.en}
|
|
locale={params.lang}
|
|
messages={messages}
|
|
>
|
|
<RouterTracking />
|
|
{header}
|
|
{children}
|
|
<Footer />
|
|
<TokenRefresher />
|
|
<CookieBotConsent />
|
|
</ClientIntlProvider>
|
|
<Script id="page-tracking">{`
|
|
if (typeof _satellite !== "undefined" && typeof _satellite.pageBottom === "function") {
|
|
_satellite.pageBottom();
|
|
}
|
|
`}</Script>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|