react-dnd-tree
v1.1.3
Published
Drag and drop tree component for React using d3
Downloads
12
Readme
React drag-and-drop for directed graphs
Features
- Represent any directed graph
- Multiple root nodes possible
- Nodes can have multiple parents
- Drag and drop node movement
- Edges between nodes can be drawn intuitively
- Edges can be deleted by selecting them and clicking the Delete key
- Graph can be panned and zoomed
Install
npm i --save react-dnd-tree
Usage
import DnDTree from 'react-dnd-tree'
Using SSR (Server-Side Rendering)
function Component(props) {
const DnDTree = require('react-dnd-tree').default
return (
<DnDTree
nodes={model.nodes}
edges={model.edges}
height={400}
edgeDraw
errorHandler={errorHandler}
updateHandler={updateHandler}
edgeType='curve'
onNodeSelected={nodeSelected}
/>
)
}
Options
nodes
: list of node objects of format { label }edges
: list of edge objects of format { from: int, to: int } where from, to are indices into the nodes listedgeDraw
: default=True, whether you can draw edges between nodeserrorHandler
: callback function taking an error messageonNodeSelected
: callback function taking the selected node objectupdateHandler
: callback taking (nodes, edges) every time the user updates the graphedgeType
: (curve | line) the line interpolation style between nodes