58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { lazy, Suspense } from "react";
|
|
import { useTheme } from "next-themes";
|
|
import { SWRConfig } from "swr";
|
|
// Plane Imports
|
|
import { WEB_SWR_CONFIG } from "@plane/constants";
|
|
import { TranslationProvider } from "@plane/i18n";
|
|
import { Toast } from "@plane/propel/toast";
|
|
// helpers
|
|
import { resolveGeneralTheme } from "@plane/utils";
|
|
// mobx store provider
|
|
import { StoreProvider } from "@/lib/store-context";
|
|
|
|
// lazy imports
|
|
const AppProgressBar = lazy(function AppProgressBar() {
|
|
return import("@/lib/b-progress/AppProgressBar");
|
|
});
|
|
|
|
const StoreWrapper = lazy(function StoreWrapper() {
|
|
return import("@/lib/wrappers/store-wrapper");
|
|
});
|
|
|
|
const InstanceWrapper = lazy(function InstanceWrapper() {
|
|
return import("@/lib/wrappers/instance-wrapper");
|
|
});
|
|
|
|
export interface IAppProvider {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function AppProvider(props: IAppProvider) {
|
|
const { children } = props;
|
|
// themes
|
|
const { resolvedTheme } = useTheme();
|
|
|
|
return (
|
|
<StoreProvider>
|
|
<>
|
|
<AppProgressBar />
|
|
<TranslationProvider>
|
|
<Toast theme={resolveGeneralTheme(resolvedTheme)} />
|
|
<StoreWrapper>
|
|
<InstanceWrapper>
|
|
<Suspense>
|
|
<SWRConfig value={WEB_SWR_CONFIG}>{children}</SWRConfig>
|
|
</Suspense>
|
|
</InstanceWrapper>
|
|
</StoreWrapper>
|
|
</TranslationProvider>
|
|
</>
|
|
</StoreProvider>
|
|
);
|
|
}
|