Base Node
A handle with some basic styling used for creating a shared design among all handles in your application.
Dependencies:
@xyflow/reactInstallation
Make sure to follow the prerequisites before installing the component.
npx shadcn@latest add https://ui-components-git-tooltip-node-refactor-xyflow.vercel.app/base-handle
Usage
1. Copy the component into your app
import React, { memo } from "react";
import { NodeProps, Position } from "@xyflow/react";
import { BaseHandle } from "@/components/base-handle";
import { BaseNode } from "@/components/base-node";
// You can use Handle components only inside of custom nodes.
const CustomNode = memo(({ selected }: NodeProps) => {
return (
<BaseNode className="flex px-0 py-5" selected={selected}>
<BaseHandle id="target-1" type="target" position={Position.Left} />
<div className="mx-10">A node with two handles</div>
<BaseHandle id="source-1" type="source" position={Position.Right} />
</BaseNode>
);
});
CustomNode.displayName = "BaseHandleDemo";
export default CustomNode;
2. Connect the component with your React Flow application.
"use client";
import { Background, ReactFlow } from "@xyflow/react";
import DemoWrapper from "@/components/demo-wrapper";
import Demo from "@/registry/components/base-handle/demo";
const defaultNodes = [
{
id: "1",
position: { x: 200, y: 200 },
data: {},
type: "customNode",
},
];
const nodeTypes = {
customNode: Demo,
};
export default function DemoPage() {
return (
<DemoWrapper>
<div className="h-full w-full">
<ReactFlow defaultNodes={defaultNodes} nodeTypes={nodeTypes} fitView>
<Background />
</ReactFlow>
</div>
</DemoWrapper>
);
}