forked from github/plane
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
// mobx lite
|
|
import { enableStaticRendering } from "mobx-react-lite";
|
|
// store imports
|
|
import UserStore from "./user";
|
|
import ThemeStore from "./theme";
|
|
import ProjectStore, { IProjectStore } from "./project";
|
|
import ProjectPublishStore, { IProjectPublishStore } from "./project-publish";
|
|
import IssuesStore from "./issues";
|
|
// issues views and filters
|
|
import IssueFilterStore from "./issue-views/issue_filters";
|
|
import IssueViewStore from "./issue-views/Issues";
|
|
|
|
enableStaticRendering(typeof window === "undefined");
|
|
|
|
export class RootStore {
|
|
user;
|
|
theme;
|
|
project: IProjectStore;
|
|
projectPublish: IProjectPublishStore;
|
|
issues: IssuesStore;
|
|
issueFilters: IssueFilterStore;
|
|
issueView: IssueViewStore;
|
|
|
|
constructor() {
|
|
this.user = new UserStore(this);
|
|
this.theme = new ThemeStore(this);
|
|
this.project = new ProjectStore(this);
|
|
this.projectPublish = new ProjectPublishStore(this);
|
|
this.issues = new IssuesStore(this);
|
|
this.issueFilters = new IssueFilterStore(this);
|
|
this.issueView = new IssueViewStore(this);
|
|
}
|
|
}
|