2023-08-11 11:48:33 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
import { useEffect } from "react";
|
2023-08-30 07:19:15 +00:00
|
|
|
// next imports
|
2023-08-30 08:11:25 +00:00
|
|
|
import { useRouter } from "next/router";
|
2023-08-11 11:48:33 +00:00
|
|
|
// mobx store
|
|
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
import { RootStore } from "store/root";
|
|
|
|
|
|
|
|
const MobxStoreInit = () => {
|
|
|
|
const store: RootStore = useMobxStore();
|
|
|
|
|
2023-08-30 08:11:25 +00:00
|
|
|
const router = useRouter();
|
|
|
|
const { states, labels, priorities } = router.query as { states: string[]; labels: string[]; priorities: string[] };
|
2023-08-30 07:19:15 +00:00
|
|
|
|
2023-08-11 11:48:33 +00:00
|
|
|
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]);
|
|
|
|
|
2023-08-30 07:19:15 +00:00
|
|
|
useEffect(() => {
|
2023-08-30 08:11:25 +00:00
|
|
|
store.issue.userSelectedLabels = labels || [];
|
|
|
|
store.issue.userSelectedPriorities = priorities || [];
|
|
|
|
store.issue.userSelectedStates = states || [];
|
|
|
|
}, [store.issue]);
|
2023-08-30 07:19:15 +00:00
|
|
|
|
2023-08-11 11:48:33 +00:00
|
|
|
return <></>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default MobxStoreInit;
|