mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
101 lines
3.2 KiB
TypeScript
101 lines
3.2 KiB
TypeScript
import { FC } from "react";
|
|
|
|
// hooks
|
|
import { useChart } from "../hooks";
|
|
// helpers
|
|
import { ChartDraggable } from "../helpers/draggable";
|
|
import { renderDateFormat } from "helpers/date-time.helper";
|
|
// types
|
|
import { IBlockUpdateData, IGanttBlock } from "../types";
|
|
|
|
export const GanttChartBlocks: FC<{
|
|
itemsContainerWidth: number;
|
|
blocks: IGanttBlock[] | null;
|
|
BlockRender: React.FC<any>;
|
|
blockUpdateHandler: (block: any, payload: IBlockUpdateData) => void;
|
|
enableBlockLeftResize: boolean;
|
|
enableBlockRightResize: boolean;
|
|
enableBlockMove: boolean;
|
|
}> = ({
|
|
itemsContainerWidth,
|
|
blocks,
|
|
BlockRender,
|
|
blockUpdateHandler,
|
|
enableBlockLeftResize,
|
|
enableBlockRightResize,
|
|
enableBlockMove,
|
|
}) => {
|
|
const { activeBlock, dispatch } = useChart();
|
|
|
|
// update the active block on hover
|
|
const updateActiveBlock = (block: IGanttBlock | null) => {
|
|
dispatch({
|
|
type: "PARTIAL_UPDATE",
|
|
payload: {
|
|
activeBlock: block,
|
|
},
|
|
});
|
|
};
|
|
|
|
const handleChartBlockPosition = (
|
|
block: IGanttBlock,
|
|
totalBlockShifts: number,
|
|
dragDirection: "left" | "right" | "move"
|
|
) => {
|
|
const originalStartDate = new Date(block.start_date);
|
|
const updatedStartDate = new Date(originalStartDate);
|
|
|
|
const originalTargetDate = new Date(block.target_date);
|
|
const updatedTargetDate = new Date(originalTargetDate);
|
|
|
|
// update the start date on left resize
|
|
if (dragDirection === "left")
|
|
updatedStartDate.setDate(originalStartDate.getDate() - totalBlockShifts);
|
|
// update the target date on right resize
|
|
else if (dragDirection === "right")
|
|
updatedTargetDate.setDate(originalTargetDate.getDate() + totalBlockShifts);
|
|
// update both the dates on x-axis move
|
|
else if (dragDirection === "move") {
|
|
updatedStartDate.setDate(originalStartDate.getDate() + totalBlockShifts);
|
|
updatedTargetDate.setDate(originalTargetDate.getDate() + totalBlockShifts);
|
|
}
|
|
|
|
// call the block update handler with the updated dates
|
|
blockUpdateHandler(block.data, {
|
|
start_date: renderDateFormat(updatedStartDate),
|
|
target_date: renderDateFormat(updatedTargetDate),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className="relative z-[5] mt-[72px] h-full overflow-hidden overflow-y-auto"
|
|
style={{ width: `${itemsContainerWidth}px` }}
|
|
>
|
|
{blocks &&
|
|
blocks.length > 0 &&
|
|
blocks.map(
|
|
(block) =>
|
|
block.start_date &&
|
|
block.target_date && (
|
|
<div
|
|
key={`block-${block.id}`}
|
|
className={`h-11 ${activeBlock?.id === block.id ? "bg-custom-background-80" : ""}`}
|
|
onMouseEnter={() => updateActiveBlock(block)}
|
|
onMouseLeave={() => updateActiveBlock(null)}
|
|
>
|
|
<ChartDraggable
|
|
block={block}
|
|
BlockRender={BlockRender}
|
|
handleBlock={(...args) => handleChartBlockPosition(block, ...args)}
|
|
enableBlockLeftResize={enableBlockLeftResize}
|
|
enableBlockRightResize={enableBlockRightResize}
|
|
enableBlockMove={enableBlockMove}
|
|
/>
|
|
</div>
|
|
)
|
|
)}
|
|
</div>
|
|
);
|
|
};
|