60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
import { memo } from 'react';
|
|
import { Position, type BezierEdgeProps } from '@reactflow/system';
|
|
import { getBezierPath } from '@reactflow/edge-utils';
|
|
|
|
import BaseEdge from './BaseEdge';
|
|
|
|
const BezierEdge = memo(
|
|
({
|
|
sourceX,
|
|
sourceY,
|
|
targetX,
|
|
targetY,
|
|
sourcePosition = Position.Bottom,
|
|
targetPosition = Position.Top,
|
|
label,
|
|
labelStyle,
|
|
labelShowBg,
|
|
labelBgStyle,
|
|
labelBgPadding,
|
|
labelBgBorderRadius,
|
|
style,
|
|
markerEnd,
|
|
markerStart,
|
|
pathOptions,
|
|
interactionWidth,
|
|
}: BezierEdgeProps) => {
|
|
const [path, labelX, labelY] = getBezierPath({
|
|
sourceX,
|
|
sourceY,
|
|
sourcePosition,
|
|
targetX,
|
|
targetY,
|
|
targetPosition,
|
|
curvature: pathOptions?.curvature,
|
|
});
|
|
|
|
return (
|
|
<BaseEdge
|
|
path={path}
|
|
labelX={labelX}
|
|
labelY={labelY}
|
|
label={label}
|
|
labelStyle={labelStyle}
|
|
labelShowBg={labelShowBg}
|
|
labelBgStyle={labelBgStyle}
|
|
labelBgPadding={labelBgPadding}
|
|
labelBgBorderRadius={labelBgBorderRadius}
|
|
style={style}
|
|
markerEnd={markerEnd}
|
|
markerStart={markerStart}
|
|
interactionWidth={interactionWidth}
|
|
/>
|
|
);
|
|
}
|
|
);
|
|
|
|
BezierEdge.displayName = 'BezierEdge';
|
|
|
|
export default BezierEdge;
|