123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import {Fragment, useEffect} from 'react';
- import {createPortal} from 'react-dom';
- import {cache} from '@emotion/css'; // eslint-disable-line @emotion/no-vanilla
- import {CacheProvider, ThemeProvider} from '@emotion/react'; // This is needed to set "speedy" = false (for percy)
- import {loadPreferencesState} from 'sentry/actionCreators/preferences';
- import ConfigStore from 'sentry/stores/configStore';
- import {useLegacyStore} from 'sentry/stores/useLegacyStore';
- import GlobalStyles from 'sentry/styles/global';
- import {darkTheme, lightTheme} from 'sentry/utils/theme';
- type Props = {
- children: React.ReactNode;
- };
- /**
- * Wraps children with emotions ThemeProvider reactively set a theme.
- *
- * Also injects the sentry GlobalStyles .
- */
- function ThemeAndStyleProvider({children}: Props) {
- useEffect(() => void loadPreferencesState(), []);
- const config = useLegacyStore(ConfigStore);
- const theme = config.theme === 'dark' ? darkTheme : lightTheme;
- return (
- <ThemeProvider theme={theme}>
- <GlobalStyles isDark={config.theme === 'dark'} theme={theme} />
- <CacheProvider value={cache}>{children}</CacheProvider>
- {createPortal(
- <Fragment>
- <meta name="color-scheme" content={config.theme} />
- <meta name="theme-color" content={theme.sidebar.background} />
- </Fragment>,
- document.head
- )}
- </ThemeProvider>
- );
- }
- export default ThemeAndStyleProvider;
|