UNPKG

8.66 kBMarkdownView Raw
1# rc-tree
2
3Tree component.
4
5[![NPM version][npm-image]][npm-url] [![dumi](https://img.shields.io/badge/docs%20by-dumi-blue?style=flat-square)](https://github.com/umijs/dumi) [![build status][github-actions-image]][github-actions-url] [![Test coverage][codecov-image]][codecov-url] [![Dependencies][david-image]][david-url] [![DevDependencies][david-dev-image]][david-dev-url] [![npm download][download-image]][download-url] [![bundle size][bundlephobia-image]][bundlephobia-url]
6
7[npm-image]: http://img.shields.io/npm/v/rc-tree.svg?style=flat-square
8[npm-url]: http://npmjs.org/package/rc-tree
9[github-actions-image]: https://github.com/react-component/tree/workflows/CI/badge.svg
10[github-actions-url]: https://github.com/react-component/tree/actions
11[codecov-image]: https://img.shields.io/codecov/c/github/react-component/tree/master.svg?style=flat-square
12[codecov-url]: https://codecov.io/gh/react-component/tree/branch/master
13[david-url]: https://david-dm.org/react-component/tree
14[david-image]: https://david-dm.org/react-component/tree/status.svg?style=flat-square
15[david-dev-url]: https://david-dm.org/react-component/tree?type=dev
16[david-dev-image]: https://david-dm.org/react-component/tree/dev-status.svg?style=flat-square
17[download-image]: https://img.shields.io/npm/dm/rc-tree.svg?style=flat-square
18[download-url]: https://npmjs.org/package/rc-tree
19[bundlephobia-url]: https://bundlephobia.com/result?p=rc-tree
20[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/rc-tree
21
22## Screenshots
23
24<img src="https://t.alipayobjects.com/images/T15BpfXn8nXXXXXXXX.png" width="288"/>
25
26## Feature
27
28- Support all popular browsers, including Internet Explorer 9 and above.
29
30## Example
31
32http://localhost:9001/
33
34online example: https://tree.react-component.now.sh/
35
36## Install
37
38[![rc-tree](https://nodei.co/npm/rc-tree.png)](https://npmjs.org/package/rc-tree)
39
40## Usage
41> Note: `import "rc-tree/assets/index.css"`
42
43see examples
44
45## API
46
47### Tree props
48
49| name | description | type | default |
50| --- | --- | --- | --- |
51| autoExpandParent | whether auto expand parent treeNodes | bool | false |
52| checkable | whether support checked | bool/React Node | false |
53| checkedKeys | Controlled checked treeNodes(After setting, defaultCheckedKeys will not work). Note: parent and children nodes are associated, if the parent node's key exists, it all children node will be checked, and vice versa. When set checkable and checkStrictly, it should be an object, which contains checked array and halfChecked array. | String[]/{checked:Array<String>,halfChecked:Array<String>} | [] |
54| checkStrictly | check node precisely, parent and children nodes are not associated | bool | false |
55| className | additional css class of root dom node | String | '' |
56| defaultCheckedKeys | default checked treeNodes | String[] | [] |
57| defaultExpandedKeys | expand specific treeNodes | String[] | [] |
58| defaultExpandAll | expand all treeNodes | bool | false |
59| defaultExpandParent | auto expand parent treeNodes when init | bool | true |
60| defaultSelectedKeys | default selected treeNodes | String[] | [] |
61| disabled | whether disabled the tree | bool | false |
62| draggable | whether can drag treeNode. (drag events are not supported in Internet Explorer 8 and earlier versions or Safari 5.1 and earlier versions.) | bool \| ({ node }) => boolean | false |
63| expandedKeys | Controlled expand specific treeNodes | String[] | - |
64| filterTreeNode | filter some treeNodes as you need. it should return true | function(node) | - |
65| icon | customize icon. When you pass component, whose render will receive full TreeNode props as component props | element/Function(props) | - |
66| loadedKeys | Mark node is loaded when `loadData` is true | String[] | - |
67| loadData | load data asynchronously and the return value should be a promise | function(node) | - |
68| multiple | whether multiple select | bool | false |
69| prefixCls | prefix class | String | 'rc-tree' |
70| selectable | whether can be selected | bool | true |
71| selectedKeys | Controlled selected treeNodes(After setting, defaultSelectedKeys will not work) | String[] | [] |
72| showIcon | whether show icon | bool | true |
73| showLine | whether show line | bool | false |
74| treeData | treeNodes data Array, if set it then you need not to construct children TreeNode. (value should be unique across the whole array) | array<{key,title,children, [disabled, selectable]}> | - |
75| onCheck | click the treeNode/checkbox to fire | function(checkedKeys, e:{checked: bool, checkedNodes, node, event, nativeEvent}) | - |
76| onExpand | fire on treeNode expand or not | function(expandedKeys, {expanded: bool, node, nativeEvent}) | - |
77| onDragEnd | it execs when fire the tree's dragend event | function({event,node}) | - |
78| onDragEnter | it execs when fire the tree's dragenter event | function({event,node,expandedKeys}) | - |
79| onDragLeave | it execs when fire the tree's dragleave event | function({event,node}) | - |
80| onDragOver | it execs when fire the tree's dragover event | function({event,node}) | - |
81| onDragStart | it execs when fire the tree's dragstart event | function({event,node}) | - |
82| onDrop | it execs when fire the tree's drop event | function({event, node, dragNode, dragNodesKeys}) | - |
83| onLoad | Trigger when a node is loaded. If you set the `loadedKeys`, you must handle `onLoad` to avoid infinity loop | function(loadedKeys, {event, node}) | - |
84| onMouseEnter | call when mouse enter a treeNode | function({event,node}) | - |
85| onMouseLeave | call when mouse leave a treeNode | function({event,node}) | - |
86| onRightClick | select current treeNode and show customized contextmenu | function({event,node}) | - |
87| onSelect | click the treeNode to fire | function(selectedKeys, e:{selected: bool, selectedNodes, node, event, nativeEvent}) | - |
88| switcherIcon | specific the switcher icon. | ReactNode / (props: TreeNodeAttribute) => ReactNode | - |
89| virtual | Disable virtual scroll when `false` | boolean | - |
90| allowDrop | Whether to allow drop on node | ({ dragNode, dropNode, dropPosition }) => boolean | - |
91| dropIndicatorRender | The indicator to render when dragging | ({ dropPosition, dropLevelOffset, indent: number, prefixCls }) => ReactNode| - |
92| direction | Display direction of the tree, it may affect dragging behavior | `ltr` \| `rtl` | - |
93| expandAction | Tree open logic, optional: false \| `click` \| `doubleClick` | string \| boolean | `click` |
94
95### TreeNode props
96
97> note: if you have a lot of TreeNode, like more than 1000,
98> make the parent node is collapsed by default, will obvious effect, very fast.
99> Because the children hide TreeNode will not insert into dom.
100
101| name | description | type | default |
102| --- | --- | --- | --- |
103| className | additional class to treeNode | String | '' |
104| checkable | control node checkable if Tree is checkable | bool | false |
105| style | set style to treeNode | Object | '' |
106| disabled | whether disabled the treeNode | bool | false |
107| disableCheckbox | whether disable the treeNode' checkbox | bool | false |
108| title | tree/subTree's title | String/element/((data: DataNode) => React.ReactNode) | '---' |
109| key | it's used with tree props's (default)ExpandedKeys / (default)CheckedKeys / (default)SelectedKeys. you'd better to set it, and it must be unique in the tree's all treeNodes | String | treeNode's position |
110| isLeaf | whether it's leaf node | bool | false |
111| icon | customize icon. When you pass component, whose render will receive full TreeNode props as component props | element/Function(props) | - |
112| switcherIcon | specific the switcher icon. | ReactNode / (props: TreeNodeAttribute) => ReactNode | - |
113
114## Note
115
116The number of treeNodes can be very large, but when enable `checkable`, it will spend more computing time, so we cached some calculations(e.g. `this.treeNodesStates`), to avoid double computing. But, this bring some restrictions, **when you async load treeNodes, you should render tree like this** `{this.state.treeData.length ? <Tree ...>{this.state.treeData.map(t => <TreeNode ... />)}</Tree> : 'loading tree'}`
117
118## Development
119
120```bash
121npm install
122npm start
123```
124
125## Test Case
126
127http://localhost:8018/tests/runner.html?coverage
128
129## Coverage
130
131http://localhost:8018/node_modules/rc-server/node_modules/node-jscover/lib/front-end/jscoverage.html?w=http://localhost:8018/tests/runner.html?coverage
132
133## License
134
135rc-tree is released under the MIT license.
136
137## Other tree views
138
139- [zTree](http://www.treejs.cn/)
140- [jqTree](https://mbraak.github.io/jqTree/)
141- [jquery.treeselect](https://travistidwell.com/jquery.treeselect.js/)
142- [Angular Multi Select Tree](https://a5hik.github.io/angular-multi-select-tree/)