mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
dd65d03d33
* feat: issue bulk operations * style: bulk operations action bar * chore: remove edition separation
74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
import { MutableRefObject } from "react";
|
|
// ui
|
|
import { Loader } from "@plane/ui";
|
|
// components
|
|
import { IGanttBlock, IBlockUpdateData } from "@/components/gantt-chart/types";
|
|
// hooks
|
|
import { TSelectionHelper } from "@/hooks/use-multiple-select";
|
|
import { GanttDnDHOC } from "../gantt-dnd-HOC";
|
|
import { handleOrderChange } from "../utils";
|
|
// types
|
|
import { IssuesSidebarBlock } from "./block";
|
|
|
|
type Props = {
|
|
blockUpdateHandler: (block: any, payload: IBlockUpdateData) => void;
|
|
blocks: IGanttBlock[] | null;
|
|
enableReorder: boolean;
|
|
enableSelection: boolean;
|
|
showAllBlocks?: boolean;
|
|
selectionHelpers?: TSelectionHelper;
|
|
};
|
|
|
|
export const IssueGanttSidebar: React.FC<Props> = (props) => {
|
|
const { blockUpdateHandler, blocks, enableReorder, enableSelection, showAllBlocks = false, selectionHelpers } = props;
|
|
|
|
const handleOnDrop = (
|
|
draggingBlockId: string | undefined,
|
|
droppedBlockId: string | undefined,
|
|
dropAtEndOfList: boolean
|
|
) => {
|
|
handleOrderChange(draggingBlockId, droppedBlockId, dropAtEndOfList, blocks, blockUpdateHandler);
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
{blocks ? (
|
|
blocks.map((block, index) => {
|
|
const isBlockVisibleOnSidebar = block.start_date && block.target_date;
|
|
|
|
// hide the block if it doesn't have start and target dates and showAllBlocks is false
|
|
if (!showAllBlocks && !isBlockVisibleOnSidebar) return;
|
|
|
|
return (
|
|
<GanttDnDHOC
|
|
key={block.id}
|
|
id={block.id}
|
|
isLastChild={index === blocks.length - 1}
|
|
isDragEnabled={enableReorder}
|
|
onDrop={handleOnDrop}
|
|
>
|
|
{(isDragging: boolean, dragHandleRef: MutableRefObject<HTMLButtonElement | null>) => (
|
|
<IssuesSidebarBlock
|
|
block={block}
|
|
enableReorder={enableReorder}
|
|
enableSelection={enableSelection}
|
|
isDragging={isDragging}
|
|
dragHandleRef={dragHandleRef}
|
|
selectionHelpers={selectionHelpers}
|
|
/>
|
|
)}
|
|
</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>
|
|
);
|
|
};
|