import { DraggableProvided, DraggableStateSnapshot } from "@hello-pangea/dnd"; import { observer } from "mobx-react"; import { MoreVertical } from "lucide-react"; // hooks import { CycleGanttSidebarBlock } from "components/cycles"; import { BLOCK_HEIGHT } from "components/gantt-chart/constants"; import { useGanttChart } from "components/gantt-chart/hooks"; // components // helpers import { IGanttBlock } from "components/gantt-chart/types"; import { cn } from "helpers/common.helper"; import { findTotalDaysInRange } from "helpers/date-time.helper"; // types // constants type Props = { block: IGanttBlock; enableReorder: boolean; provided: DraggableProvided; snapshot: DraggableStateSnapshot; }; export const CyclesSidebarBlock: React.FC = observer((props) => { const { block, enableReorder, provided, snapshot } = props; // store hooks const { updateActiveBlockId, isBlockActive } = useGanttChart(); const duration = findTotalDaysInRange(block.start_date, block.target_date); return (
updateActiveBlockId(block.id)} onMouseLeave={() => updateActiveBlockId(null)} ref={provided.innerRef} {...provided.draggableProps} >
{enableReorder && ( )}
{duration && (
{duration} day{duration > 1 ? "s" : ""}
)}
); });