forked from github/plane
9d0056cfee
* fix: spreadsheet subissues property update * fix: hover effect for sub-issues * refactor: mutate sub-issues
55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
import React from "react";
|
|
|
|
// components
|
|
import { ViewStartDateSelect } from "components/issues";
|
|
// hooks
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
onChange: (issue: IIssue, formData: Partial<IIssue>) => void;
|
|
expandedIssues: string[];
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetStartDateColumn: React.FC<Props> = ({ issue, onChange, expandedIssues, disabled }) => {
|
|
const isExpanded = expandedIssues.indexOf(issue.id) > -1;
|
|
|
|
const { subIssues, isLoading, mutateSubIssues } = useSubIssue(issue.project_detail?.id, issue.id, isExpanded);
|
|
|
|
return (
|
|
<>
|
|
<ViewStartDateSelect
|
|
issue={issue}
|
|
onChange={(val) => {
|
|
onChange(issue, { start_date: val });
|
|
if (issue.parent) {
|
|
mutateSubIssues(issue, { start_date: val });
|
|
}
|
|
}}
|
|
className="flex !h-11 !w-full max-w-full items-center px-2.5 py-1 border-b-[0.5px] border-custom-border-200 hover:bg-custom-background-80"
|
|
noBorder
|
|
disabled={disabled}
|
|
/>
|
|
|
|
{isExpanded &&
|
|
!isLoading &&
|
|
subIssues &&
|
|
subIssues.length > 0 &&
|
|
subIssues.map((subIssue: IIssue) => (
|
|
<div className={`h-11`}>
|
|
<SpreadsheetStartDateColumn
|
|
key={subIssue.id}
|
|
issue={subIssue}
|
|
onChange={onChange}
|
|
expandedIssues={expandedIssues}
|
|
disabled={disabled}
|
|
/>
|
|
</div>
|
|
))}
|
|
</>
|
|
);
|
|
};
|