mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
106 lines
3.7 KiB
TypeScript
106 lines
3.7 KiB
TypeScript
import { DragDropContext, Draggable, Droppable, DropResult } from "@hello-pangea/dnd";
|
|
// ui
|
|
import { Loader } from "@plane/ui";
|
|
// components
|
|
import { IBlockUpdateData, IGanttBlock } from "@/components/gantt-chart/types";
|
|
import { IssuesSidebarBlock } from "./issues/block";
|
|
// types
|
|
|
|
type Props = {
|
|
title: string;
|
|
blockUpdateHandler: (block: any, payload: IBlockUpdateData) => void;
|
|
blocks: IGanttBlock[] | null;
|
|
enableReorder: boolean;
|
|
enableQuickIssueCreate?: boolean;
|
|
};
|
|
|
|
export const ProjectViewGanttSidebar: React.FC<Props> = (props) => {
|
|
const { blockUpdateHandler, blocks, enableReorder } = props;
|
|
|
|
const handleOrderChange = (result: DropResult) => {
|
|
if (!blocks) return;
|
|
|
|
const { source, destination } = result;
|
|
|
|
// return if dropped outside the list
|
|
if (!destination) return;
|
|
|
|
// return if dropped on the same index
|
|
if (source.index === destination.index) return;
|
|
|
|
let updatedSortOrder = blocks[source.index].sort_order;
|
|
|
|
// update the sort order to the lowest if dropped at the top
|
|
if (destination.index === 0) updatedSortOrder = blocks[0].sort_order - 1000;
|
|
// update the sort order to the highest if dropped at the bottom
|
|
else if (destination.index === blocks.length - 1) updatedSortOrder = blocks[blocks.length - 1].sort_order + 1000;
|
|
// update the sort order to the average of the two adjacent blocks if dropped in between
|
|
else {
|
|
const destinationSortingOrder = blocks[destination.index].sort_order;
|
|
const relativeDestinationSortingOrder =
|
|
source.index < destination.index
|
|
? blocks[destination.index + 1].sort_order
|
|
: blocks[destination.index - 1].sort_order;
|
|
|
|
updatedSortOrder = (destinationSortingOrder + relativeDestinationSortingOrder) / 2;
|
|
}
|
|
|
|
// extract the element from the source index and insert it at the destination index without updating the entire array
|
|
const removedElement = blocks.splice(source.index, 1)[0];
|
|
blocks.splice(destination.index, 0, removedElement);
|
|
|
|
// call the block update handler with the updated sort order, new and old index
|
|
blockUpdateHandler(removedElement.data, {
|
|
sort_order: {
|
|
destinationIndex: destination.index,
|
|
newSortOrder: updatedSortOrder,
|
|
sourceIndex: source.index,
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<DragDropContext onDragEnd={handleOrderChange}>
|
|
<Droppable droppableId="gantt-sidebar">
|
|
{(droppableProvided) => (
|
|
<div
|
|
className="mt-3 max-h-full overflow-y-auto pl-2.5"
|
|
ref={droppableProvided.innerRef}
|
|
{...droppableProvided.droppableProps}
|
|
>
|
|
<>
|
|
{blocks ? (
|
|
blocks.map((block, index) => (
|
|
<Draggable
|
|
key={`sidebar-block-${block.id}`}
|
|
draggableId={`sidebar-block-${block.id}`}
|
|
index={index}
|
|
isDragDisabled={!enableReorder}
|
|
>
|
|
{(provided, snapshot) => (
|
|
<IssuesSidebarBlock
|
|
block={block}
|
|
enableReorder={enableReorder}
|
|
provided={provided}
|
|
snapshot={snapshot}
|
|
/>
|
|
)}
|
|
</Draggable>
|
|
))
|
|
) : (
|
|
<Loader className="space-y-3 pr-2">
|
|
<Loader.Item height="34px" />
|
|
<Loader.Item height="34px" />
|
|
<Loader.Item height="34px" />
|
|
<Loader.Item height="34px" />
|
|
</Loader>
|
|
)}
|
|
{droppableProvided.placeholder}
|
|
</>
|
|
</div>
|
|
)}
|
|
</Droppable>
|
|
</DragDropContext>
|
|
);
|
|
};
|