0.0.21 • Published 6 years ago
react-power-tree v0.0.21
react-power-tree
 
 
Installation
npm install react-power-treeCurrent version requires react and material-ui as dependencies. Please check peerDependencies in package.json. 
Usage
import PowerTree from 'react-power-tree';Developers can choose to provide static data to render tree view or recursively add child nodes in dynamic way.
Online Examples
Static tree view
<PowerTree
    data={data}
    options={options} // optional
    onNodeSelect={(nodeData) => {
        console.log(nodeData);
    }}
/>Attributes of node
| Key | Type | Required | Detail | 
|---|---|---|---|
| name | string | Y | The name of child nodes with same parent node must be different from each other | 
| children | array | N | Array of child node data | 
| defaultExpanded | boolean | N | Default value is false | 
| icon | react component | N | Default value is directory or file icon | 
Options
contextMenu
Popup when right clicking node. If null or empty, right click won't show the menu
| Field | Type | Required | Details | 
|---|---|---|---|
| items | array | Y | menu items. keys: icon, label | 
| onSelect | func | Y | onSelect(label, nodeData) => {} | 
Dynamic tree view
<PowerTree
    data={initData}
    options={options}
    onNodeSelect={(nodeData) => {
        console.log(nodeData)
    }}
    onNodeExpand={(nodeData, operations) => {
        const {addChildren} = operations;
        const childNodes = [...data];
        addChildren(childNodes);
    }}
/>0.0.21
6 years ago
0.0.20
6 years ago
0.0.19
6 years ago
0.0.18
6 years ago
0.0.17
6 years ago
0.0.16
6 years ago
0.0.14
6 years ago
0.0.13
6 years ago
0.0.12
6 years ago
0.0.11
6 years ago
0.0.10
6 years ago
0.0.9
6 years ago
0.0.8
6 years ago
0.0.7
6 years ago
0.0.6
6 years ago
0.0.5
6 years ago
0.0.4
6 years ago
0.0.3
6 years ago
0.0.2
6 years ago
0.0.1
6 years ago