mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
220389e74e
* chore: autorun for the issue detail store * fix: labels mutation * chore: remove old peek overview code * chore: move add to cycle and module logic to store * fix: build errors * chore: add peekProjectId query param for the peek overview * chore: update profile layout * fix: multiple workspaces * style: Issue activity and link design improvements in Peek overview. * fix issue with labels not occupying full widht. * fix links overflow issue. * add tooltip in links to display entire link. * add functionality to copy links to clipboard. * chore: peek overview for all the layouts * fix: build errors --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
76 lines
1.9 KiB
TypeScript
76 lines
1.9 KiB
TypeScript
import React from "react";
|
|
|
|
// components
|
|
import { IssueColumn } from "components/issues";
|
|
// hooks
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
// types
|
|
import { IIssue, IIssueDisplayProperties } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
expandedIssues: string[];
|
|
setExpandedIssues: React.Dispatch<React.SetStateAction<string[]>>;
|
|
properties: IIssueDisplayProperties;
|
|
quickActions: (issue: IIssue) => React.ReactNode;
|
|
disableUserActions: boolean;
|
|
nestingLevel?: number;
|
|
};
|
|
|
|
export const SpreadsheetIssuesColumn: React.FC<Props> = ({
|
|
issue,
|
|
expandedIssues,
|
|
setExpandedIssues,
|
|
properties,
|
|
quickActions,
|
|
disableUserActions,
|
|
nestingLevel = 0,
|
|
}) => {
|
|
const handleToggleExpand = (issueId: string) => {
|
|
setExpandedIssues((prevState) => {
|
|
const newArray = [...prevState];
|
|
const index = newArray.indexOf(issueId);
|
|
|
|
if (index > -1) newArray.splice(index, 1);
|
|
else newArray.push(issueId);
|
|
|
|
return newArray;
|
|
});
|
|
};
|
|
|
|
const isExpanded = expandedIssues.indexOf(issue.id) > -1;
|
|
|
|
const { subIssues, isLoading } = useSubIssue(issue.project_detail?.id, issue.id, isExpanded);
|
|
|
|
return (
|
|
<>
|
|
<IssueColumn
|
|
issue={issue}
|
|
expanded={isExpanded}
|
|
handleToggleExpand={handleToggleExpand}
|
|
properties={properties}
|
|
disableUserActions={disableUserActions}
|
|
nestingLevel={nestingLevel}
|
|
quickActions={quickActions}
|
|
/>
|
|
|
|
{isExpanded &&
|
|
!isLoading &&
|
|
subIssues &&
|
|
subIssues.length > 0 &&
|
|
subIssues.map((subIssue) => (
|
|
<SpreadsheetIssuesColumn
|
|
key={subIssue.id}
|
|
issue={subIssue}
|
|
expandedIssues={expandedIssues}
|
|
setExpandedIssues={setExpandedIssues}
|
|
properties={properties}
|
|
quickActions={quickActions}
|
|
disableUserActions={disableUserActions}
|
|
nestingLevel={nestingLevel + 1}
|
|
/>
|
|
))}
|
|
</>
|
|
);
|
|
};
|