import { canvasThemes } from "@/lib/canvas-theme"; import { useThemeStore } from "@/stores/use-theme-store"; import type { CanvasConnection, CanvasNodeData, ConnectionHandle, Position } from "../types"; export function ConnectionPath({ connection, from, to, active, onSelect, }: { connection: CanvasConnection; from: CanvasNodeData; to: CanvasNodeData; active: boolean; onSelect: () => void; }) { const theme = canvasThemes[useThemeStore((state) => state.theme)]; const startX = from.position.x + from.width; const startY = from.position.y + from.height / 2; const endX = to.position.x; const endY = to.position.y + to.height / 2; const dx = Math.abs(endX - startX); const curvature = Math.max(dx * 0.5, 50); const pathD = `M ${startX} ${startY} C ${startX + curvature} ${startY}, ${endX - curvature} ${endY}, ${endX} ${endY}`; return ( { event.stopPropagation(); onSelect(); }} /> ); } export function ActiveConnectionPath({ node, handle, mouseWorld, }: { node?: CanvasNodeData; handle: ConnectionHandle; mouseWorld: Position; }) { const theme = canvasThemes[useThemeStore((state) => state.theme)]; if (!node) return null; const startX = handle.handleType === "source" ? node.position.x + node.width : mouseWorld.x; const startY = handle.handleType === "source" ? node.position.y + node.height / 2 : mouseWorld.y; const endX = handle.handleType === "source" ? mouseWorld.x : node.position.x; const endY = handle.handleType === "source" ? mouseWorld.y : node.position.y + node.height / 2; const distance = Math.abs(endX - startX); const pathD = `M ${startX} ${startY} C ${startX + distance * 0.5} ${startY}, ${endX - distance * 0.5} ${endY}, ${endX} ${endY}`; return ; }