plane/apps/space/store/root.ts
2023-09-01 00:34:57 +05:30

29 lines
824 B
TypeScript

// mobx lite
import { enableStaticRendering } from "mobx-react-lite";
// store imports
import UserStore from "./user";
import ThemeStore from "./theme";
import IssueStore, { IIssueStore } from "./issue";
import ProjectStore, { IProjectStore } from "./project";
import IssueDetailStore, { IIssueDetailStore } from "./issue_details";
// types
import { IThemeStore } from "types/theme";
enableStaticRendering(typeof window === "undefined");
export class RootStore {
user: UserStore;
theme: IThemeStore;
issue: IIssueStore;
issueDetails: IIssueDetailStore;
project: IProjectStore;
constructor() {
this.user = new UserStore(this);
this.theme = new ThemeStore(this);
this.issue = new IssueStore(this);
this.project = new ProjectStore(this);
this.issueDetails = new IssueDetailStore(this);
}
}