mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
// components
|
|
import { IssuePropertyEstimates } from "../../properties";
|
|
// hooks
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
onChange: (formData: Partial<IIssue>) => void;
|
|
expandedIssues: string[];
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetEstimateColumn: React.FC<Props> = (props) => {
|
|
const { issue, onChange, expandedIssues, disabled } = props;
|
|
|
|
const isExpanded = expandedIssues.indexOf(issue.id) > -1;
|
|
|
|
const { subIssues, isLoading } = useSubIssue(issue.project_detail.id, issue.id, isExpanded);
|
|
|
|
return (
|
|
<>
|
|
<IssuePropertyEstimates
|
|
projectId={issue.project_detail.id ?? null}
|
|
value={issue.estimate_point}
|
|
onChange={(data) => onChange({ estimate_point: data })}
|
|
className="h-full w-full"
|
|
buttonClassName="h-full w-full px-2.5 py-1 !shadow-none !border-0"
|
|
hideDropdownArrow
|
|
disabled={disabled}
|
|
/>
|
|
|
|
{isExpanded &&
|
|
!isLoading &&
|
|
subIssues &&
|
|
subIssues.length > 0 &&
|
|
subIssues.map((subIssue: IIssue) => (
|
|
<SpreadsheetEstimateColumn
|
|
key={subIssue.id}
|
|
issue={subIssue}
|
|
onChange={onChange}
|
|
expandedIssues={expandedIssues}
|
|
disabled={disabled}
|
|
/>
|
|
))}
|
|
</>
|
|
);
|
|
};
|