Placeholder Node
A custom node that can be clicked to create a new node.
Installation
Make sure to follow the prerequisites before installing the component.
npx shadcn@latest add https://ui-components-git-tooltip-node-refactor-xyflow.vercel.app/placeholder-node
Usage
1. Copy the component into your app
"use client";
import {
Background,
ReactFlow,
} from "@xyflow/react";
import { PlaceholderNode } from "@/components/placeholder-node";
const nodeTypes = {
placeholder: PlaceholderNode,
};
const defaultNodes = [
{
id: '1',
data: { label: 'Original Node' },
position: { x: 0, y: 0 },
type: 'default',
},
{
id: '2',
data: { label: '+' },
position: { x: 0, y: 150 },
type: 'placeholder',
},
];
const defaultEdges = [
{
id: '1=>2',
source: '1',
target: '2',
type: 'default',
animated: true,
},
];
export default function Demo() {
return (
<div className="h-full w-full">
<ReactFlow
defaultNodes={defaultNodes}
defaultEdges={defaultEdges}
nodeTypes={nodeTypes}
nodeClickDistance={5}
fitView
>
<Background />
</ReactFlow>
</div>
);
}
2. Connect the component with your React Flow application.
import DemoWrapper from "@/components/demo-wrapper";
import Demo from "@/registry/components/placeholder-node/demo";
export default function DemoPage() {
return (
<DemoWrapper>
<Demo />
</DemoWrapper>
);
}