forked from assisrafael/react-bootstrap-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTreeViewExamples.jsx
86 lines (81 loc) · 2.08 KB
/
TreeViewExamples.jsx
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
import React from 'react';
import { Form, FormInput, TreeView } from '../dist/main';
export function TreeViewExamples() {
const nodes = [
{
attrA: '1. Attr A Value',
children: [
{
attrA: '1.1. Attr A Value',
children: [
{
attrA: '1.1.1. Attr A Value',
children: [
{
attrA: '1.1.1.1. Attr A Value',
children: [
{
attrA: '1.1.1.1.1. Attr A Value',
children: [
{
attrA: '1.1.1.1.1.1. Attr A Value',
children: [
{
attrA: '1.1.1.1.1.1.1. Attr A Value',
},
],
},
],
},
],
},
],
},
],
},
],
},
{
attrA: '2. Attr A Value',
children: [
{
attrA: '2.1. Attr A Value',
},
{
attrA: '2.2. Attr A Value',
},
],
},
];
return (
<div>
<h1 className="h4">Simple Tree View</h1>
<TreeView
nodes={nodes}
template={(item, index, parentItem) => (
<em>
{item.attrA} (index: {index} parent: {parentItem?.attrA || <em>None</em>})
</em>
)}
childrenPath={'children'}
draggable={true}
/>
<div className="mt-4">
<h1 className="h4">Tree View with Form</h1>
<Form initialValues={{ nodes }} onSubmit={(newValues) => console.log(newValues)}>
<TreeView
nodes={nodes}
template={(item, index, parentItem, path) => (
<em>
<p>Path: path</p>
<FormInput name={`nodes${path}.attrA`} />
</em>
)}
childrenPath={'children'}
draggable={true}
/>
</Form>
</div>
</div>
);
}