forked from github/plane
74ca187659
* chore: workspace project roles for the current user * dev: workspace and project member * chore: store implementation for workspace user projects role * view changes for the project roles * connect workspace member's project roles to assigned --------- Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: rahulramesha <rahulramesham@gmail.com> Co-authored-by: rahulramesha <71900764+rahulramesha@users.noreply.github.com>
112 lines
3.8 KiB
TypeScript
112 lines
3.8 KiB
TypeScript
import React, { useRef, useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { ChevronRight, MoreHorizontal } from "lucide-react";
|
|
// components
|
|
import { Tooltip } from "@plane/ui";
|
|
// hooks
|
|
import useOutsideClickDetector from "hooks/use-outside-click-detector";
|
|
// types
|
|
import { IIssue, IIssueDisplayProperties } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
expanded: boolean;
|
|
handleToggleExpand: (issueId: string) => void;
|
|
properties: IIssueDisplayProperties;
|
|
quickActions: (issue: IIssue, customActionButton?: React.ReactElement) => React.ReactNode;
|
|
canEditProperties: (projectId: string | undefined) => boolean;
|
|
nestingLevel: number;
|
|
};
|
|
|
|
export const IssueColumn: React.FC<Props> = ({
|
|
issue,
|
|
expanded,
|
|
handleToggleExpand,
|
|
properties,
|
|
quickActions,
|
|
canEditProperties,
|
|
nestingLevel,
|
|
}) => {
|
|
// router
|
|
const router = useRouter();
|
|
// states
|
|
const [isMenuActive, setIsMenuActive] = useState(false);
|
|
|
|
const menuActionRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
const handleIssuePeekOverview = (issue: IIssue) => {
|
|
const { query } = router;
|
|
|
|
router.push({
|
|
pathname: router.pathname,
|
|
query: { ...query, peekIssueId: issue?.id, peekProjectId: issue?.project },
|
|
});
|
|
};
|
|
|
|
const paddingLeft = `${nestingLevel * 54}px`;
|
|
|
|
useOutsideClickDetector(menuActionRef, () => setIsMenuActive(false));
|
|
|
|
const customActionButton = (
|
|
<div
|
|
ref={menuActionRef}
|
|
className={`w-full cursor-pointer text-custom-sidebar-text-400 rounded p-1 hover:bg-custom-background-80 ${
|
|
isMenuActive ? "bg-custom-background-80 text-custom-text-100" : "text-custom-text-200"
|
|
}`}
|
|
onClick={() => setIsMenuActive(!isMenuActive)}
|
|
>
|
|
<MoreHorizontal className="h-3.5 w-3.5" />
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<div className="group flex items-center w-[28rem] text-sm h-11 top-0 bg-custom-background-100 truncate border-b border-custom-border-100">
|
|
{properties.key && (
|
|
<div
|
|
className="flex gap-1.5 px-4 pr-0 py-2.5 items-center min-w-min"
|
|
style={issue.parent && nestingLevel !== 0 ? { paddingLeft } : {}}
|
|
>
|
|
<div className="relative flex items-center cursor-pointer text-xs text-center hover:text-custom-text-100">
|
|
<span
|
|
className={`flex items-center justify-center font-medium opacity-100 group-hover:opacity-0 ${
|
|
isMenuActive ? "!opacity-0" : ""
|
|
} `}
|
|
>
|
|
{issue.project_detail?.identifier}-{issue.sequence_id}
|
|
</span>
|
|
|
|
{canEditProperties(issue.project) && (
|
|
<div className={`absolute top-0 left-2.5 hidden group-hover:block ${isMenuActive ? "!block" : ""}`}>
|
|
{quickActions(issue, customActionButton)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{issue.sub_issues_count > 0 && (
|
|
<div className="h-6 w-6 flex justify-center items-center">
|
|
<button
|
|
className="h-5 w-5 hover:bg-custom-background-90 hover:text-custom-text-100 rounded-sm cursor-pointer"
|
|
onClick={() => handleToggleExpand(issue.id)}
|
|
>
|
|
<ChevronRight className={`h-3.5 w-3.5 ${expanded ? "rotate-90" : ""}`} />
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
<div className="w-full overflow-hidden">
|
|
<Tooltip tooltipHeading="Title" tooltipContent={issue.name}>
|
|
<div
|
|
className="px-4 py-2.5 h-full w-full truncate text-custom-text-100 text-left cursor-pointer text-[0.825rem]"
|
|
onClick={() => handleIssuePeekOverview(issue)}
|
|
>
|
|
{issue.name}
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|