forked from github/plane
0f47762e6d
* dev: implement module issues using mobx store * dev: module filter store setup * chore: module store crud operations
63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import { useEffect } from "react";
|
|
// next themes
|
|
import { useTheme } from "next-themes";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { useRouter } from "next/router";
|
|
|
|
const MobxStoreInit = () => {
|
|
const {
|
|
theme: themeStore,
|
|
user: userStore,
|
|
workspace: workspaceStore,
|
|
project: projectStore,
|
|
module: moduleStore,
|
|
} = useMobxStore();
|
|
const { setTheme } = useTheme();
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, moduleId } = router.query;
|
|
|
|
useEffect(() => {
|
|
// sidebar collapsed toggle
|
|
if (localStorage && localStorage.getItem("app_sidebar_collapsed") && themeStore?.sidebarCollapsed === null)
|
|
themeStore.setSidebarCollapsed(
|
|
localStorage.getItem("app_sidebar_collapsed")
|
|
? localStorage.getItem("app_sidebar_collapsed") === "true"
|
|
? true
|
|
: false
|
|
: false
|
|
);
|
|
|
|
// theme
|
|
if (themeStore.theme === null && userStore?.currentUserSettings) {
|
|
let currentTheme = localStorage.getItem("theme");
|
|
currentTheme = currentTheme ? currentTheme : "system";
|
|
|
|
// validating the theme and applying for initial state
|
|
if (currentTheme) {
|
|
setTheme(currentTheme);
|
|
themeStore.setTheme({ theme: { theme: currentTheme } });
|
|
}
|
|
}
|
|
}, [themeStore, userStore, setTheme]);
|
|
|
|
useEffect(() => {
|
|
// current user
|
|
if (userStore?.currentUser === null) userStore.setCurrentUser();
|
|
|
|
// current user settings
|
|
if (userStore?.currentUserSettings === null) userStore.setCurrentUserSettings();
|
|
}, [userStore]);
|
|
|
|
useEffect(() => {
|
|
if (workspaceSlug) workspaceStore.setWorkspaceSlug(workspaceSlug.toString());
|
|
if (projectId) projectStore.setProjectId(projectId.toString());
|
|
if (moduleId) moduleStore.setModuleId(moduleId.toString());
|
|
}, [workspaceSlug, projectId, moduleId, workspaceStore, projectStore, moduleStore]);
|
|
|
|
return <></>;
|
|
};
|
|
|
|
export default MobxStoreInit;
|