forked from ElemeFE/element-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTree.tsx
137 lines (128 loc) · 3.64 KB
/
Tree.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import * as React from 'react'
import { Tree } from 'element-react'
import { Tree as TreeNext } from 'element-react/next'
class Component extends React.Component<{}, {}> {
state = {
data: [{
id: 1,
label: '一级 1',
children: [{
id: 4,
label: '二级 1-1',
children: [{
id: 9,
label: '三级 1-1-1'
}, {
id: 10,
label: '三级 1-1-2'
}]
}]
}, {
id: 2,
label: '一级 2',
children: [{
id: 5,
label: '二级 2-1'
}, {
id: 6,
label: '二级 2-2'
}]
}, {
id: 3,
label: '一级 3',
children: [{
id: 7,
label: '二级 3-1'
}, {
id: 8,
label: '二级 3-2'
}]
}]
}
filterNodeMethod = (value, data, node) => false
renderContent = (nodeModel, data, store) => (<div>element</div>)
load = (node, resolve) => { }
onCheckChange = (data, checked, indeterminate) => { }
onNodeClicked = (data, node) => { }
onCurrentChange = (data, node) => { }
onNodeExpand = (data, nodeModel, node) => { }
onNodeCollapse = (data, nodeModel, node) => { }
render() {
return (
<div>
<Tree className="className" style={{ width: 100 }} />
<Tree
autoExpandParent={true}
checkStrictly={false}
currentNodeKey="12"
defaultCheckedKeys={["12", "23"]}
defaultExpandedKeys={["12", "23"]}
defaultExpandAll={false}
data={this.state.data}
emptyText="无"
expandOnClickNode={true}
filterNodeMethod={this.filterNodeMethod}
renderContent={this.renderContent}
isShowCheckbox={true}
accordion={true}
indent={2}
nodeKey={'key'}
options={{ children: 'children', label: 'label', icon: 'icon' }}
lazy={true}
highlightCurrent={true}
load={this.load}
onCheckChange={this.onCheckChange}
onNodeClicked={this.onNodeClicked}
onCurrentChange={this.onCurrentChange}
onNodeExpand={this.onNodeExpand}
onNodeCollapse={this.onNodeCollapse}
/>
<TreeNext className="className" style={{ width: 100 }} />
<TreeNext
autoExpandParent={true}
checkStrictly={false}
currentNodeKey="12"
defaultCheckedKeys={["12", "23"]}
defaultExpandedKeys={["12", "23"]}
defaultExpandAll={false}
data={this.state.data}
emptyText="无"
expandOnClickNode={true}
filterNodeMethod={this.filterNodeMethod}
renderContent={this.renderContent}
isShowCheckbox={true}
accordion={true}
indent={2}
nodeKey={'key'}
options={{ children: 'children', label: 'label', icon: 'icon' }}
lazy={true}
highlightCurrent={true}
load={this.load}
onCheckChange={this.onCheckChange}
onNodeClicked={this.onNodeClicked}
onCurrentChange={this.onCurrentChange}
onNodeExpand={this.onNodeExpand}
onNodeCollapse={this.onNodeCollapse}
/>
</div>
)
}
}
class TreeComponent extends Tree {
componentDidmount() {
this.className()
this.classNames()
this.style()
this.filter('')
this.getCheckedKeys()
this.getCheckedKeys(true)
this.setCheckedKeys(['a', 'b'])
this.setCheckedKeys(['a', 'b'], true)
this.getCheckedNodes()
this.getCheckedNodes(true)
this.setCheckedNodes(['a', 'b'])
this.setCheckedNodes(['a', 'b'], true)
this.setChecked('a', true)
this.setChecked('a', true, true)
}
}