mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fa8ae6b8ce
* fix: deepsource antipatterns * fix: deepsource exclude file patterns * chore: file name changes and removed unwanted variables * fix: changing version number for editor
140 lines
4.0 KiB
TypeScript
140 lines
4.0 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { mutate } from "swr";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// services
|
|
import { IssueService } from "services/issue";
|
|
// components
|
|
import { ViewDueDateSelect, ViewStartDateSelect } from "components/issues";
|
|
import { PrioritySelect } from "components/project";
|
|
// types
|
|
import { IUser, IIssue, IState } from "types";
|
|
// fetch-keys
|
|
import { SUB_ISSUES } from "constants/fetch-keys";
|
|
import { IssuePropertyAssignee, IssuePropertyState } from "../issue-layouts/properties";
|
|
|
|
export interface IIssueProperty {
|
|
workspaceSlug: string;
|
|
parentIssue: IIssue;
|
|
issue: IIssue;
|
|
user: IUser | undefined;
|
|
editable: boolean;
|
|
}
|
|
|
|
// services
|
|
const issueService = new IssueService();
|
|
|
|
export const IssueProperty: React.FC<IIssueProperty> = observer((props) => {
|
|
const { workspaceSlug, parentIssue, issue, user, editable } = props;
|
|
|
|
const { issueFilter: issueFilterStore } = useMobxStore();
|
|
|
|
const displayProperties = issueFilterStore.userDisplayProperties ?? {};
|
|
|
|
const handlePriorityChange = (data: any) => {
|
|
partialUpdateIssue({ priority: data });
|
|
};
|
|
|
|
const handleStateChange = (data: IState) => {
|
|
partialUpdateIssue({
|
|
state: data.id,
|
|
state_detail: data,
|
|
});
|
|
};
|
|
|
|
const handleAssigneeChange = (data: string[]) => {
|
|
partialUpdateIssue({ assignees: data });
|
|
};
|
|
|
|
const partialUpdateIssue = async (data: Partial<IIssue>) => {
|
|
mutate(
|
|
workspaceSlug && parentIssue ? SUB_ISSUES(parentIssue.id) : null,
|
|
(elements: any) => {
|
|
const _elements = { ...elements };
|
|
const _issues = _elements.sub_issues.map((element: IIssue) =>
|
|
element.id === issue.id ? { ...element, ...data } : element
|
|
);
|
|
_elements["sub_issues"] = [..._issues];
|
|
return _elements;
|
|
},
|
|
false
|
|
);
|
|
|
|
const issueResponse = await issueService.patchIssue(workspaceSlug as string, issue.project, issue.id, data);
|
|
|
|
mutate(
|
|
SUB_ISSUES(parentIssue.id),
|
|
(elements: any) => {
|
|
const _elements = elements.sub_issues.map((element: IIssue) =>
|
|
element.id === issue.id ? issueResponse : element
|
|
);
|
|
elements["sub_issues"] = _elements;
|
|
return elements;
|
|
},
|
|
true
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="relative flex items-center gap-1">
|
|
{displayProperties.priority && (
|
|
<div className="flex-shrink-0">
|
|
<PrioritySelect
|
|
value={issue.priority}
|
|
onChange={handlePriorityChange}
|
|
hideDropdownArrow
|
|
disabled={!editable}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{displayProperties.state && (
|
|
<div className="flex-shrink-0">
|
|
<IssuePropertyState
|
|
projectId={issue?.project_detail?.id || null}
|
|
value={issue?.state_detail || null}
|
|
onChange={(data) => handleStateChange(data)}
|
|
disabled={false}
|
|
hideDropdownArrow
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{displayProperties.start_date && issue.start_date && (
|
|
<div className="flex-shrink-0 w-[104px]">
|
|
<ViewStartDateSelect
|
|
issue={issue}
|
|
onChange={(val) => partialUpdateIssue({ start_date: val })}
|
|
disabled={!editable}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{displayProperties.due_date && issue.target_date && (
|
|
<div className="flex-shrink-0 w-[104px]">
|
|
{user && (
|
|
<ViewDueDateSelect
|
|
issue={issue}
|
|
onChange={(val) => partialUpdateIssue({ target_date: val })}
|
|
disabled={!editable}
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{displayProperties.assignee && (
|
|
<div className="flex-shrink-0">
|
|
<IssuePropertyAssignee
|
|
projectId={issue?.project_detail?.id || null}
|
|
value={issue?.assignees || null}
|
|
hideDropdownArrow
|
|
onChange={(val) => handleAssigneeChange(val)}
|
|
disabled={false}
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|