forked from github/plane
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
35 lines
946 B
TypeScript
35 lines
946 B
TypeScript
import React from "react";
|
|
// hooks
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
expandedIssues: string[];
|
|
};
|
|
|
|
export const SpreadsheetAttachmentColumn: 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 className="flex h-full w-full items-center px-2.5 py-1 text-xs">
|
|
{issue.attachment_count} {issue.attachment_count === 1 ? "attachment" : "attachments"}
|
|
</div>
|
|
|
|
{isExpanded &&
|
|
!isLoading &&
|
|
subIssues &&
|
|
subIssues.length > 0 &&
|
|
subIssues.map((subIssue: IIssue) => (
|
|
<SpreadsheetAttachmentColumn key={subIssue.id} issue={subIssue} expandedIssues={expandedIssues} />
|
|
))}
|
|
</>
|
|
);
|
|
};
|