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: TUnGroupedIssues | undefined; // actions fetchIssues: (workspaceSlug: string, viewId: string, loadType: TLoader) => Promise; createIssue: ( workspaceSlug: string, projectId: string, data: Partial, viewId?: string | undefined ) => Promise; updateIssue: ( workspaceSlug: string, projectId: string, issueId: string, data: Partial, viewId?: string | undefined ) => Promise; removeIssue: ( workspaceSlug: string, projectId: string, issueId: string, viewId?: string | undefined ) => Promise; } 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.ref, // 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 undefined; const displayFilters = this.rootIssueStore?.workspaceIssuesFilter?.issueFilters?.displayFilters; if (!displayFilters) return undefined; const orderBy = displayFilters?.order_by; const viewIssueIds = this.issues[viewId] ?? []; const _issues = this.rootStore.issues.getIssuesByIds(viewIssueIds); if (!_issues) return undefined; let issues: TIssue | TUnGroupedIssues | undefined = undefined; issues = this.unGroupedIssues(orderBy ?? "-created_at", _issues); return issues; } fetchIssues = async (workspaceSlug: string, viewId: string, loadType: TLoader = "init-loader") => { try { this.loader = loadType; const params = this.rootIssueStore?.workspaceIssuesFilter?.appliedFilters; 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, 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, 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; } }; }