import React from "react"; import { BarTask } from "../../types/bar-task"; type ArrowProps = { taskFrom: BarTask; taskTo: BarTask; rowHeight: number; arrowIndent: number; }; export const Arrow: React.FC = ({ taskFrom, taskTo, rowHeight, arrowIndent, }) => { const indexCompare = taskFrom.index > taskTo.index ? -1 : 1; const taskToEndPosition = taskTo.y + taskTo.height / 2; const path = `M ${taskFrom.x2} ${taskFrom.y + taskFrom.height / 2} h ${arrowIndent} v ${(indexCompare * rowHeight) / 2} H ${taskTo.x1 - arrowIndent} V ${taskToEndPosition} h ${arrowIndent}`; const trianglePoints = `${taskTo.x1},${taskToEndPosition} ${taskTo.x1 - 5},${taskToEndPosition - 5} ${taskTo.x1 - 5},${taskToEndPosition + 5}`; return ( ); };