forked from github/plane
d6abb87a3a
* 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>
153 lines
5.1 KiB
TypeScript
153 lines
5.1 KiB
TypeScript
import _ from "lodash";
|
|
// types
|
|
import { IIssue, TIssueGroupByOptions, TIssueOrderByOptions } from "types";
|
|
import { RootStore } from "store/root";
|
|
import { IIssueResponse } from "../types";
|
|
// constants
|
|
import { ISSUE_PRIORITIES, ISSUE_STATE_GROUPS } from "constants/issue";
|
|
// helpers
|
|
import { renderDateFormat } from "helpers/date-time.helper";
|
|
|
|
export interface IIssueBaseStore {
|
|
groupedIssues(
|
|
groupBy: TIssueGroupByOptions,
|
|
orderBy: TIssueOrderByOptions,
|
|
issues: IIssueResponse,
|
|
isCalendarIssues?: boolean
|
|
): { [group_id: string]: string[] };
|
|
subGroupedIssues(
|
|
subGroupBy: TIssueGroupByOptions,
|
|
groupBy: TIssueGroupByOptions,
|
|
orderBy: TIssueOrderByOptions,
|
|
issues: IIssueResponse
|
|
): { [sub_group_id: string]: { [group_id: string]: string[] } };
|
|
unGroupedIssues(orderBy: TIssueOrderByOptions, issues: IIssueResponse): string[];
|
|
issueDisplayFiltersDefaultData(groupBy: string | null): string[];
|
|
issuesSortWithOrderBy(issueObject: IIssueResponse, key: Partial<TIssueOrderByOptions>): IIssue[];
|
|
getGroupArray(value: string[] | string | null, isDate?: boolean): string[];
|
|
}
|
|
|
|
export class IssueBaseStore implements IIssueBaseStore {
|
|
// root store
|
|
rootStore;
|
|
|
|
constructor(_rootStore: RootStore) {
|
|
this.rootStore = _rootStore;
|
|
}
|
|
|
|
groupedIssues = (
|
|
groupBy: TIssueGroupByOptions,
|
|
orderBy: TIssueOrderByOptions,
|
|
issues: IIssueResponse,
|
|
isCalendarIssues: boolean = false
|
|
) => {
|
|
const _issues: { [group_id: string]: string[] } = {};
|
|
|
|
this.issueDisplayFiltersDefaultData(groupBy).forEach((group) => {
|
|
_issues[group] = [];
|
|
});
|
|
|
|
const projectIssues = this.issuesSortWithOrderBy(issues, orderBy);
|
|
|
|
for (const issue in projectIssues) {
|
|
const _issue = projectIssues[issue];
|
|
const groupArray = this.getGroupArray(_.get(_issue, groupBy as keyof IIssue), isCalendarIssues);
|
|
|
|
for (const group of groupArray) {
|
|
if (group && _issues[group]) _issues[group].push(_issue.id);
|
|
else if (group) _issues[group] = [_issue.id];
|
|
}
|
|
}
|
|
|
|
return _issues;
|
|
};
|
|
|
|
subGroupedIssues = (
|
|
subGroupBy: TIssueGroupByOptions,
|
|
groupBy: TIssueGroupByOptions,
|
|
orderBy: TIssueOrderByOptions,
|
|
issues: IIssueResponse
|
|
) => {
|
|
const _issues: { [sub_group_id: string]: { [group_id: string]: string[] } } = {};
|
|
|
|
this.issueDisplayFiltersDefaultData(subGroupBy).forEach((sub_group: any) => {
|
|
const groupByIssues: { [group_id: string]: string[] } = {};
|
|
this.issueDisplayFiltersDefaultData(groupBy).forEach((group) => {
|
|
groupByIssues[group] = [];
|
|
});
|
|
_issues[sub_group] = groupByIssues;
|
|
});
|
|
|
|
const projectIssues = this.issuesSortWithOrderBy(issues, orderBy);
|
|
|
|
for (const issue in projectIssues) {
|
|
const _issue = projectIssues[issue];
|
|
const subGroupArray = this.getGroupArray(_.get(_issue, subGroupBy as keyof IIssue));
|
|
const groupArray = this.getGroupArray(_.get(_issue, groupBy as keyof IIssue));
|
|
|
|
for (const subGroup of subGroupArray) {
|
|
for (const group of groupArray) {
|
|
if (subGroup && group && issues[subGroup]) {
|
|
_issues[subGroup][group].push(_issue.id);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return _issues;
|
|
};
|
|
|
|
unGroupedIssues = (orderBy: TIssueOrderByOptions, issues: IIssueResponse) =>
|
|
this.issuesSortWithOrderBy(issues, orderBy).map((issue) => issue.id);
|
|
|
|
issueDisplayFiltersDefaultData = (groupBy: string | null): string[] => {
|
|
switch (groupBy) {
|
|
case "state":
|
|
return this.rootStore?.projectState.projectStateIds();
|
|
case "state_detail.group":
|
|
return ISSUE_STATE_GROUPS.map((i) => i.key);
|
|
case "priority":
|
|
return ISSUE_PRIORITIES.map((i) => i.key);
|
|
case "labels":
|
|
return this.rootStore?.projectLabel?.projectLabelIds(true);
|
|
case "created_by":
|
|
return this.rootStore?.projectMember?.projectMemberIds(true);
|
|
case "assignees":
|
|
return this.rootStore?.projectMember?.projectMemberIds(true);
|
|
case "project":
|
|
return this.rootStore?.project?.workspaceProjectIds();
|
|
default:
|
|
return [];
|
|
}
|
|
};
|
|
|
|
issuesSortWithOrderBy = (issueObject: IIssueResponse, key: Partial<TIssueOrderByOptions>): IIssue[] => {
|
|
let array = _.values(issueObject);
|
|
array = _.sortBy(array, "created_at");
|
|
switch (key) {
|
|
case "sort_order":
|
|
return _.sortBy(array, "sort_order");
|
|
case "-created_at":
|
|
return _.reverse(_.sortBy(array, "created_at"));
|
|
case "-updated_at":
|
|
return _.reverse(_.sortBy(array, "updated_at"));
|
|
case "start_date":
|
|
return _.sortBy(array, "start_date");
|
|
case "target_date":
|
|
return _.sortBy(array, "target_date");
|
|
case "priority": {
|
|
const sortArray = ISSUE_PRIORITIES.map((i) => i.key);
|
|
return _.sortBy(array, (_issue: IIssue) => _.indexOf(sortArray, _issue.priority));
|
|
}
|
|
default:
|
|
return array;
|
|
}
|
|
};
|
|
|
|
getGroupArray(value: string[] | string | null, isDate: boolean = false) {
|
|
if (Array.isArray(value)) return value;
|
|
else if (isDate) return [renderDateFormat(value) || "None"];
|
|
else return [value || "None"];
|
|
}
|
|
}
|