import { Fragment, ReactNode } from 'react'; import classnames from 'classnames'; import { useColorScheme } from './ColorSchemeProvider'; import useDesignTokens from './useDesignTokens'; import useExperimentalTheme from '../utils/useExperimentalTheme'; const CLASSIC = 'classic'; const VISUALREFRESH = 'visualrefresh'; const CALICO01 = 'calico01'; /** * APPENDS TOKENS AS INJECTED CSS TOKENS */ const useThemeToStyles = ({ forceTheme, languageMode = 'default', }: { forceTheme?: typeof CLASSIC | typeof VISUALREFRESH | typeof CALICO01 | 'hybrid'; languageMode?: 'default' | 'tall' | 'ck' | 'ja' | 'th' | 'vi'; }) => { // GET COLOR SCHEME MODE const { colorSchemeName: colorSchemeMode } = useColorScheme(); // GET DEFAULT DESIGN SYSTEM TOKEN SET OR APPLICABLE FROM EXPERIMENT const tokens = useDesignTokens({ forceTheme }); // DEFINE THEME UNDER EXPERIMENT const theme = useExperimentalTheme(); const isVR = theme.VR01 || forceTheme === VISUALREFRESH || forceTheme === 'hybrid'; const isCalico01 = theme.CA01 || forceTheme === CALICO01; const isClassic = forceTheme === CLASSIC || !(isVR || isCalico01); // BUILD STYLE SHEET FROM TOKENS FILES let styles = ''; // ADDS METADATA styles += ` --gestalt-theme: ${tokens.name};\n`; styles += ` --gestalt-color-scheme: ${colorSchemeMode};\n`; if (!isClassic) { styles += ` --gestalt-line-height: ${languageMode}Mode;\n`; } // BUILDS TOKENS const colorSchemeModeTokenSet = colorSchemeMode === 'darkMode' ? tokens.dark : tokens.light; // @ts-expect-error - TS7053 const languageModeTokenSet = languageMode ? tokens[languageMode] : ''; Object.keys(colorSchemeModeTokenSet).forEach((key) => { if (!isClassic && key.match(/lineheight/)) { styles += ` --${key}: ${languageModeTokenSet[key]};\n`; } else { // @ts-expect-error - TS7053 styles += ` --${key}: ${colorSchemeModeTokenSet[key]};\n`; } }); return styles; }; type Props = { /** * Context lets a parent component provide data to the entire tree below it. Only components within the ColorSchemeProvider tree will be able to subscribe to it. */ children: ReactNode; /** * Use with caution! Set an id in your provider to limit the scope of the provider to just the children. This should only be used for cases where you want to enable dark mode in delimited sections to examplify dark mode itself. * If not passed in, settings will be applied as globally as possible (ex. setting color scheme variables at :root). A global implementation is critical for displaying dark mode correctly: when dark mode is not set globally, [React Portal](https://react.dev/reference/react-dom/createPortal)-based components, mostly Popovers and Tooltips, will not render in dark mode. The main ColorSchemeProvider in your app should NOT have an id set. */ id?: string | null | undefined; /** * Sets the language mode that manages the line height for the selected language. */ languageMode?: 'default' | 'tall' | 'ck' | 'ja' | 'th' | 'vi'; /** * Forces a theme. It allows applying a theme on delimited sections. It should be accompanied of a root selector. */ forceTheme?: 'classic' | 'visualrefresh' | 'calico01' | 'hybrid'; /** * Forces a theme. It allows applying a theme on delimited sections. It should be accompanied of forceTheme. */ rootSelector?: string; }; /** * [DesignTokensProvider](https://gestalt.pinterest.systems/web/utilities/designtokensprovider) is a stylesheet containing Gestalt' design system tokens. It manages themes and modes. It's dependent on parent providers: ExperimentProvider and [ColorSchemeProvider](https://gestalt.pinterest.systems/web/utilities/colorschemeprovider) */ export default function DesignTokensProvider({ children, id, languageMode = 'default', forceTheme, rootSelector, }: Props) { const root = rootSelector ? `:root .${rootSelector}` : ':root'; return (