mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
85 lines
2.5 KiB
TypeScript
85 lines
2.5 KiB
TypeScript
import '@affine/component/theme/global.css';
|
|
import '@affine/component/theme/theme.css';
|
|
// bootstrap code before everything
|
|
import '../bootstrap';
|
|
|
|
import { AffineContext } from '@affine/component/context';
|
|
import { WorkspaceFallback } from '@affine/component/workspace';
|
|
import { createI18n, I18nextProvider, setUpLanguage } from '@affine/i18n';
|
|
import type { EmotionCache } from '@emotion/cache';
|
|
import { CacheProvider } from '@emotion/react';
|
|
import type { AppProps } from 'next/app';
|
|
import Head from 'next/head';
|
|
import { useRouter } from 'next/router';
|
|
import type { PropsWithChildren, ReactElement } from 'react';
|
|
import React, { lazy, Suspense, useEffect } from 'react';
|
|
|
|
import { AffineErrorBoundary } from '../components/affine/affine-error-eoundary';
|
|
import type { NextPageWithLayout } from '../shared';
|
|
import createEmotionCache from '../utils/create-emotion-cache';
|
|
|
|
type AppPropsWithLayout = AppProps & {
|
|
Component: NextPageWithLayout;
|
|
};
|
|
|
|
const EmptyLayout = (page: ReactElement) => page;
|
|
|
|
const clientSideEmotionCache = createEmotionCache();
|
|
|
|
const DevTools = lazy(() =>
|
|
import('jotai-devtools').then(m => ({ default: m.DevTools }))
|
|
);
|
|
|
|
const DebugProvider = ({ children }: PropsWithChildren): ReactElement => {
|
|
return (
|
|
<>
|
|
<Suspense>{process.env.DEBUG_JOTAI === 'true' && <DevTools />}</Suspense>
|
|
{children}
|
|
</>
|
|
);
|
|
};
|
|
|
|
const i18n = createI18n();
|
|
|
|
const App = function App({
|
|
Component,
|
|
pageProps,
|
|
emotionCache = clientSideEmotionCache,
|
|
}: AppPropsWithLayout & {
|
|
emotionCache?: EmotionCache;
|
|
}) {
|
|
useEffect(() => {
|
|
document.documentElement.lang = i18n.language;
|
|
// todo(himself65): this is a hack, we should use a better way to set the language
|
|
setUpLanguage(i18n)?.catch(error => {
|
|
console.error(error);
|
|
});
|
|
}, []);
|
|
const getLayout = Component.getLayout || EmptyLayout;
|
|
|
|
return (
|
|
<CacheProvider value={emotionCache}>
|
|
<I18nextProvider i18n={i18n}>
|
|
<AffineErrorBoundary router={useRouter()}>
|
|
<AffineContext>
|
|
<Head>
|
|
<title>AFFiNE</title>
|
|
<meta
|
|
name="viewport"
|
|
content="initial-scale=1, width=device-width"
|
|
/>
|
|
</Head>
|
|
<DebugProvider>
|
|
<Suspense fallback={<WorkspaceFallback key="RootPageLoading" />}>
|
|
{getLayout(<Component {...pageProps} />)}
|
|
</Suspense>
|
|
</DebugProvider>
|
|
</AffineContext>
|
|
</AffineErrorBoundary>
|
|
</I18nextProvider>
|
|
</CacheProvider>
|
|
);
|
|
};
|
|
|
|
export default App;
|