mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
6a16a98b03
* fix: handled undefined issue_id in list layout * chore: refactor peek overview and user role validation. * chore: sub issues * fix: sub issues state distribution changed * chore: sub_issues implementation in issue detail page * chore: fixes in cycle/ module layout. * Fix progress chart * Module issues's update/ delete. * Peek Overview for Modules/ Cycle. * Fix Cycle Filters not applying bug. --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
244 lines
7.8 KiB
TypeScript
244 lines
7.8 KiB
TypeScript
import { action, makeObservable, observable, runInAction } from "mobx";
|
|
import set from "lodash/set";
|
|
import concat from "lodash/concat";
|
|
import update from "lodash/update";
|
|
import pull from "lodash/pull";
|
|
// services
|
|
import { IssueService } from "services/issue";
|
|
// types
|
|
import { IIssueDetail } from "./root.store";
|
|
import {
|
|
TIssue,
|
|
TIssueSubIssues,
|
|
TIssueSubIssuesStateDistributionMap,
|
|
TIssueSubIssuesIdMap,
|
|
TSubIssuesStateDistribution,
|
|
} from "@plane/types";
|
|
|
|
export interface IIssueSubIssuesStoreActions {
|
|
fetchSubIssues: (workspaceSlug: string, projectId: string, parentIssueId: string) => Promise<TIssueSubIssues>;
|
|
createSubIssues: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
parentIssueId: string,
|
|
issueIds: string[]
|
|
) => Promise<void>;
|
|
updateSubIssue: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
parentIssueId: string,
|
|
issueId: string,
|
|
currentIssue: Partial<TIssue>,
|
|
oldIssue?: Partial<TIssue> | undefined,
|
|
fromModal?: boolean
|
|
) => Promise<void>;
|
|
removeSubIssue: (workspaceSlug: string, projectId: string, parentIssueId: string, issueId: string) => Promise<void>;
|
|
deleteSubIssue: (workspaceSlug: string, projectId: string, parentIssueId: string, issueId: string) => Promise<void>;
|
|
}
|
|
|
|
type TSubIssueHelpersKeys = "issue_visibility" | "preview_loader" | "issue_loader";
|
|
type TSubIssueHelpers = Record<TSubIssueHelpersKeys, string[]>;
|
|
export interface IIssueSubIssuesStore extends IIssueSubIssuesStoreActions {
|
|
// observables
|
|
subIssuesStateDistribution: TIssueSubIssuesStateDistributionMap;
|
|
subIssues: TIssueSubIssuesIdMap;
|
|
subIssueHelpers: Record<string, TSubIssueHelpers>; // parent_issue_id -> TSubIssueHelpers
|
|
// helper methods
|
|
stateDistributionByIssueId: (issueId: string) => TSubIssuesStateDistribution | undefined;
|
|
subIssuesByIssueId: (issueId: string) => string[] | undefined;
|
|
subIssueHelpersByIssueId: (issueId: string) => TSubIssueHelpers;
|
|
// actions
|
|
setSubIssueHelpers: (parentIssueId: string, key: TSubIssueHelpersKeys, value: string) => void;
|
|
}
|
|
|
|
export class IssueSubIssuesStore implements IIssueSubIssuesStore {
|
|
// observables
|
|
subIssuesStateDistribution: TIssueSubIssuesStateDistributionMap = {};
|
|
subIssues: TIssueSubIssuesIdMap = {};
|
|
subIssueHelpers: Record<string, TSubIssueHelpers> = {};
|
|
// root store
|
|
rootIssueDetailStore: IIssueDetail;
|
|
// services
|
|
issueService;
|
|
|
|
constructor(rootStore: IIssueDetail) {
|
|
makeObservable(this, {
|
|
// observables
|
|
subIssuesStateDistribution: observable,
|
|
subIssues: observable,
|
|
subIssueHelpers: observable,
|
|
// actions
|
|
setSubIssueHelpers: action,
|
|
fetchSubIssues: action,
|
|
createSubIssues: action,
|
|
updateSubIssue: action,
|
|
removeSubIssue: action,
|
|
deleteSubIssue: action,
|
|
});
|
|
// root store
|
|
this.rootIssueDetailStore = rootStore;
|
|
// services
|
|
this.issueService = new IssueService();
|
|
}
|
|
|
|
// helper methods
|
|
stateDistributionByIssueId = (issueId: string) => {
|
|
if (!issueId) return undefined;
|
|
return this.subIssuesStateDistribution[issueId] ?? undefined;
|
|
};
|
|
|
|
subIssuesByIssueId = (issueId: string) => {
|
|
if (!issueId) return undefined;
|
|
return this.subIssues[issueId] ?? undefined;
|
|
};
|
|
|
|
subIssueHelpersByIssueId = (issueId: string) => ({
|
|
preview_loader: this.subIssueHelpers?.[issueId]?.preview_loader || [],
|
|
issue_visibility: this.subIssueHelpers?.[issueId]?.issue_visibility || [],
|
|
issue_loader: this.subIssueHelpers?.[issueId]?.issue_loader || [],
|
|
});
|
|
|
|
// actions
|
|
setSubIssueHelpers = (parentIssueId: string, key: TSubIssueHelpersKeys, value: string) => {
|
|
if (!parentIssueId || !key || !value) return;
|
|
|
|
update(this.subIssueHelpers, [parentIssueId, key], (subIssueHelpers: string[]) => {
|
|
if (!subIssueHelpers || subIssueHelpers.length <= 0) return [value];
|
|
else if (subIssueHelpers.includes(value)) pull(subIssueHelpers, value);
|
|
else concat(subIssueHelpers, value);
|
|
return subIssueHelpers;
|
|
});
|
|
};
|
|
|
|
fetchSubIssues = async (workspaceSlug: string, projectId: string, parentIssueId: string) => {
|
|
try {
|
|
const response = await this.issueService.subIssues(workspaceSlug, projectId, parentIssueId);
|
|
const subIssuesStateDistribution = response?.state_distribution ?? {};
|
|
const subIssues = (response.sub_issues ?? []) as TIssue[];
|
|
|
|
this.rootIssueDetailStore.rootIssueStore.issues.addIssue(subIssues);
|
|
|
|
if (subIssues.length > 0) {
|
|
runInAction(() => {
|
|
set(this.subIssuesStateDistribution, parentIssueId, subIssuesStateDistribution);
|
|
set(
|
|
this.subIssues,
|
|
parentIssueId,
|
|
subIssues.map((issue) => issue.id)
|
|
);
|
|
});
|
|
}
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
createSubIssues = async (workspaceSlug: string, projectId: string, parentIssueId: string, issueIds: string[]) => {
|
|
try {
|
|
const response = await this.issueService.addSubIssues(workspaceSlug, projectId, parentIssueId, {
|
|
sub_issue_ids: issueIds,
|
|
});
|
|
|
|
const subIssuesStateDistribution = response?.state_distribution;
|
|
const subIssues = response.sub_issues as TIssue[];
|
|
|
|
runInAction(() => {
|
|
Object.keys(subIssuesStateDistribution).forEach((key) => {
|
|
const stateGroup = key as keyof TSubIssuesStateDistribution;
|
|
update(this.subIssuesStateDistribution, [parentIssueId, stateGroup], (stateDistribution) => {
|
|
if (!stateDistribution) return subIssuesStateDistribution[stateGroup];
|
|
return concat(stateDistribution, subIssuesStateDistribution[stateGroup]);
|
|
});
|
|
});
|
|
|
|
const issueIds = subIssues.map((issue) => issue.id);
|
|
update(this.subIssues, [parentIssueId], (issues) => {
|
|
if (!issues) return issueIds;
|
|
return concat(issues, issueIds);
|
|
});
|
|
});
|
|
|
|
this.rootIssueDetailStore.rootIssueStore.issues.addIssue(subIssues);
|
|
|
|
return;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
updateSubIssue = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
parentIssueId: string,
|
|
issueId: string,
|
|
currentIssue: Partial<TIssue>,
|
|
oldIssue: Partial<TIssue> | undefined = undefined,
|
|
fromModal: boolean = false
|
|
) => {
|
|
try {
|
|
if (!fromModal)
|
|
await this.rootIssueDetailStore.rootIssueStore.projectIssues.updateIssue(
|
|
workspaceSlug,
|
|
projectId,
|
|
issueId,
|
|
currentIssue
|
|
);
|
|
|
|
if (!oldIssue) return;
|
|
|
|
if (currentIssue.state_id != oldIssue.state_id) {
|
|
}
|
|
|
|
if (currentIssue.parent_id != oldIssue.parent_id) {
|
|
}
|
|
// const updateResponse = await this.rootIssueDetailStore.rootIssueStore.projectIssues.updateIssue(
|
|
// workspaceSlug,
|
|
// projectId,
|
|
// issueId,
|
|
// oldIssue
|
|
// );
|
|
|
|
// console.log("---");
|
|
// console.log("parentIssueId", parentIssueId);
|
|
// console.log("fromModal", fromModal);
|
|
// console.log("updateResponse", updateResponse);
|
|
// console.log("---");
|
|
|
|
return;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
removeSubIssue = async (workspaceSlug: string, projectId: string, parentIssueId: string, issueId: string) => {
|
|
try {
|
|
await this.rootIssueDetailStore.rootIssueStore.projectIssues.updateIssue(workspaceSlug, projectId, issueId, {
|
|
parent_id: null,
|
|
});
|
|
|
|
runInAction(() => {
|
|
pull(this.subIssues[parentIssueId], issueId);
|
|
});
|
|
|
|
return;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
deleteSubIssue = async (workspaceSlug: string, projectId: string, parentIssueId: string, issueId: string) => {
|
|
try {
|
|
await this.rootIssueDetailStore.rootIssueStore.projectIssues.removeIssue(workspaceSlug, projectId, issueId);
|
|
|
|
runInAction(() => {
|
|
pull(this.subIssues[parentIssueId], issueId);
|
|
});
|
|
|
|
return;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
}
|