forked from github/plane
ea3a0362b0
* fix global issues and views * remove separate layouts for specific views * add permissions to views * fix global issues filters --------- Co-authored-by: Rahul R <rahulr@Rahuls-MacBook-Pro.local>
194 lines
5.3 KiB
TypeScript
194 lines
5.3 KiB
TypeScript
import { action, observable, makeObservable, computed, runInAction } from "mobx";
|
|
import set from "lodash/set";
|
|
// base class
|
|
import { IssueHelperStore } from "../helpers/issue-helper.store";
|
|
// services
|
|
import { WorkspaceService } from "services/workspace.service";
|
|
import { IssueService } from "services/issue";
|
|
// types
|
|
import { IIssueRootStore } from "../root.store";
|
|
import { TIssue, TLoader, TUnGroupedIssues, ViewFlags } from "@plane/types";
|
|
|
|
export interface IWorkspaceIssues {
|
|
// observable
|
|
loader: TLoader;
|
|
issues: { [viewId: string]: string[] };
|
|
viewFlags: ViewFlags;
|
|
// computed
|
|
groupedIssueIds: { dataViewId: string; issueIds: TUnGroupedIssues | undefined };
|
|
// actions
|
|
fetchIssues: (workspaceSlug: string, viewId: string, loadType: TLoader) => Promise<TIssue[]>;
|
|
createIssue: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: Partial<TIssue>,
|
|
viewId?: string | undefined
|
|
) => Promise<TIssue | undefined>;
|
|
updateIssue: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
data: Partial<TIssue>,
|
|
viewId?: string | undefined
|
|
) => Promise<TIssue | undefined>;
|
|
removeIssue: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
viewId?: string | undefined
|
|
) => Promise<TIssue | undefined>;
|
|
}
|
|
|
|
export class WorkspaceIssues extends IssueHelperStore implements IWorkspaceIssues {
|
|
loader: TLoader = "init-loader";
|
|
issues: { [viewId: string]: string[] } = {};
|
|
viewFlags = {
|
|
enableQuickAdd: true,
|
|
enableIssueCreation: true,
|
|
enableInlineEditing: true,
|
|
};
|
|
// root store
|
|
rootIssueStore: IIssueRootStore;
|
|
// service
|
|
workspaceService;
|
|
issueService;
|
|
|
|
constructor(_rootStore: IIssueRootStore) {
|
|
super(_rootStore);
|
|
|
|
makeObservable(this, {
|
|
// observable
|
|
loader: observable.ref,
|
|
issues: observable,
|
|
// computed
|
|
groupedIssueIds: computed,
|
|
// action
|
|
fetchIssues: action,
|
|
createIssue: action,
|
|
updateIssue: action,
|
|
removeIssue: action,
|
|
});
|
|
// root store
|
|
this.rootIssueStore = _rootStore;
|
|
// services
|
|
this.workspaceService = new WorkspaceService();
|
|
this.issueService = new IssueService();
|
|
}
|
|
|
|
get groupedIssueIds() {
|
|
const viewId = this.rootIssueStore.globalViewId;
|
|
if (!viewId) return { dataViewId: "", issueIds: undefined };
|
|
|
|
const displayFilters = this.rootIssueStore?.workspaceIssuesFilter?.filters?.[viewId]?.displayFilters;
|
|
if (!displayFilters) return { dataViewId: viewId, issueIds: undefined };
|
|
|
|
const orderBy = displayFilters?.order_by;
|
|
|
|
const viewIssueIds = this.issues[viewId];
|
|
|
|
if (!viewIssueIds) return { dataViewId: viewId, issueIds: undefined };
|
|
|
|
const _issues = this.rootStore.issues.getIssuesByIds(viewIssueIds);
|
|
if (!_issues) return { dataViewId: viewId, issueIds: [] };
|
|
|
|
let issueIds: TIssue | TUnGroupedIssues | undefined = undefined;
|
|
|
|
issueIds = this.unGroupedIssues(orderBy ?? "-created_at", _issues);
|
|
|
|
return { dataViewId: viewId, issueIds };
|
|
}
|
|
|
|
fetchIssues = async (workspaceSlug: string, viewId: string, loadType: TLoader = "init-loader") => {
|
|
try {
|
|
this.loader = loadType;
|
|
|
|
const params = this.rootIssueStore?.workspaceIssuesFilter?.getAppliedFilters(viewId);
|
|
const response = await this.workspaceService.getViewIssues(workspaceSlug, params);
|
|
|
|
runInAction(() => {
|
|
set(
|
|
this.issues,
|
|
[viewId],
|
|
response.map((issue) => issue.id)
|
|
);
|
|
this.loader = undefined;
|
|
});
|
|
|
|
this.rootIssueStore.issues.addIssue(response);
|
|
|
|
return response;
|
|
} catch (error) {
|
|
console.error(error);
|
|
this.loader = undefined;
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
createIssue = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: Partial<TIssue>,
|
|
viewId: string | undefined = undefined
|
|
) => {
|
|
try {
|
|
if (!viewId) throw new Error("View id is required");
|
|
|
|
const response = await this.issueService.createIssue(workspaceSlug, projectId, data);
|
|
|
|
runInAction(() => {
|
|
this.issues[viewId].push(response.id);
|
|
});
|
|
|
|
this.rootStore.issues.addIssue([response]);
|
|
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
updateIssue = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
data: Partial<TIssue>,
|
|
viewId: string | undefined = undefined
|
|
) => {
|
|
try {
|
|
if (!viewId) throw new Error("View id is required");
|
|
|
|
this.rootStore.issues.updateIssue(issueId, data);
|
|
const response = await this.issueService.patchIssue(workspaceSlug, projectId, issueId, data);
|
|
return response;
|
|
} catch (error) {
|
|
if (viewId) this.fetchIssues(workspaceSlug, viewId, "mutation");
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
removeIssue = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
viewId: string | undefined = undefined
|
|
) => {
|
|
try {
|
|
if (!viewId) throw new Error("View id is required");
|
|
|
|
const response = await this.issueService.deleteIssue(workspaceSlug, projectId, issueId);
|
|
|
|
const issueIndex = this.issues[viewId].findIndex((_issueId) => _issueId === issueId);
|
|
if (issueIndex >= 0)
|
|
runInAction(() => {
|
|
this.issues[viewId].splice(issueIndex, 1);
|
|
});
|
|
|
|
this.rootStore.issues.removeIssue(issueId);
|
|
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
}
|