mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
92 lines
2.9 KiB
TypeScript
92 lines
2.9 KiB
TypeScript
import { useEffect, useRef, useState } from "react";
|
|
import { addDays } from "date-fns";
|
|
import { Plus } from "lucide-react";
|
|
// hooks
|
|
import { useChart } from "../hooks";
|
|
// ui
|
|
import { Tooltip } from "@plane/ui";
|
|
// helpers
|
|
import { renderFormattedDate, renderFormattedPayloadDate } from "helpers/date-time.helper";
|
|
// types
|
|
import { IBlockUpdateData, IGanttBlock } from "../types";
|
|
|
|
type Props = {
|
|
block: IGanttBlock;
|
|
blockUpdateHandler: (block: any, payload: IBlockUpdateData) => void;
|
|
};
|
|
|
|
export const ChartAddBlock: React.FC<Props> = (props) => {
|
|
const { block, blockUpdateHandler } = props;
|
|
// states
|
|
const [isButtonVisible, setIsButtonVisible] = useState(false);
|
|
const [buttonXPosition, setButtonXPosition] = useState(0);
|
|
const [buttonStartDate, setButtonStartDate] = useState<Date | null>(null);
|
|
// refs
|
|
const containerRef = useRef<HTMLDivElement>(null);
|
|
// chart hook
|
|
const { currentViewData } = useChart();
|
|
|
|
const handleButtonClick = () => {
|
|
if (!currentViewData) return;
|
|
|
|
const { startDate: chartStartDate, width } = currentViewData.data;
|
|
const columnNumber = buttonXPosition / width;
|
|
|
|
const startDate = addDays(chartStartDate, columnNumber);
|
|
const endDate = addDays(startDate, 1);
|
|
|
|
blockUpdateHandler(block.data, {
|
|
start_date: renderFormattedPayloadDate(startDate) ?? undefined,
|
|
target_date: renderFormattedPayloadDate(endDate) ?? undefined,
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
const container = containerRef.current;
|
|
|
|
if (!container) return;
|
|
|
|
const handleMouseMove = (e: MouseEvent) => {
|
|
if (!currentViewData) return;
|
|
|
|
setButtonXPosition(e.offsetX);
|
|
|
|
const { startDate: chartStartDate, width } = currentViewData.data;
|
|
const columnNumber = buttonXPosition / width;
|
|
|
|
const startDate = addDays(chartStartDate, columnNumber);
|
|
setButtonStartDate(startDate);
|
|
};
|
|
|
|
container.addEventListener("mousemove", handleMouseMove);
|
|
|
|
return () => {
|
|
container?.removeEventListener("mousemove", handleMouseMove);
|
|
};
|
|
}, [buttonXPosition, currentViewData]);
|
|
|
|
return (
|
|
<div
|
|
className="relative h-full w-full"
|
|
onMouseEnter={() => setIsButtonVisible(true)}
|
|
onMouseLeave={() => setIsButtonVisible(false)}
|
|
>
|
|
<div ref={containerRef} className="h-full w-full" />
|
|
{isButtonVisible && (
|
|
<Tooltip tooltipContent={buttonStartDate && renderFormattedDate(buttonStartDate)}>
|
|
<button
|
|
type="button"
|
|
className="absolute top-1/2 -translate-x-1/2 -translate-y-1/2 h-8 w-8 bg-custom-background-80 p-1.5 rounded border border-custom-border-300 grid place-items-center text-custom-text-200 hover:text-custom-text-100"
|
|
style={{
|
|
marginLeft: `${buttonXPosition}px`,
|
|
}}
|
|
onClick={handleButtonClick}
|
|
>
|
|
<Plus className="h-3.5 w-3.5" />
|
|
</button>
|
|
</Tooltip>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|