mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
13e6a67321
* Gantt Drag and drop migration and enable Dnd in Modules and Cycles Gantt * fix minor UI and code issues
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import { MutableRefObject } from "react";
|
|
// ui
|
|
import { Loader } from "@plane/ui";
|
|
// components
|
|
import { IBlockUpdateData, IGanttBlock } from "@/components/gantt-chart/types";
|
|
import { GanttDnDHOC } from "../gantt-dnd-HOC";
|
|
import { handleOrderChange } from "../utils";
|
|
import { CyclesSidebarBlock } from "./block";
|
|
// types
|
|
|
|
type Props = {
|
|
title: string;
|
|
blockUpdateHandler: (block: any, payload: IBlockUpdateData) => void;
|
|
blocks: IGanttBlock[] | null;
|
|
enableReorder: boolean;
|
|
};
|
|
|
|
export const CycleGanttSidebar: React.FC<Props> = (props) => {
|
|
const { blockUpdateHandler, blocks, enableReorder } = props;
|
|
|
|
const handleOnDrop = (
|
|
draggingBlockId: string | undefined,
|
|
droppedBlockId: string | undefined,
|
|
dropAtEndOfList: boolean
|
|
) => {
|
|
handleOrderChange(draggingBlockId, droppedBlockId, dropAtEndOfList, blocks, blockUpdateHandler);
|
|
};
|
|
|
|
return (
|
|
<div className="h-full">
|
|
{blocks ? (
|
|
blocks.map((block, index) => (
|
|
<GanttDnDHOC
|
|
key={block.id}
|
|
id={block.id}
|
|
isLastChild={index === blocks.length - 1}
|
|
isDragEnabled={enableReorder}
|
|
onDrop={handleOnDrop}
|
|
>
|
|
{(isDragging: boolean, dragHandleRef: MutableRefObject<HTMLButtonElement | null>) => (
|
|
<CyclesSidebarBlock
|
|
block={block}
|
|
enableReorder={enableReorder}
|
|
isDragging={isDragging}
|
|
dragHandleRef={dragHandleRef}
|
|
/>
|
|
)}
|
|
</GanttDnDHOC>
|
|
))
|
|
) : (
|
|
<Loader className="space-y-3 pr-2">
|
|
<Loader.Item height="34px" />
|
|
<Loader.Item height="34px" />
|
|
<Loader.Item height="34px" />
|
|
<Loader.Item height="34px" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|