mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b3b79c51bb
* refactor: spreadsheet column components * refactor: spreadsheet layout components * fix: unique key for each cell
34 lines
871 B
TypeScript
34 lines
871 B
TypeScript
import React from "react";
|
|
|
|
// hooks
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
// helpers
|
|
import { renderLongDetailDateFormat } from "helpers/date-time.helper";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
expandedIssues: string[];
|
|
};
|
|
|
|
export const SpreadsheetCreatedOnColumn: React.FC<Props> = ({ issue, expandedIssues }) => {
|
|
const isExpanded = expandedIssues.indexOf(issue.id) > -1;
|
|
|
|
const { subIssues, isLoading } = useSubIssue(issue.project_detail.id, issue.id, isExpanded);
|
|
|
|
return (
|
|
<>
|
|
{renderLongDetailDateFormat(issue.created_at)}
|
|
|
|
{isExpanded &&
|
|
!isLoading &&
|
|
subIssues &&
|
|
subIssues.length > 0 &&
|
|
subIssues.map((subIssue: IIssue) => (
|
|
<SpreadsheetCreatedOnColumn key={subIssue.id} issue={subIssue} expandedIssues={expandedIssues} />
|
|
))}
|
|
</>
|
|
);
|
|
};
|