mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
134 lines
3.6 KiB
TypeScript
134 lines
3.6 KiB
TypeScript
import { v4 as uuidv4 } from "uuid";
|
|
// helpers
|
|
import { orderArrayBy } from "helpers/array.helper";
|
|
// types
|
|
import { TIssue, TIssueGroupByOptions, TIssueLayouts, TIssueOrderByOptions, TIssueParams } from "@plane/types";
|
|
// constants
|
|
import { ISSUE_DISPLAY_FILTERS_BY_LAYOUT } from "constants/issue";
|
|
|
|
type THandleIssuesMutation = (
|
|
formData: Partial<TIssue>,
|
|
oldGroupTitle: string,
|
|
selectedGroupBy: TIssueGroupByOptions,
|
|
issueIndex: number,
|
|
orderBy: TIssueOrderByOptions,
|
|
prevData?:
|
|
| {
|
|
[key: string]: TIssue[];
|
|
}
|
|
| TIssue[]
|
|
) =>
|
|
| {
|
|
[key: string]: TIssue[];
|
|
}
|
|
| TIssue[]
|
|
| undefined;
|
|
|
|
export const handleIssuesMutation: THandleIssuesMutation = (
|
|
formData,
|
|
oldGroupTitle,
|
|
selectedGroupBy,
|
|
issueIndex,
|
|
orderBy,
|
|
prevData
|
|
) => {
|
|
if (!prevData) return prevData;
|
|
|
|
if (Array.isArray(prevData)) {
|
|
const updatedIssue = {
|
|
...prevData[issueIndex],
|
|
...formData,
|
|
};
|
|
|
|
prevData.splice(issueIndex, 1, updatedIssue);
|
|
|
|
return [...prevData];
|
|
} else {
|
|
const oldGroup = prevData[oldGroupTitle ?? ""] ?? [];
|
|
|
|
let newGroup: TIssue[] = [];
|
|
|
|
if (selectedGroupBy === "priority") newGroup = prevData[formData.priority ?? ""] ?? [];
|
|
else if (selectedGroupBy === "state") newGroup = prevData[formData.state_id ?? ""] ?? [];
|
|
|
|
const updatedIssue = {
|
|
...oldGroup[issueIndex],
|
|
...formData,
|
|
};
|
|
|
|
if (selectedGroupBy !== Object.keys(formData)[0])
|
|
return {
|
|
...prevData,
|
|
[oldGroupTitle ?? ""]: orderArrayBy(
|
|
oldGroup.map((i) => (i.id === updatedIssue.id ? updatedIssue : i)),
|
|
orderBy
|
|
),
|
|
};
|
|
|
|
const groupThatIsUpdated = selectedGroupBy === "priority" ? formData.priority : formData.state_id;
|
|
|
|
return {
|
|
...prevData,
|
|
[oldGroupTitle ?? ""]: orderArrayBy(
|
|
oldGroup.filter((i) => i.id !== updatedIssue.id),
|
|
orderBy
|
|
),
|
|
[groupThatIsUpdated ?? ""]: orderArrayBy([...newGroup, updatedIssue], orderBy),
|
|
};
|
|
}
|
|
};
|
|
|
|
export const handleIssueQueryParamsByLayout = (
|
|
layout: TIssueLayouts | undefined,
|
|
viewType: "my_issues" | "issues" | "profile_issues" | "archived_issues" | "draft_issues"
|
|
): TIssueParams[] | null => {
|
|
const queryParams: TIssueParams[] = [];
|
|
|
|
if (!layout) return null;
|
|
|
|
const layoutOptions = ISSUE_DISPLAY_FILTERS_BY_LAYOUT[viewType][layout];
|
|
|
|
// add filters query params
|
|
layoutOptions.filters.forEach((option) => {
|
|
queryParams.push(option);
|
|
});
|
|
|
|
// add display filters query params
|
|
Object.keys(layoutOptions.display_filters).forEach((option) => {
|
|
queryParams.push(option as TIssueParams);
|
|
});
|
|
|
|
// add extra options query params
|
|
if (layoutOptions.extra_options.access) {
|
|
layoutOptions.extra_options.values.forEach((option) => {
|
|
queryParams.push(option);
|
|
});
|
|
}
|
|
|
|
return queryParams;
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @description create a full issue payload with some default values. This function also parse the form field
|
|
* like assignees, labels, etc. and add them to the payload
|
|
* @param projectId project id to be added in the issue payload
|
|
* @param formData partial issue data from the form. This will override the default values
|
|
* @returns full issue payload with some default values
|
|
*/
|
|
export const createIssuePayload: (projectId: string, formData: Partial<TIssue>) => TIssue = (
|
|
projectId: string,
|
|
formData: Partial<TIssue>
|
|
) => {
|
|
const payload: TIssue = {
|
|
id: uuidv4(),
|
|
project_id: projectId,
|
|
// tempId is used for optimistic updates. It is not a part of the API response.
|
|
tempId: uuidv4(),
|
|
// to be overridden by the form data
|
|
...formData,
|
|
} as TIssue;
|
|
|
|
return payload;
|
|
};
|