import "@saleor/apps-shared/src/globals.css"; import "../styles/globals.css"; import { AppBridge, AppBridgeProvider } from "@saleor/app-sdk/app-bridge"; import { RoutePropagator } from "@saleor/app-sdk/app-bridge/next"; import { dark, light, SaleorThemeColors, ThemeProvider as MacawUIThemeProvider, } from "@saleor/macaw-ui"; import React, { PropsWithChildren, useEffect } from "react"; import { AppProps } from "next/app"; import { ThemeSynchronizer } from "../lib/theme-synchronizer"; import { NoSSRWrapper } from "../no-ssr-wrapper"; import { Theme } from "@material-ui/core/styles"; type PalettesOverride = Record<"light" | "dark", SaleorThemeColors>; /** * Temporary override of colors, to match new dashboard palette. * Long term this will be replaced with Macaw UI 2.x with up to date design tokens */ const palettes: PalettesOverride = { light: { ...light, background: { default: "#fff", paper: "#fff", }, }, dark: { ...dark, background: { default: "hsla(211, 42%, 14%, 1)", paper: "hsla(211, 42%, 14%, 1)", }, }, }; /** * Ensure instance is a singleton. * TODO: This is React 18 issue, consider hiding this workaround inside app-sdk */ const appBridgeInstance = typeof window !== "undefined" ? new AppBridge() : undefined; /** * That's a hack required by Macaw-UI incompatibility with React@18 */ const ThemeProvider = MacawUIThemeProvider as React.FC< PropsWithChildren<{ overrides?: Partial; ssr: boolean; palettes: PalettesOverride }> >; function NextApp({ Component, pageProps }: AppProps) { /** * Configure JSS (used by MacawUI) for SSR. If Macaw is not used, can be removed. */ useEffect(() => { const jssStyles = document.querySelector("#jss-server-side"); if (jssStyles) { jssStyles?.parentElement?.removeChild(jssStyles); } }, []); return ( ); } export default NextApp;