2023-10-18 07:02:02 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
// components
|
2023-11-01 08:52:29 +00:00
|
|
|
import { IssuePropertyState } from "../../properties";
|
2023-10-18 07:02:02 +00:00
|
|
|
// hooks
|
|
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
|
|
// types
|
2023-11-08 15:01:46 +00:00
|
|
|
import { IIssue, IState } from "types";
|
2023-10-18 07:02:02 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
issue: IIssue;
|
|
|
|
onChange: (data: Partial<IIssue>) => void;
|
2023-11-08 15:01:46 +00:00
|
|
|
states: IState[] | undefined;
|
2023-10-18 07:02:02 +00:00
|
|
|
expandedIssues: string[];
|
|
|
|
disabled: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const SpreadsheetStateColumn: React.FC<Props> = (props) => {
|
|
|
|
const { issue, onChange, states, expandedIssues, disabled } = props;
|
|
|
|
|
|
|
|
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-18 13:48:01 +00:00
|
|
|
<>
|
2023-11-01 08:52:29 +00:00
|
|
|
<IssuePropertyState
|
2023-11-27 08:45:33 +00:00
|
|
|
projectId={issue.project_detail?.id ?? null}
|
2023-12-06 14:28:47 +00:00
|
|
|
value={issue.state}
|
2023-12-01 12:05:33 +00:00
|
|
|
defaultOptions={issue?.state_detail ? [issue.state_detail] : []}
|
2023-10-18 07:02:02 +00:00
|
|
|
onChange={(data) => onChange({ state: data.id, state_detail: data })}
|
2023-12-11 16:53:49 +00:00
|
|
|
className="w-full !h-11 border-b-[0.5px] border-custom-border-200"
|
2023-11-02 10:31:49 +00:00
|
|
|
buttonClassName="!shadow-none !border-0 h-full w-full"
|
2023-10-18 13:48:01 +00:00
|
|
|
hideDropdownArrow
|
2023-10-18 07:02:02 +00:00
|
|
|
disabled={disabled}
|
|
|
|
/>
|
|
|
|
|
|
|
|
{isExpanded &&
|
|
|
|
!isLoading &&
|
|
|
|
subIssues &&
|
|
|
|
subIssues.length > 0 &&
|
|
|
|
subIssues.map((subIssue) => (
|
2023-12-11 11:58:44 +00:00
|
|
|
<div className="h-11">
|
|
|
|
<SpreadsheetStateColumn
|
|
|
|
key={subIssue.id}
|
|
|
|
issue={subIssue}
|
|
|
|
onChange={onChange}
|
|
|
|
states={states}
|
|
|
|
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
|
|
|
);
|
|
|
|
};
|