mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
93d03f82b4
* style: spreadsheet column width fix * style: spreadsheet label column styling * chore: spreadsheet layout issue properties improvement * fix: build error
35 lines
909 B
TypeScript
35 lines
909 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 SpreadsheetLinkColumn: 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 items-center px-2.5 py-1 text-xs h-full w-full">
|
|
{issue.link_count} {issue.link_count === 1 ? "link" : "links"}
|
|
</div>
|
|
|
|
{isExpanded &&
|
|
!isLoading &&
|
|
subIssues &&
|
|
subIssues.length > 0 &&
|
|
subIssues.map((subIssue: IIssue) => (
|
|
<SpreadsheetLinkColumn key={subIssue.id} issue={subIssue} expandedIssues={expandedIssues} />
|
|
))}
|
|
</>
|
|
);
|
|
};
|