forked from react-component/tree-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.tsx
411 lines (387 loc) · 12.4 KB
/
basic.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
import Dialog from 'rc-dialog';
import 'rc-dialog/assets/index.css';
import React from 'react';
import '../assets/index.less';
import TreeSelect, { SHOW_PARENT, TreeNode } from '../src';
import { gData } from './utils/dataUtil';
function isLeaf(value) {
if (!value) {
return false;
}
let queues = [...gData];
while (queues.length) {
// BFS
const item = queues.shift();
if (item.value === value) {
if (!item.children) {
return true;
}
return false;
}
if (item.children) {
queues = queues.concat(item.children);
}
}
return false;
}
function findPath(value, data) {
const sel = [];
function loop(selected, children) {
for (let i = 0; i < children.length; i += 1) {
const item = children[i];
if (selected === item.value) {
sel.push(item);
return;
}
if (item.children) {
loop(selected, item.children);
if (sel.length) {
sel.push(item);
return;
}
}
}
}
loop(value, data);
return sel;
}
class Demo extends React.Component {
state = {
tsOpen: false,
visible: false,
searchValue: '0-0-0-label',
value: '0-0-0-value1',
// value: ['0-0-0-0-value', '0-0-0-1-value', '0-0-0-2-value'],
lv: { value: '0-0-0-value', label: 'spe label' },
multipleValue: [],
simpleSearchValue: 'test111',
simpleTreeData: [
{ key: 1, pId: 0, label: 'test1', value: 'test1' },
{ key: 121, pId: 0, label: 'test2', value: 'test2' },
{ key: 11, pId: 1, label: 'test11', value: 'test11' },
{ key: 12, pId: 1, label: 'test12', value: 'test12' },
{ key: 111, pId: 11, label: 'test111', value: 'test111' },
],
treeDataSimpleMode: {
id: 'key',
rootPId: 0,
},
};
onClick = () => {
this.setState({
visible: true,
});
};
onClose = () => {
this.setState({
visible: false,
});
};
onSearch = (value, ...args) => {
console.log('Do Search:', value, ...args);
this.setState({ searchValue: value });
};
onChange = (value, ...rest) => {
console.log('onChange', value, ...rest);
this.setState({ value });
};
onChangeChildren = (...args) => {
const { value: preValue } = this.state;
console.log('onChangeChildren', ...args);
const value = args[0];
const pre = value ? preValue : undefined;
this.setState({ value: isLeaf(value) ? value : pre });
};
onChangeLV = (value, ...args) => {
console.log('labelInValue', value, ...args);
if (!value) {
this.setState({ lv: undefined });
return;
}
const path = findPath(value.value, gData)
.map(i => i.label)
.reverse()
.join(' > ');
this.setState({ lv: { value: value.value, label: path } });
};
onMultipleChange = value => {
console.log('onMultipleChange', value);
this.setState({ multipleValue: value });
};
onSelect = (...args) => {
// use onChange instead
console.log(args);
};
onDropdownVisibleChange = visible => {
const { value } = this.state;
console.log(visible, value);
if (Array.isArray(value) && value.length > 1 && value.length < 3) {
window.alert('please select more than two item or less than one item.');
return false;
}
return true;
};
filterTreeNode = (input, child) => String(child.props.title).indexOf(input) === 0;
render() {
const {
visible,
value,
searchValue,
tsOpen,
multipleValue,
lv,
simpleTreeData,
simpleSearchValue,
treeDataSimpleMode,
} = this.state;
return (
<div style={{ margin: 20 }}>
<h2>tree-select in dialog</h2>
<button type="button" className="btn btn-primary" onClick={this.onClick}>
show dialog
</button>
{visible ? (
<Dialog
visible={visible}
animation="zoom"
maskAnimation="fade"
onClose={this.onClose}
// style={{ width: 600, height: 400, overflow: 'auto' }}
>
<div style={{ height: 600, paddingTop: 100 }}>
<TreeSelect
getPopupContainer={triggerNode => triggerNode.parentNode}
style={{ width: 300 }}
transitionName="rc-tree-select-dropdown-slide-up"
choiceTransitionName="rc-tree-select-selection__choice-zoom"
// dropdownStyle={{ maxHeight: 200, overflow: 'auto', zIndex: 1500 }}
placeholder={<i>请下拉选择</i>}
showSearch
allowClear
treeLine
value={value}
treeData={gData}
treeNodeFilterProp="label"
filterTreeNode={false}
onSearch={this.onSearch}
onChange={this.onChange}
onSelect={this.onSelect}
/>
</div>
</Dialog>
) : null}
<h2>single select</h2>
<TreeSelect
style={{ width: 300 }}
transitionName="rc-tree-select-dropdown-slide-up"
choiceTransitionName="rc-tree-select-selection__choice-zoom"
// dropdownStyle={{ maxHeight: 200, overflow: 'auto' }}
placeholder={<i>请下拉选择</i>}
showSearch
allowClear
treeLine
searchValue={searchValue}
value={value}
treeData={gData}
treeNodeFilterProp="label"
filterTreeNode={false}
onSearch={this.onSearch}
open={tsOpen}
onChange={(val, ...args) => {
console.log('onChange', val, ...args);
this.setState({ value: val });
}}
onDropdownVisibleChange={v => {
console.log('single onDropdownVisibleChange', v);
this.setState({
tsOpen: v,
});
}}
onSelect={this.onSelect}
onPopupScroll={evt => {
console.log('[ onPopupScroll evt ] ===>', evt);
}}
/>
<h2>single select (just select children)</h2>
<TreeSelect
style={{ width: 300 }}
transitionName="rc-tree-select-dropdown-slide-up"
choiceTransitionName="rc-tree-select-selection__choice-zoom"
// dropdownStyle={{ maxHeight: 200, overflow: 'auto' }}
placeholder={<i>请下拉选择</i>}
showSearch
allowClear
treeLine
value={value}
treeData={gData}
treeNodeFilterProp="label"
filterTreeNode={false}
onChange={this.onChangeChildren}
/>
<h2>multiple select</h2>
<TreeSelect
style={{ width: 300 }}
transitionName="rc-tree-select-dropdown-slide-up"
choiceTransitionName="rc-tree-select-selection__choice-zoom"
// dropdownStyle={{ maxHeight: 200, overflow: 'auto' }}
placeholder={<i>请下拉选择</i>}
multiple
value={multipleValue}
treeData={gData}
treeNodeFilterProp="title"
onChange={this.onMultipleChange}
onSelect={this.onSelect}
allowClear
/>
<h2>check select</h2>
<TreeSelect
open
allowClear
className="check-select"
transitionName="rc-tree-select-dropdown-slide-up"
choiceTransitionName="rc-tree-select-selection__choice-zoom"
style={{ width: 300 }}
// dropdownStyle={{ height: 200, overflow: 'auto' }}
// dropdownPopupAlign={{
// overflow: { adjustY: 0, adjustX: 0 },
// offset: [0, 2],
// }}
onDropdownVisibleChange={this.onDropdownVisibleChange}
placeholder={<i>请下拉选择</i>}
treeLine
maxTagTextLength={10}
value={value}
autoClearSearchValue
treeData={gData}
treeNodeFilterProp="title"
treeCheckable
showCheckedStrategy={SHOW_PARENT}
onChange={this.onChange}
onSelect={this.onSelect}
maxTagCount="responsive"
maxTagPlaceholder={valueList => {
// console.log('Max Tag Rest Value:', valueList);
return `${valueList.length} rest...`;
}}
/>
<h2>labelInValue & show path</h2>
<TreeSelect
style={{ width: 500 }}
transitionName="rc-tree-select-dropdown-slide-up"
choiceTransitionName="rc-tree-select-selection__choice-zoom"
// dropdownStyle={{ maxHeight: 200, overflow: 'auto' }}
placeholder={<i>请下拉选择</i>}
showSearch
allowClear
treeLine
value={lv}
labelInValue
treeData={gData}
treeNodeFilterProp="label"
filterTreeNode={false}
onChange={this.onChangeLV}
/>
<h2>use treeDataSimpleMode</h2>
<TreeSelect
style={{ width: 300 }}
// dropdownStyle={{ maxHeight: 200, overflow: 'auto' }}
placeholder={<i>请下拉选择</i>}
// treeLine
maxTagTextLength={10}
searchValue={simpleSearchValue}
onSearch={val => {
this.setState({ simpleSearchValue: val });
}}
value={value}
treeData={simpleTreeData}
treeNodeFilterProp="title"
treeDataSimpleMode={treeDataSimpleMode}
treeCheckable
showCheckedStrategy={SHOW_PARENT}
onChange={this.onChange}
onSelect={(...args) => {
this.setState({ simpleSearchValue: '' });
this.onSelect(...args);
}}
/>
<h2>Testing in extreme conditions (Boundary conditions test) </h2>
<TreeSelect
style={{ width: 200 }}
dropdownStyle={{ maxHeight: 200, overflow: 'auto' }}
defaultValue="leaf1"
multiple
treeCheckable
showCheckedStrategy={SHOW_PARENT}
treeDefaultExpandAll
treeData={[
{ key: '', value: '', label: 'empty value', children: [] },
{
key: '0',
value: '0',
label: '0 label',
children: [
{ key: '00', value: '00', label: '00 label', children: [] },
{ key: '01', value: '01', label: '01 label', children: [] },
],
},
]}
onChange={(val, ...args) => console.log(val, ...args)}
/>
<h2>use TreeNode Component (not recommend)</h2>
<TreeSelect
style={{ width: 200 }}
// dropdownStyle={{ maxHeight: 200, overflow: 'auto' }}
defaultValue="leaf1"
treeDefaultExpandAll
treeNodeFilterProp="title"
filterTreeNode={this.filterTreeNode}
onChange={(val, ...args) => console.log(val, ...args)}
>
<TreeNode value="" title="parent 1" key="">
<TreeNode value="parent 1-0" title="parent 1-0" key="0-1-0">
<TreeNode value="leaf1" title="my leaf" key="random" />
<TreeNode value="leaf2" title="your leaf" key="random1" disabled />
</TreeNode>
<TreeNode value="parent 1-1" title="parent 1-1" key="0-1-1">
<TreeNode
value="sss"
title={<span style={{ color: 'red' }}>sss</span>}
key="random3"
/>
<TreeNode value="same value1" title="same txtle" key="0-1-1-1">
<TreeNode
value="same value10"
title="same titlexd"
key="0-1-1-1-0"
style={{ color: 'red', background: 'green' }}
/>
</TreeNode>
</TreeNode>
</TreeNode>
<TreeNode value="same value2" title="same title" key="0-2">
<TreeNode value="2same value" title="2same title" key="0-2-0" />
</TreeNode>
<TreeNode value="same value3" title="same title" key="0-3" />
</TreeSelect>
<h2>title render</h2>
<TreeSelect<{ label: string }>
open
style={{ width: 300 }}
treeData={gData}
treeTitleRender={node => node.label + 'ok'}
/>
<h2 style={{ marginTop: 140 }}>onPopupScroll</h2>
<TreeSelect
open
style={{ width: 300 }}
treeData={gData}
treeDefaultExpandAll
onPopupScroll={evt => {
console.log('[ onPopupScroll evt ] ===>', evt);
}}
/>
</div>
);
}
}
export default Demo;