forked from github/plane
a17b08dd15
* fix: Implemented new workflow in the issue store and updated the quick add workflow in list layout * fix: initial load and mutaion of issues in list layout * dev: implemented the new project issues store with grouped, subGrouped and unGrouped issue computed functions * dev: default display properties data made as a function * conflict: merge conflict resolved * dev: implemented quick add logic in kanban * chore: implemented quick add logic in calendar and spreadsheet layout * fix: spreadsheet layout quick add fix * dev: optimised the issues workflow and handled the issues order_by filter * dev: project issue CRUD operations in new issue store architecture * dev: issues filtering in calendar layout * fix: build error * dev/issue_filters_store * chore: updated filters computed structure * conflict: merge conflicts resolved in project issues * dev: implemented gantt chart for project issues using the new mobx store * dev: initialized cycle and module issue filters store * dev: issue store and list layout store updates * dev: quick add and update, delete issue in the list * refactor list root changes * dev: store new structure * refactor spreadsheet and gnatt project roots * fix errors for base gantt and spreadsheet roots * connect Calendar project view * minor house keeping * connect Kanban View to th enew store * generalise base calendar issue actions * dev: store project issues and issue filters * dev: store project issues and filters * dev: updated undefined with displayFilters in project issue store * Add Quick add to all the layouts * connect module views to store * dev: Rendering list issues in project issues * dev: removed console log * dev: module filters store * fix errors and connect modules list and quick add for list * dev: module issue store * dev: modle filter store issue fixed and updates cycle issue filters * minor house keeping changes * dev: cycle issues and cycle filters * connecty cycles to teh store * dev: project view issues and issue filtrs * connect project views * dev: updated applied filters in layouts * dev: replaced project id with view id in project views * dev: in cycle and module store made cycledId and moduleId as optional * fix minor issues and build errots * dev: project draft and archived issues store and filters --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: rahulramesha <rahulramesham@gmail.com>
324 lines
10 KiB
TypeScript
324 lines
10 KiB
TypeScript
import { observable, action, computed, makeObservable, runInAction, autorun } from "mobx";
|
|
// store
|
|
import { RootStore } from "../root";
|
|
// types
|
|
import { IIssue } from "types";
|
|
// services
|
|
import { IssueService } from "services/issue";
|
|
import { IBlockUpdateData } from "components/gantt-chart";
|
|
|
|
export type IIssueType = "grouped" | "groupWithSubGroups" | "ungrouped";
|
|
export type IIssueGroupedStructure = { [group_id: string]: IIssue[] };
|
|
export type IIssueGroupWithSubGroupsStructure = {
|
|
[group_id: string]: {
|
|
[sub_group_id: string]: IIssue[];
|
|
};
|
|
};
|
|
export type IIssueUnGroupedStructure = IIssue[];
|
|
|
|
export interface IIssueStore {
|
|
loader: "initial-load" | "mutation" | null;
|
|
error: any | null;
|
|
|
|
// issues
|
|
issues: {
|
|
[project_id: string]: {
|
|
grouped: IIssueGroupedStructure;
|
|
groupWithSubGroups: IIssueGroupWithSubGroupsStructure;
|
|
ungrouped: IIssueUnGroupedStructure;
|
|
};
|
|
};
|
|
// computed
|
|
getIssueType: IIssueType | null;
|
|
getIssues: IIssueGroupedStructure | IIssueGroupWithSubGroupsStructure | IIssueUnGroupedStructure | null;
|
|
getIssuesCount: number;
|
|
// action
|
|
fetchIssues: (workspaceSlug: string, projectId: string, loadType?: "initial-load" | "mutation") => Promise<any>;
|
|
updateIssueStructure: (group_id: string | null, sub_group_id: string | null, issue: IIssue) => void;
|
|
removeIssueFromStructure: (group_id: string | null, sub_group_id: string | null, issue: IIssue) => void;
|
|
updateGanttIssueStructure: (workspaceSlug: string, issue: IIssue, payload: IBlockUpdateData) => void;
|
|
}
|
|
|
|
export class IssueStore implements IIssueStore {
|
|
loader: "initial-load" | "mutation" | null = null;
|
|
error: any | null = null;
|
|
issues: {
|
|
[project_id: string]: {
|
|
grouped: {
|
|
[group_id: string]: IIssue[];
|
|
};
|
|
groupWithSubGroups: {
|
|
[group_id: string]: {
|
|
[sub_group_id: string]: IIssue[];
|
|
};
|
|
};
|
|
ungrouped: IIssue[];
|
|
};
|
|
} = {};
|
|
// service
|
|
issueService;
|
|
rootStore;
|
|
|
|
constructor(_rootStore: RootStore) {
|
|
makeObservable(this, {
|
|
// observable
|
|
loader: observable.ref,
|
|
error: observable.ref,
|
|
issues: observable.ref,
|
|
// computed
|
|
getIssueType: computed,
|
|
getIssues: computed,
|
|
getIssuesCount: computed,
|
|
// actions
|
|
fetchIssues: action,
|
|
updateIssueStructure: action,
|
|
removeIssueFromStructure: action,
|
|
updateGanttIssueStructure: action,
|
|
});
|
|
|
|
this.rootStore = _rootStore;
|
|
this.issueService = new IssueService();
|
|
|
|
autorun(() => {
|
|
const workspaceSlug = this.rootStore.workspace.workspaceSlug;
|
|
const projectId = this.rootStore.project.projectId;
|
|
if (
|
|
workspaceSlug &&
|
|
projectId &&
|
|
this.rootStore.issueFilter.userFilters &&
|
|
this.rootStore.issueFilter.userDisplayFilters
|
|
)
|
|
this.fetchIssues(workspaceSlug, projectId, "mutation");
|
|
});
|
|
}
|
|
|
|
get getIssueType() {
|
|
const groupedLayouts = ["kanban", "list", "calendar"];
|
|
const ungroupedLayouts = ["spreadsheet", "gantt_chart"];
|
|
|
|
const issueLayout = this.rootStore?.issueFilter?.userDisplayFilters?.layout || null;
|
|
const issueGroup = this.rootStore?.issueFilter?.userDisplayFilters?.group_by || null;
|
|
const issueSubGroup = this.rootStore?.issueFilter?.userDisplayFilters?.sub_group_by || null;
|
|
if (!issueLayout) return null;
|
|
|
|
const _issueState = groupedLayouts.includes(issueLayout)
|
|
? issueGroup
|
|
? issueSubGroup
|
|
? "groupWithSubGroups"
|
|
: "grouped"
|
|
: "ungrouped"
|
|
: ungroupedLayouts.includes(issueLayout)
|
|
? "ungrouped"
|
|
: null;
|
|
|
|
return _issueState || null;
|
|
}
|
|
|
|
get getIssues() {
|
|
const projectId: string | null = this.rootStore?.project?.projectId;
|
|
const issueType = this.getIssueType;
|
|
if (!projectId || !issueType) return null;
|
|
|
|
return this.issues?.[projectId]?.[issueType] || null;
|
|
}
|
|
|
|
get getIssuesCount() {
|
|
const issueType = this.getIssueType;
|
|
|
|
let issuesCount = 0;
|
|
|
|
if (issueType === "grouped") {
|
|
const issues = this.getIssues as IIssueGroupedStructure;
|
|
|
|
if (!issues) return 0;
|
|
|
|
Object.keys(issues).map((group_id) => {
|
|
issuesCount += issues[group_id].length;
|
|
});
|
|
}
|
|
|
|
if (issueType === "groupWithSubGroups") {
|
|
const issues = this.getIssues as IIssueGroupWithSubGroupsStructure;
|
|
|
|
if (!issues) return 0;
|
|
|
|
Object.keys(issues).map((sub_group_id) => {
|
|
Object.keys(issues[sub_group_id]).map((group_id) => {
|
|
issuesCount += issues[sub_group_id][group_id].length;
|
|
});
|
|
});
|
|
}
|
|
|
|
if (issueType === "ungrouped") {
|
|
const issues = this.getIssues as IIssueUnGroupedStructure;
|
|
|
|
if (!issues) return 0;
|
|
|
|
issuesCount = issues.length;
|
|
}
|
|
|
|
return issuesCount;
|
|
}
|
|
|
|
updateIssueStructure = async (group_id: string | null, sub_group_id: string | null, issue: IIssue) => {
|
|
const projectId: string | null = issue?.project;
|
|
const issueType = this.getIssueType;
|
|
if (!projectId || !issueType) return null;
|
|
|
|
let issues: IIssueGroupedStructure | IIssueGroupWithSubGroupsStructure | IIssueUnGroupedStructure | null =
|
|
this.getIssues;
|
|
if (!issues) return null;
|
|
|
|
if (issueType === "grouped" && group_id) {
|
|
issues = issues as IIssueGroupedStructure;
|
|
const _currentIssueId = issues?.[group_id]?.find((_i) => _i?.id === issue.id);
|
|
issues = {
|
|
...issues,
|
|
[group_id]: _currentIssueId
|
|
? issues[group_id]?.map((i: IIssue) => (i?.id === issue?.id ? { ...i, ...issue } : i))
|
|
: [...(issues?.[group_id] ?? []), issue],
|
|
};
|
|
}
|
|
if (issueType === "groupWithSubGroups" && group_id && sub_group_id) {
|
|
issues = issues as IIssueGroupWithSubGroupsStructure;
|
|
const _currentIssueId = issues?.[sub_group_id]?.[group_id]?.find((_i) => _i?.id === issue.id);
|
|
issues = {
|
|
...issues,
|
|
[sub_group_id]: {
|
|
...issues[sub_group_id],
|
|
[group_id]: _currentIssueId
|
|
? issues?.[sub_group_id]?.[group_id]?.map((i: IIssue) => (i?.id === issue?.id ? { ...i, ...issue } : i))
|
|
: [...(issues?.[sub_group_id]?.[group_id] ?? []), issue],
|
|
},
|
|
};
|
|
}
|
|
if (issueType === "ungrouped") {
|
|
issues = issues as IIssueUnGroupedStructure;
|
|
const _currentIssueId = issues?.find((_i) => _i?.id === issue.id);
|
|
issues = _currentIssueId
|
|
? issues?.map((i: IIssue) => (i?.id === issue?.id ? { ...i, ...issue } : i))
|
|
: [...(issues ?? []), issue];
|
|
}
|
|
|
|
runInAction(() => {
|
|
this.issues = { ...this.issues, [projectId]: { ...this.issues[projectId], [issueType]: issues } };
|
|
});
|
|
};
|
|
|
|
removeIssueFromStructure = (group_id: string | null, sub_group_id: string | null, issue: IIssue) => {
|
|
const projectId: string | null = issue?.project;
|
|
const issueType = this.getIssueType;
|
|
if (!projectId || !issueType) return null;
|
|
|
|
let issues: IIssueGroupedStructure | IIssueGroupWithSubGroupsStructure | IIssueUnGroupedStructure | null =
|
|
this.getIssues;
|
|
if (!issues) return null;
|
|
|
|
if (issueType === "grouped" && group_id) {
|
|
issues = issues as IIssueGroupedStructure;
|
|
issues = {
|
|
...issues,
|
|
[group_id]: (issues[group_id] ?? []).filter((i) => i?.id !== issue?.id),
|
|
};
|
|
}
|
|
if (issueType === "groupWithSubGroups" && group_id && sub_group_id) {
|
|
issues = issues as IIssueGroupWithSubGroupsStructure;
|
|
issues = {
|
|
...issues,
|
|
[sub_group_id]: {
|
|
...issues[sub_group_id],
|
|
[group_id]: (issues[sub_group_id]?.[group_id] ?? []).filter((i) => i?.id !== issue?.id),
|
|
},
|
|
};
|
|
}
|
|
if (issueType === "ungrouped") {
|
|
issues = issues as IIssueUnGroupedStructure;
|
|
issues = issues.filter((i) => i?.id !== issue?.id);
|
|
}
|
|
|
|
runInAction(() => {
|
|
this.issues = { ...this.issues, [projectId]: { ...this.issues[projectId], [issueType]: issues } };
|
|
});
|
|
};
|
|
|
|
updateGanttIssueStructure = async (workspaceSlug: string, issue: IIssue, payload: IBlockUpdateData) => {
|
|
if (!issue || !workspaceSlug || !this.getIssues) return;
|
|
|
|
const issues = this.getIssues as IIssueUnGroupedStructure;
|
|
|
|
const newIssues = issues.map((i) => ({
|
|
...i,
|
|
...(i.id === issue.id
|
|
? {
|
|
...issue,
|
|
sort_order: payload.sort_order?.newSortOrder ?? i.sort_order,
|
|
start_date: payload.start_date ?? i.start_date,
|
|
target_date: payload.target_date ?? i.target_date,
|
|
}
|
|
: {}),
|
|
}));
|
|
|
|
if (payload.sort_order) {
|
|
const removedElement = newIssues.splice(payload.sort_order.sourceIndex, 1)[0];
|
|
removedElement.sort_order = payload.sort_order.newSortOrder;
|
|
newIssues.splice(payload.sort_order.destinationIndex, 0, removedElement);
|
|
}
|
|
|
|
runInAction(() => {
|
|
this.issues = {
|
|
...this.issues,
|
|
[issue.project]: {
|
|
...this.issues[issue.project],
|
|
ungrouped: newIssues,
|
|
},
|
|
};
|
|
});
|
|
|
|
const newPayload: any = { ...issue, ...payload };
|
|
|
|
if (newPayload.sort_order && payload.sort_order) newPayload.sort_order = payload.sort_order.newSortOrder;
|
|
|
|
this.rootStore.issueDetail.updateIssue(workspaceSlug, issue.project, issue.id, newPayload);
|
|
};
|
|
|
|
fetchIssues = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
loadType: "initial-load" | "mutation" = "initial-load"
|
|
) => {
|
|
try {
|
|
this.loader = loadType;
|
|
this.error = null;
|
|
|
|
this.rootStore.workspace.setWorkspaceSlug(workspaceSlug);
|
|
this.rootStore.project.setProjectId(projectId);
|
|
|
|
const params = this.rootStore?.issueFilter?.appliedFilters;
|
|
const issueResponse = await this.issueService.getIssuesWithParams(workspaceSlug, projectId, params);
|
|
|
|
const issueType = this.getIssueType;
|
|
if (issueType != null) {
|
|
const _issues = {
|
|
...this.issues,
|
|
[projectId]: {
|
|
...this.issues[projectId],
|
|
[issueType]: issueResponse,
|
|
},
|
|
};
|
|
runInAction(() => {
|
|
this.issues = _issues;
|
|
this.loader = null;
|
|
this.error = null;
|
|
});
|
|
}
|
|
|
|
return issueResponse;
|
|
} catch (error) {
|
|
console.error("Error: Fetching error in issues", error);
|
|
this.loader = null;
|
|
this.error = error;
|
|
return error;
|
|
}
|
|
};
|
|
}
|