mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
61 lines
2.1 KiB
TypeScript
61 lines
2.1 KiB
TypeScript
import { enableStaticRendering } from "mobx-react-lite";
|
|
// store imports
|
|
import { IInstanceStore, InstanceStore } from "@/store/instance.store";
|
|
import { IUserStore, UserStore } from "@/store/user.store";
|
|
|
|
// import { IProjectStore, ProjectStore } from "@/store/project";
|
|
// import { IProfileStore, ProfileStore } from "@/store/user/profile.store";
|
|
|
|
// import IssueStore, { IIssueStore } from "./issue";
|
|
// import IssueDetailStore, { IIssueDetailStore } from "./issue_details";
|
|
// import { IIssuesFilterStore, IssuesFilterStore } from "./issues/issue-filters.store";
|
|
// import { IMentionsStore, MentionsStore } from "./mentions.store";
|
|
|
|
enableStaticRendering(typeof window === "undefined");
|
|
|
|
export class RootStore {
|
|
instance: IInstanceStore;
|
|
user: IUserStore;
|
|
// profile: IProfileStore;
|
|
// project: IProjectStore;
|
|
|
|
// issue: IIssueStore;
|
|
// issueDetails: IIssueDetailStore;
|
|
// mentionsStore: IMentionsStore;
|
|
// issuesFilter: IIssuesFilterStore;
|
|
|
|
constructor() {
|
|
// makeObservable(this, {
|
|
// instance: observable,
|
|
// });
|
|
this.instance = new InstanceStore(this);
|
|
this.user = new UserStore(this);
|
|
// this.profile = new ProfileStore(this);
|
|
// this.project = new ProjectStore(this);
|
|
|
|
// this.issue = new IssueStore(this);
|
|
// this.issueDetails = new IssueDetailStore(this);
|
|
// this.mentionsStore = new MentionsStore(this);
|
|
// this.issuesFilter = new IssuesFilterStore(this);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
hydrate = (data: any) => {
|
|
if (!data) return;
|
|
this.instance.hydrate(data?.instance || {}, data?.config || {});
|
|
this.user.hydrate(data?.user || {});
|
|
};
|
|
|
|
reset = () => {
|
|
localStorage.setItem("theme", "system");
|
|
this.instance = new InstanceStore(this);
|
|
this.user = new UserStore(this);
|
|
// this.profile = new ProfileStore(this);
|
|
// this.project = new ProjectStore(this);
|
|
// this.issue = new IssueStore(this);
|
|
// this.issueDetails = new IssueDetailStore(this);
|
|
// this.mentionsStore = new MentionsStore(this);
|
|
// this.issuesFilter = new IssuesFilterStore(this);
|
|
};
|
|
}
|