forked from github/plane
cd5e5b96da
* feat: init mobx and issue filter * feat: Implemented list and kanban views in plane space and integrated mobx. * feat: updated store type check
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect } from "react";
|
|
// next imports
|
|
import { useSearchParams } from "next/navigation";
|
|
// interface
|
|
import { TIssueBoardKeys } from "store/types";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { RootStore } from "store/root";
|
|
|
|
const MobxStoreInit = () => {
|
|
const store: RootStore = useMobxStore();
|
|
|
|
// search params
|
|
const routerSearchparams = useSearchParams();
|
|
|
|
const board = routerSearchparams.get("board") as TIssueBoardKeys;
|
|
|
|
useEffect(() => {
|
|
// theme
|
|
const _theme = localStorage && localStorage.getItem("app_theme") ? localStorage.getItem("app_theme") : "light";
|
|
if (_theme && store?.theme?.theme != _theme) store.theme.setTheme(_theme);
|
|
else localStorage.setItem("app_theme", _theme && _theme != "light" ? "dark" : "light");
|
|
}, [store?.theme]);
|
|
|
|
// updating default board view when we are in the issues page
|
|
useEffect(() => {
|
|
if (board && board != store?.issue?.currentIssueBoardView) store.issue.setCurrentIssueBoardView(board);
|
|
}, [board, store?.issue]);
|
|
|
|
return <></>;
|
|
};
|
|
|
|
export default MobxStoreInit;
|