mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
efd3ebf067
* refactor: updated preloaded function for the list view quick add * fix: resolved bug in the assignee dropdown * chore: issue sidebar link improvement * fix: resolved subscription store bug * chore: updated preloaded function for the kanban layout quick add * chore: resolved issues in the list filters and component * chore: filter store updated * fix: issue serializer changed * chore: quick add preload function updated * fix: build error * fix: serializer changed * fix: minor request change * chore: resolved build issues and updated the prepopulated data in the quick add issue. * fix: build fix and code refactor * fix: spreadsheet layout quick add fix * fix: issue peek overview link section updated * fix: cycle status bug fix * fix: serializer changes * fix: assignee and labels listing * chore: issue modal parent_id default value updated * fix: cycle and module issue serializer change * fix: cycle list serializer changed * chore: prepopulated validation in both list and kanban for quick add and group header add issues * chore: group header validation added * fix: issue response payload change * dev: make cycle and module issue create response simillar * chore: custom control link component added * dev: make issue create and update response simillar to list and retrieve * fix: build error * chore: control link component improvement * chore: globalise issue peek overview * chore: control link component improvement * chore: made changes and optimised the issue peek overview root * build-error: resolved build erros for issueId dependancy from issue detail store * chore: peek overview link fix * dev: update state nullable rule --------- Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
137 lines
3.7 KiB
TypeScript
137 lines
3.7 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);
|
|
});
|
|
}
|
|
|
|
// add start_target_date query param for the gantt_chart layout
|
|
if (layout === "gantt_chart") queryParams.push("start_target_date");
|
|
|
|
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;
|
|
};
|