forked from github/plane
c4602951c9
* fix: kanban board block menu click * fix: menu active/disable * fix: drag n drop delete modal * fix: quick action button in all the layouts * chore: toast for drag & drop api
112 lines
4.0 KiB
TypeScript
112 lines
4.0 KiB
TypeScript
import { useState, useRef } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Draggable } from "@hello-pangea/dnd";
|
|
import { MoreHorizontal } from "lucide-react";
|
|
// components
|
|
import { Tooltip } from "@plane/ui";
|
|
// hooks
|
|
import useOutsideClickDetector from "hooks/use-outside-click-detector";
|
|
// types
|
|
import { IIssue } from "types";
|
|
import { IIssueResponse } from "store/issues/types";
|
|
|
|
type Props = {
|
|
issues: IIssueResponse | undefined;
|
|
issueIdList: string[] | null;
|
|
quickActions: (issue: IIssue, customActionButton?: React.ReactElement) => React.ReactNode;
|
|
};
|
|
|
|
export const CalendarIssueBlocks: React.FC<Props> = observer((props) => {
|
|
const { issues, issueIdList, quickActions } = props;
|
|
// 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 },
|
|
});
|
|
};
|
|
|
|
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 (
|
|
<>
|
|
{issueIdList?.map((issueId, index) => {
|
|
if (!issues?.[issueId]) return null;
|
|
|
|
const issue = issues?.[issueId];
|
|
return (
|
|
<Draggable key={issue.id} draggableId={issue.id} index={index}>
|
|
{(provided, snapshot) => (
|
|
<div
|
|
className="p-1 px-2 relative cursor-pointer"
|
|
{...provided.draggableProps}
|
|
{...provided.dragHandleProps}
|
|
ref={provided.innerRef}
|
|
onClick={() => handleIssuePeekOverview(issue)}
|
|
>
|
|
{issue?.tempId !== undefined && (
|
|
<div className="absolute top-0 left-0 w-full h-full animate-pulse bg-custom-background-100/20 z-[99999]" />
|
|
)}
|
|
|
|
<div
|
|
className={`group/calendar-block h-8 w-full shadow-custom-shadow-2xs rounded py-1.5 px-1 flex items-center justify-between gap-1.5 border-[0.5px] border-custom-border-100 ${
|
|
snapshot.isDragging
|
|
? "shadow-custom-shadow-rg bg-custom-background-90"
|
|
: "bg-custom-background-100 hover:bg-custom-background-90"
|
|
}`}
|
|
>
|
|
<div className="flex items-center gap-1.5 h-full">
|
|
<span
|
|
className="h-full w-0.5 rounded flex-shrink-0"
|
|
style={{
|
|
backgroundColor: issue.state_detail.color,
|
|
}}
|
|
/>
|
|
<div className="text-xs text-custom-text-300 flex-shrink-0">
|
|
{issue.project_detail.identifier}-{issue.sequence_id}
|
|
</div>
|
|
<Tooltip tooltipHeading="Title" tooltipContent={issue.name}>
|
|
<div className="text-xs truncate">{issue.name}</div>
|
|
</Tooltip>
|
|
</div>
|
|
<div
|
|
className={`h-5 w-5 hidden group-hover/calendar-block:block ${isMenuActive ? "!block" : ""}`}
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
}}
|
|
>
|
|
{quickActions(issue, customActionButton)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</Draggable>
|
|
);
|
|
})}
|
|
</>
|
|
);
|
|
});
|