import React from "react"; // components import { IssuePropertyLabels } from "../../properties"; // hooks import useSubIssue from "hooks/use-sub-issue"; // types import { IIssue, IIssueLabel } from "types"; type Props = { issue: IIssue; onChange: (issue: IIssue, formData: Partial) => void; labels: IIssueLabel[] | undefined; expandedIssues: string[]; disabled: boolean; }; export const SpreadsheetLabelColumn: React.FC = (props) => { const { issue, onChange, labels, expandedIssues, disabled } = props; const isExpanded = expandedIssues.indexOf(issue.id) > -1; const { subIssues, isLoading, mutateSubIssues } = useSubIssue(issue.project_detail?.id, issue.id, isExpanded); return ( <> { 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" buttonClassName="px-2.5 h-full" hideDropdownArrow maxRender={1} disabled={disabled} placeholderText="Select labels" /> {isExpanded && !isLoading && subIssues && subIssues.length > 0 && subIssues.map((subIssue: IIssue) => (
))} ); };