mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import React from "react";
|
|
|
|
// components
|
|
import { PrioritySelect } from "components/project";
|
|
// hooks
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
onChange: (data: Partial<IIssue>) => void;
|
|
expandedIssues: string[];
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetPriorityColumn: React.FC<Props> = ({ issue, onChange, expandedIssues, disabled }) => {
|
|
const isExpanded = expandedIssues.indexOf(issue.id) > -1;
|
|
|
|
const { subIssues, isLoading } = useSubIssue(issue.project_detail?.id, issue.id, isExpanded);
|
|
|
|
return (
|
|
<>
|
|
<PrioritySelect
|
|
value={issue.priority}
|
|
onChange={(data) => onChange({ priority: data })}
|
|
className="h-11 w-full border-b-[0.5px] border-custom-border-200"
|
|
buttonClassName="!shadow-none !border-0 h-full w-full px-2.5 py-1"
|
|
showTitle
|
|
highlightUrgentPriority={false}
|
|
hideDropdownArrow
|
|
disabled={disabled}
|
|
/>
|
|
|
|
{isExpanded &&
|
|
!isLoading &&
|
|
subIssues &&
|
|
subIssues.length > 0 &&
|
|
subIssues.map((subIssue: IIssue) => (
|
|
<div className={`h-11`}>
|
|
<SpreadsheetPriorityColumn
|
|
key={subIssue.id}
|
|
issue={subIssue}
|
|
onChange={onChange}
|
|
expandedIssues={expandedIssues}
|
|
disabled={disabled}
|
|
/>
|
|
</div>
|
|
))}
|
|
</>
|
|
);
|
|
};
|