forked from github/plane
36 lines
873 B
TypeScript
36 lines
873 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
// components
|
||
|
import { UpdatedOnColumn } from "components/issues";
|
||
|
// hooks
|
||
|
import useSubIssue from "hooks/use-sub-issue";
|
||
|
// types
|
||
|
import { IIssue } from "types";
|
||
|
|
||
|
type Props = {
|
||
|
issue: IIssue;
|
||
|
expandedIssues: string[];
|
||
|
};
|
||
|
|
||
|
export const SpreadsheetUpdatedOnColumn: React.FC<Props> = (props) => {
|
||
|
const { issue, expandedIssues } = props;
|
||
|
|
||
|
const isExpanded = expandedIssues.indexOf(issue.id) > -1;
|
||
|
|
||
|
const { subIssues, isLoading } = useSubIssue(issue.project_detail.id, issue.id, isExpanded);
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<UpdatedOnColumn issue={issue} />
|
||
|
|
||
|
{isExpanded &&
|
||
|
!isLoading &&
|
||
|
subIssues &&
|
||
|
subIssues.length > 0 &&
|
||
|
subIssues.map((subIssue: IIssue) => (
|
||
|
<SpreadsheetUpdatedOnColumn key={subIssue.id} issue={subIssue} expandedIssues={expandedIssues} />
|
||
|
))}
|
||
|
</div>
|
||
|
);
|
||
|
};
|