mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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>
256 lines
7.8 KiB
TypeScript
256 lines
7.8 KiB
TypeScript
import { observable, action, makeObservable, runInAction, computed } from "mobx";
|
|
// types
|
|
import { RootStore } from "../root";
|
|
import { IIssueLabel, IIssueLabelTree } from "types";
|
|
// services
|
|
import { IssueLabelService } from "services/issue";
|
|
import { ProjectService } from "services/project";
|
|
import { buildTree } from "helpers/array.helper";
|
|
|
|
export interface IProjectLabelStore {
|
|
loader: boolean;
|
|
error: any | null;
|
|
labels: {
|
|
[projectId: string]: IIssueLabel[] | null; // project_id: labels
|
|
} | null;
|
|
// computed
|
|
projectLabels: IIssueLabel[] | null;
|
|
projectLabelsTree: IIssueLabelTree[] | null;
|
|
projectLabelIds: (isLayoutRender?: boolean) => string[];
|
|
// actions
|
|
getProjectLabelById: (labelId: string) => IIssueLabel | null;
|
|
fetchProjectLabels: (workspaceSlug: string, projectId: string) => Promise<void>;
|
|
createLabel: (workspaceSlug: string, projectId: string, data: Partial<IIssueLabel>) => Promise<IIssueLabel>;
|
|
updateLabel: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
labelId: string,
|
|
data: Partial<IIssueLabel>
|
|
) => Promise<IIssueLabel>;
|
|
updateLabelPosition: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
labelId: string,
|
|
parentId: string | null | undefined,
|
|
index: number,
|
|
isSameParent: boolean,
|
|
prevIndex: number | undefined
|
|
) => Promise<IIssueLabel>;
|
|
deleteLabel: (workspaceSlug: string, projectId: string, labelId: string) => Promise<void>;
|
|
}
|
|
|
|
export class ProjectLabelStore implements IProjectLabelStore {
|
|
loader: boolean = false;
|
|
error: any | null = null;
|
|
labels: {
|
|
[projectId: string]: IIssueLabel[]; // projectId: labels
|
|
} | null = {};
|
|
// root store
|
|
rootStore;
|
|
// service
|
|
projectService;
|
|
issueLabelService;
|
|
|
|
constructor(_rootStore: RootStore) {
|
|
makeObservable(this, {
|
|
// observable
|
|
loader: observable.ref,
|
|
error: observable.ref,
|
|
labels: observable.ref,
|
|
// computed
|
|
projectLabels: computed,
|
|
projectLabelsTree: computed,
|
|
// actions
|
|
getProjectLabelById: action,
|
|
fetchProjectLabels: action,
|
|
createLabel: action,
|
|
updateLabel: action,
|
|
updateLabelPosition: action,
|
|
deleteLabel: action,
|
|
});
|
|
|
|
this.rootStore = _rootStore;
|
|
this.projectService = new ProjectService();
|
|
this.issueLabelService = new IssueLabelService();
|
|
}
|
|
|
|
get projectLabels() {
|
|
if (!this.rootStore.project.projectId) return null;
|
|
return this.labels?.[this.rootStore.project.projectId]?.sort((a, b) => a.name.localeCompare(b.name)) || null;
|
|
}
|
|
|
|
get projectLabelsTree() {
|
|
if (!this.rootStore.project.projectId) return null;
|
|
const currentProjectLabels = this.labels?.[this.rootStore.project.projectId];
|
|
if (!currentProjectLabels) return null;
|
|
|
|
currentProjectLabels.sort((labelA: IIssueLabel, labelB: IIssueLabel) => labelB.sort_order - labelA.sort_order);
|
|
return buildTree(currentProjectLabels);
|
|
}
|
|
|
|
getProjectLabelById = (labelId: string) => {
|
|
if (!this.rootStore.project.projectId) return null;
|
|
const labels = this.projectLabels;
|
|
if (!labels) return null;
|
|
const labelInfo: IIssueLabel | null = labels.find((label) => label.id === labelId) || null;
|
|
return labelInfo;
|
|
};
|
|
|
|
projectLabelIds = (isLayoutRender: boolean = false) => {
|
|
if (!this.projectLabels) return [];
|
|
let labelIds = (this.projectLabels ?? []).map((label) => label.id);
|
|
labelIds = isLayoutRender ? [...labelIds, "None"] : labelIds;
|
|
return labelIds;
|
|
};
|
|
|
|
fetchProjectLabels = async (workspaceSlug: string, projectId: string) => {
|
|
try {
|
|
this.loader = true;
|
|
this.error = null;
|
|
|
|
const labelResponse = await this.issueLabelService.getProjectIssueLabels(workspaceSlug, projectId);
|
|
|
|
runInAction(() => {
|
|
this.labels = {
|
|
...this.labels,
|
|
[projectId]: labelResponse,
|
|
};
|
|
this.loader = false;
|
|
this.error = null;
|
|
});
|
|
} catch (error) {
|
|
console.error(error);
|
|
this.loader = false;
|
|
this.error = error;
|
|
}
|
|
};
|
|
|
|
createLabel = async (workspaceSlug: string, projectId: string, data: Partial<IIssueLabel>) => {
|
|
try {
|
|
const response = await this.issueLabelService.createIssueLabel(workspaceSlug, projectId, data);
|
|
|
|
runInAction(() => {
|
|
this.labels = {
|
|
...this.labels,
|
|
[projectId]: [response, ...(this.labels?.[projectId] || [])],
|
|
};
|
|
});
|
|
|
|
return response;
|
|
} catch (error) {
|
|
console.log("Failed to create label from project store");
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
updateLabelPosition = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
labelId: string,
|
|
parentId: string | null | undefined,
|
|
index: number,
|
|
isSameParent: boolean,
|
|
prevIndex: number | undefined
|
|
) => {
|
|
const labels = this.labels;
|
|
const currLabel = labels?.[projectId]?.find((label) => label.id === labelId);
|
|
const labelTree = this.projectLabelsTree;
|
|
|
|
let currentArray: IIssueLabel[];
|
|
|
|
if (!currLabel || !labelTree) return;
|
|
|
|
const data: Partial<IIssueLabel> = { parent: parentId };
|
|
//find array in which the label is to be added
|
|
if (!parentId) currentArray = labelTree;
|
|
else currentArray = labelTree?.find((label) => label.id === parentId)?.children || [];
|
|
|
|
//Add the array at the destination
|
|
if (isSameParent && prevIndex !== undefined) currentArray.splice(prevIndex, 1);
|
|
|
|
currentArray.splice(index, 0, currLabel);
|
|
|
|
//if currently adding to a new array, then let backend assign a sort order
|
|
if (currentArray.length > 1) {
|
|
let prevSortOrder: number | undefined, nextSortOrder: number | undefined;
|
|
|
|
if (typeof currentArray[index - 1] !== "undefined") {
|
|
prevSortOrder = currentArray[index - 1].sort_order;
|
|
}
|
|
|
|
if (typeof currentArray[index + 1] !== "undefined") {
|
|
nextSortOrder = currentArray[index + 1].sort_order;
|
|
}
|
|
|
|
let sortOrder: number;
|
|
|
|
//based on the next and previous labels calculate current sort order
|
|
if (prevSortOrder && nextSortOrder) {
|
|
sortOrder = (prevSortOrder + nextSortOrder) / 2;
|
|
} else if (nextSortOrder) {
|
|
sortOrder = nextSortOrder + 10000;
|
|
} else {
|
|
sortOrder = prevSortOrder! / 2;
|
|
}
|
|
|
|
data.sort_order = sortOrder;
|
|
}
|
|
|
|
return this.updateLabel(workspaceSlug, projectId, labelId, data);
|
|
};
|
|
|
|
updateLabel = async (workspaceSlug: string, projectId: string, labelId: string, data: Partial<IIssueLabel>) => {
|
|
const originalLabel = this.getProjectLabelById(labelId);
|
|
|
|
runInAction(() => {
|
|
this.labels = {
|
|
...this.labels,
|
|
[projectId]:
|
|
this.labels?.[projectId]?.map((label) => (label.id === labelId ? { ...label, ...data } : label)) || [],
|
|
};
|
|
});
|
|
|
|
try {
|
|
const response = await this.issueLabelService.patchIssueLabel(workspaceSlug, projectId, labelId, data);
|
|
|
|
return response;
|
|
} catch (error) {
|
|
console.log("Failed to update label from project store");
|
|
runInAction(() => {
|
|
this.labels = {
|
|
...this.labels,
|
|
[projectId]: (this.labels?.[projectId] || [])?.map((label) =>
|
|
label.id === labelId ? { ...label, ...originalLabel } : label
|
|
),
|
|
};
|
|
});
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
deleteLabel = async (workspaceSlug: string, projectId: string, labelId: string) => {
|
|
const originalLabelList = this.projectLabels;
|
|
|
|
runInAction(() => {
|
|
this.labels = {
|
|
...this.labels,
|
|
[projectId]: (this.labels?.[projectId] || [])?.filter((label) => label.id !== labelId),
|
|
};
|
|
});
|
|
|
|
try {
|
|
// deleting using api
|
|
await this.issueLabelService.deleteIssueLabel(workspaceSlug, projectId, labelId);
|
|
} catch (error) {
|
|
console.log("Failed to delete label from project store");
|
|
// reverting back to original label list
|
|
runInAction(() => {
|
|
this.labels = {
|
|
...this.labels,
|
|
[projectId]: originalLabelList || [],
|
|
};
|
|
});
|
|
}
|
|
};
|
|
}
|