mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
80 lines
2.7 KiB
TypeScript
80 lines
2.7 KiB
TypeScript
import { useRef, useState } from "react";
|
|
import { DraggableProvidedDragHandleProps } from "@hello-pangea/dnd";
|
|
import { LucideIcon, X } from "lucide-react";
|
|
//ui
|
|
import { CustomMenu } from "@plane/ui";
|
|
//types
|
|
import useOutsideClickDetector from "hooks/use-outside-click-detector";
|
|
import { IIssueLabel } from "@plane/types";
|
|
//hooks
|
|
//components
|
|
import { DragHandle } from "./drag-handle";
|
|
import { LabelName } from "./label-name";
|
|
|
|
//types
|
|
export interface ICustomMenuItem {
|
|
CustomIcon: LucideIcon;
|
|
onClick: (label: IIssueLabel) => void;
|
|
isVisible: boolean;
|
|
text: string;
|
|
key: string;
|
|
}
|
|
|
|
interface ILabelItemBlock {
|
|
label: IIssueLabel;
|
|
isDragging: boolean;
|
|
customMenuItems: ICustomMenuItem[];
|
|
dragHandleProps: DraggableProvidedDragHandleProps;
|
|
handleLabelDelete: (label: IIssueLabel) => void;
|
|
isLabelGroup?: boolean;
|
|
}
|
|
|
|
export const LabelItemBlock = (props: ILabelItemBlock) => {
|
|
const { label, isDragging, customMenuItems, dragHandleProps, handleLabelDelete, isLabelGroup } = props;
|
|
// states
|
|
const [isMenuActive, setIsMenuActive] = useState(false);
|
|
// refs
|
|
const actionSectionRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
useOutsideClickDetector(actionSectionRef, () => setIsMenuActive(false));
|
|
|
|
return (
|
|
<div className="group flex items-center">
|
|
<div className="flex items-center">
|
|
<DragHandle isDragging={isDragging} dragHandleProps={dragHandleProps} />
|
|
<LabelName color={label.color} name={label.name} isGroup={isLabelGroup ?? false} />
|
|
</div>
|
|
|
|
<div
|
|
ref={actionSectionRef}
|
|
className={`absolute right-3 flex items-start gap-3.5 px-4 ${
|
|
isMenuActive || isLabelGroup
|
|
? "opacity-100"
|
|
: "opacity-0 group-hover:pointer-events-auto group-hover:opacity-100"
|
|
} ${isLabelGroup && "-top-0.5"}`}
|
|
>
|
|
<CustomMenu ellipsis buttonClassName="h-4 w-4 leading-4 text-custom-sidebar-text-400">
|
|
{customMenuItems.map(
|
|
({ isVisible, onClick, CustomIcon, text, key }) =>
|
|
isVisible && (
|
|
<CustomMenu.MenuItem key={key} onClick={() => onClick(label)}>
|
|
<span className="flex items-center justify-start gap-2">
|
|
<CustomIcon className="h-4 w-4" />
|
|
<span>{text}</span>
|
|
</span>
|
|
</CustomMenu.MenuItem>
|
|
)
|
|
)}
|
|
</CustomMenu>
|
|
{!isLabelGroup && (
|
|
<div className="py-0.5">
|
|
<button className="flex h-4 w-4 items-center justify-start gap-2" onClick={() => handleLabelDelete(label)}>
|
|
<X className="h-4 w-4 flex-shrink-0 text-custom-sidebar-text-400" />
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|