2023-10-18 07:02:02 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
// components
|
2023-10-18 13:48:01 +00:00
|
|
|
import { PrioritySelect } from "components/project";
|
2023-10-18 07:02:02 +00:00
|
|
|
// 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;
|
|
|
|
|
2023-11-27 08:45:33 +00:00
|
|
|
const { subIssues, isLoading } = useSubIssue(issue.project_detail?.id, issue.id, isExpanded);
|
2023-10-18 07:02:02 +00:00
|
|
|
|
|
|
|
return (
|
2023-10-31 06:48:04 +00:00
|
|
|
<>
|
2023-10-18 13:48:01 +00:00
|
|
|
<PrioritySelect
|
|
|
|
value={issue.priority}
|
|
|
|
onChange={(data) => onChange({ priority: data })}
|
2023-12-11 16:53:49 +00:00
|
|
|
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"
|
2023-10-31 06:48:04 +00:00
|
|
|
showTitle
|
|
|
|
highlightUrgentPriority={false}
|
2023-10-18 13:48:01 +00:00
|
|
|
hideDropdownArrow
|
|
|
|
disabled={disabled}
|
|
|
|
/>
|
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`}>
|
|
|
|
<SpreadsheetPriorityColumn
|
|
|
|
key={subIssue.id}
|
|
|
|
issue={subIssue}
|
|
|
|
onChange={onChange}
|
|
|
|
expandedIssues={expandedIssues}
|
|
|
|
disabled={disabled}
|
|
|
|
/>
|
|
|
|
</div>
|
2023-10-18 07:02:02 +00:00
|
|
|
))}
|
2023-10-31 06:48:04 +00:00
|
|
|
</>
|
2023-10-18 07:02:02 +00:00
|
|
|
);
|
|
|
|
};
|