2023-10-18 07:02:02 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
// components
|
2023-11-01 08:52:29 +00:00
|
|
|
import { IssuePropertyLabels } from "../../properties";
|
2023-10-18 07:02:02 +00:00
|
|
|
// hooks
|
|
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
|
|
// types
|
2023-11-18 20:16:11 +00:00
|
|
|
import { IIssue, IIssueLabel } from "types";
|
2023-10-18 07:02:02 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
issue: IIssue;
|
2023-12-13 17:37:26 +00:00
|
|
|
onChange: (issue: IIssue, formData: Partial<IIssue>) => void;
|
2023-11-18 20:16:11 +00:00
|
|
|
labels: IIssueLabel[] | undefined;
|
2023-10-18 07:02:02 +00:00
|
|
|
expandedIssues: string[];
|
|
|
|
disabled: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const SpreadsheetLabelColumn: React.FC<Props> = (props) => {
|
|
|
|
const { issue, onChange, labels, expandedIssues, disabled } = props;
|
|
|
|
|
|
|
|
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-10-18 13:48:01 +00:00
|
|
|
<>
|
2023-11-01 08:52:29 +00:00
|
|
|
<IssuePropertyLabels
|
2023-11-27 08:45:33 +00:00
|
|
|
projectId={issue.project_detail?.id ?? null}
|
2023-10-18 13:48:01 +00:00
|
|
|
value={issue.labels}
|
2023-12-01 12:05:33 +00:00
|
|
|
defaultOptions={issue?.label_details ? issue.label_details : []}
|
2023-12-13 17:37:26 +00:00
|
|
|
onChange={(data) => {
|
|
|
|
onChange(issue, { labels: 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-07 10:28:00 +00:00
|
|
|
buttonClassName="px-2.5 h-full"
|
2023-10-18 13:48:01 +00:00
|
|
|
hideDropdownArrow
|
|
|
|
maxRender={1}
|
2023-10-18 07:02:02 +00:00
|
|
|
disabled={disabled}
|
2023-12-11 11:57:29 +00:00
|
|
|
placeholderText="Select labels"
|
2023-10-18 07:02:02 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
{isExpanded &&
|
|
|
|
!isLoading &&
|
|
|
|
subIssues &&
|
|
|
|
subIssues.length > 0 &&
|
|
|
|
subIssues.map((subIssue: IIssue) => (
|
2023-12-11 11:58:44 +00:00
|
|
|
<div className={`h-11`}>
|
|
|
|
<SpreadsheetLabelColumn
|
|
|
|
key={subIssue.id}
|
|
|
|
issue={subIssue}
|
|
|
|
onChange={onChange}
|
|
|
|
labels={labels}
|
|
|
|
expandedIssues={expandedIssues}
|
|
|
|
disabled={disabled}
|
|
|
|
/>
|
|
|
|
</div>
|
2023-10-18 07:02:02 +00:00
|
|
|
))}
|
2023-10-18 13:48:01 +00:00
|
|
|
</>
|
2023-10-18 07:02:02 +00:00
|
|
|
);
|
|
|
|
};
|