forked from github/plane
116 lines
2.7 KiB
TypeScript
116 lines
2.7 KiB
TypeScript
export const GROUP_BY_OPTIONS: Array<{
|
|
name: string;
|
|
key: TIssueGroupByOptions;
|
|
}> = [
|
|
{ name: "State", key: "state" },
|
|
{ name: "Priority", key: "priority" },
|
|
{ name: "Labels", key: "labels" },
|
|
{ name: "Created by", key: "created_by" },
|
|
{ name: "None", key: null },
|
|
];
|
|
|
|
export const ORDER_BY_OPTIONS: Array<{
|
|
name: string;
|
|
key: TIssueOrderByOptions;
|
|
}> = [
|
|
{ name: "Manual", key: "sort_order" },
|
|
{ name: "Last created", key: "-created_at" },
|
|
{ name: "Last updated", key: "updated_at" },
|
|
{ name: "Priority", key: "priority" },
|
|
];
|
|
|
|
export const FILTER_ISSUE_OPTIONS: Array<{
|
|
name: string;
|
|
key: "active" | "backlog" | null;
|
|
}> = [
|
|
{
|
|
name: "All",
|
|
key: null,
|
|
},
|
|
{
|
|
name: "Active Issues",
|
|
key: "active",
|
|
},
|
|
{
|
|
name: "Backlog Issues",
|
|
key: "backlog",
|
|
},
|
|
];
|
|
|
|
import { orderArrayBy } from "helpers/array.helper";
|
|
import { IIssue, TIssueGroupByOptions, TIssueOrderByOptions } from "types";
|
|
|
|
type THandleIssuesMutation = (
|
|
formData: Partial<IIssue>,
|
|
oldGroupTitle: string,
|
|
selectedGroupBy: TIssueGroupByOptions,
|
|
issueIndex: number,
|
|
orderBy: TIssueOrderByOptions,
|
|
prevData?:
|
|
| {
|
|
[key: string]: IIssue[];
|
|
}
|
|
| IIssue[]
|
|
) =>
|
|
| {
|
|
[key: string]: IIssue[];
|
|
}
|
|
| IIssue[]
|
|
| undefined;
|
|
|
|
export const handleIssuesMutation: THandleIssuesMutation = (
|
|
formData,
|
|
oldGroupTitle,
|
|
selectedGroupBy,
|
|
issueIndex,
|
|
orderBy,
|
|
prevData
|
|
) => {
|
|
if (!prevData) return prevData;
|
|
|
|
if (Array.isArray(prevData)) {
|
|
const updatedIssue = {
|
|
...prevData[issueIndex],
|
|
...formData,
|
|
assignees: formData?.assignees_list ?? prevData[issueIndex]?.assignees,
|
|
};
|
|
|
|
prevData.splice(issueIndex, 1, updatedIssue);
|
|
|
|
return [...prevData];
|
|
} else {
|
|
const oldGroup = prevData[oldGroupTitle ?? ""] ?? [];
|
|
|
|
let newGroup: IIssue[] = [];
|
|
|
|
if (selectedGroupBy === "priority") newGroup = prevData[formData.priority ?? ""] ?? [];
|
|
else if (selectedGroupBy === "state") newGroup = prevData[formData.state ?? ""] ?? [];
|
|
|
|
const updatedIssue = {
|
|
...oldGroup[issueIndex],
|
|
...formData,
|
|
assignees: formData?.assignees_list ?? oldGroup[issueIndex]?.assignees,
|
|
};
|
|
|
|
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;
|
|
|
|
return {
|
|
...prevData,
|
|
[oldGroupTitle ?? ""]: orderArrayBy(
|
|
oldGroup.filter((i) => i.id !== updatedIssue.id),
|
|
orderBy
|
|
),
|
|
[groupThatIsUpdated ?? ""]: orderArrayBy([...newGroup, updatedIssue], orderBy),
|
|
};
|
|
}
|
|
};
|