mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
33 lines
901 B
TypeScript
33 lines
901 B
TypeScript
import { enableStaticRendering } from "mobx-react-lite";
|
|
// stores
|
|
import { IInstanceStore, InstanceStore } from "./instance.store";
|
|
import { IThemeStore, ThemeStore } from "./theme.store";
|
|
import { IUserStore, UserStore } from "./user.store";
|
|
|
|
enableStaticRendering(typeof window === "undefined");
|
|
|
|
export class RootStore {
|
|
theme: IThemeStore;
|
|
instance: IInstanceStore;
|
|
user: IUserStore;
|
|
|
|
constructor() {
|
|
this.theme = new ThemeStore(this);
|
|
this.instance = new InstanceStore(this);
|
|
this.user = new UserStore(this);
|
|
}
|
|
|
|
hydrate(initialData: any) {
|
|
this.theme.hydrate(initialData.theme);
|
|
this.instance.hydrate(initialData.instance);
|
|
this.user.hydrate(initialData.user);
|
|
}
|
|
|
|
resetOnSignOut() {
|
|
localStorage.setItem("theme", "system");
|
|
this.instance = new InstanceStore(this);
|
|
this.user = new UserStore(this);
|
|
this.theme = new ThemeStore(this);
|
|
}
|
|
}
|