mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
import React, { lazy, PropsWithChildren, useEffect } from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import { PersistGate } from 'redux-persist/integration/react';
|
|
import { store } from './app/store';
|
|
import { persistor } from './persistor';
|
|
import { OpenAPI } from 'services/api';
|
|
import { InvokeTabName } from 'features/ui/store/tabMap';
|
|
import '@fontsource/inter/100.css';
|
|
import '@fontsource/inter/200.css';
|
|
import '@fontsource/inter/300.css';
|
|
import '@fontsource/inter/400.css';
|
|
import '@fontsource/inter/500.css';
|
|
import '@fontsource/inter/600.css';
|
|
import '@fontsource/inter/700.css';
|
|
import '@fontsource/inter/800.css';
|
|
import '@fontsource/inter/900.css';
|
|
|
|
import Loading from './Loading';
|
|
|
|
// Localization
|
|
import './i18n';
|
|
|
|
const App = lazy(() => import('./app/App'));
|
|
const ThemeLocaleProvider = lazy(() => import('./app/ThemeLocaleProvider'));
|
|
|
|
interface Props extends PropsWithChildren {
|
|
apiUrl?: string;
|
|
disabledPanels?: string[];
|
|
disabledTabs?: InvokeTabName[];
|
|
}
|
|
|
|
export default function Component({
|
|
apiUrl,
|
|
disabledPanels = [],
|
|
disabledTabs = [],
|
|
children,
|
|
}: Props) {
|
|
useEffect(() => {
|
|
if (apiUrl) OpenAPI.BASE = apiUrl;
|
|
}, [apiUrl]);
|
|
|
|
return (
|
|
<React.StrictMode>
|
|
<Provider store={store}>
|
|
<PersistGate loading={<Loading />} persistor={persistor}>
|
|
<React.Suspense fallback={<Loading showText />}>
|
|
<ThemeLocaleProvider>
|
|
<App options={{ disabledPanels, disabledTabs }}>{children}</App>
|
|
</ThemeLocaleProvider>
|
|
</React.Suspense>
|
|
</PersistGate>
|
|
</Provider>
|
|
</React.StrictMode>
|
|
);
|
|
}
|