2023-10-18 07:02:02 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
// components
|
2023-11-01 08:52:29 +00:00
|
|
|
import { IssuePropertyAssignee } from "../../properties";
|
2023-10-18 07:02:02 +00:00
|
|
|
// hooks
|
|
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
|
|
// types
|
|
|
|
import { IIssue, IUserLite } from "types";
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
issue: IIssue;
|
|
|
|
members: IUserLite[] | undefined;
|
2023-12-13 17:37:26 +00:00
|
|
|
onChange: (issue: IIssue, data: Partial<IIssue>) => void;
|
2023-10-18 07:02:02 +00:00
|
|
|
expandedIssues: string[];
|
|
|
|
disabled: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const SpreadsheetAssigneeColumn: React.FC<Props> = ({ issue, members, onChange, expandedIssues, disabled }) => {
|
|
|
|
const isExpanded = expandedIssues.indexOf(issue.id) > -1;
|
|
|
|
|
2023-12-13 17:37:26 +00:00
|
|
|
const { subIssues, isLoading, mutateSubIssues } = useSubIssue(issue.project_detail?.id, issue.id, isExpanded);
|
2023-10-18 07:02:02 +00:00
|
|
|
|
|
|
|
return (
|
2023-11-01 08:52:29 +00:00
|
|
|
<>
|
|
|
|
<IssuePropertyAssignee
|
2023-11-27 08:45:33 +00:00
|
|
|
projectId={issue.project_detail?.id ?? null}
|
2023-10-18 13:48:01 +00:00
|
|
|
value={issue.assignees}
|
2023-12-01 12:05:33 +00:00
|
|
|
defaultOptions={issue?.assignee_details ? issue.assignee_details : []}
|
2023-12-13 17:37:26 +00:00
|
|
|
onChange={(data) => {
|
|
|
|
onChange(issue, { assignees: data });
|
|
|
|
if (issue.parent) {
|
|
|
|
mutateSubIssues(issue, { assignees: data });
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
className="h-11 w-full border-b-[0.5px] border-custom-border-200 hover:bg-custom-background-80"
|
2023-11-02 10:31:49 +00:00
|
|
|
buttonClassName="!shadow-none !border-0 h-full w-full px-2.5 py-1 "
|
|
|
|
noLabelBorder
|
2023-10-18 13:48:01 +00:00
|
|
|
hideDropdownArrow
|
2023-10-18 07:02:02 +00:00
|
|
|
disabled={disabled}
|
2023-10-18 13:48:01 +00:00
|
|
|
multiple
|
2023-10-18 07:02:02 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
{isExpanded &&
|
|
|
|
!isLoading &&
|
|
|
|
subIssues &&
|
|
|
|
subIssues.length > 0 &&
|
|
|
|
subIssues.map((subIssue) => (
|
2023-12-11 11:58:44 +00:00
|
|
|
<div className={`h-11`}>
|
|
|
|
<SpreadsheetAssigneeColumn
|
|
|
|
key={subIssue.id}
|
|
|
|
issue={subIssue}
|
|
|
|
onChange={onChange}
|
|
|
|
expandedIssues={expandedIssues}
|
|
|
|
members={members}
|
|
|
|
disabled={disabled}
|
|
|
|
/>
|
|
|
|
</div>
|
2023-10-18 07:02:02 +00:00
|
|
|
))}
|
2023-11-01 08:52:29 +00:00
|
|
|
</>
|
2023-10-18 07:02:02 +00:00
|
|
|
);
|
|
|
|
};
|