This repository was archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathApp.js
executable file
·200 lines (181 loc) · 6.84 KB
/
App.js
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
/* eslint no-magic-numbers: 0 */
import React, {Component} from 'react';
import {Sunburst} from '../lib';
class App extends Component {
constructor() {
super();
this.state = {
// width: 500,
// height: 500,
// padding: 10,
// innerRadius: 20,
transitionDuration: 1000,
selectedPath: ['living room'],
dataVersion: 1,
data: {
name: 'house',
children: [
{
name: 'living room',
children: [
{name: 'couch', size: 5},
{name: 'tv', size: 3},
{name: 'desk', size: 4},
{name: 'chair', size: 1},
{name: 'table', size: 4},
{name: 'piano', size: 2}
]
},
{
name: 'kitchen',
color: '#006',
children: [
{name: 'fridge', size: 3, color: '#600'},
{name: 'dishwasher', size: 2, color: '#060'},
{name: 'sink', size: 1},
{name: 'cabinets', size: 7},
{name: 'oven', size: 2}
]
},
{name: 'coat closet', size: 4},
{name: 'storage closet', size: 10},
{name: 'bathroom', size: 6},
{
name: 'master bedroom',
children: [
{name: 'bed', size: 8},
{name: 'recliner', size: 3},
{name: 'dresser', size: 4},
{name: 'master bath', size: 6},
{name: 'closet', size: 5}
]
},
{
name: 'bedroom',
children: [
{name: 'bed', size: 5},
{name: 'desk', size: 3},
{name: 'dresser', size: 4},
{name: 'closet', size: 5}
]
},
{name: 'hall', size: 10}
]
}
}
this.setProps = this.setProps.bind(this);
this.mutateData = this.mutateData.bind(this);
this.period = 3;
this.updateInterval = setInterval(this.mutateData, 1000 * this.period);
}
setProps(newProps) {
this.setState(newProps);
}
render() {
const {data, selectedPath} = this.state;
const selectedPathStr = selectedPath.join(',');
const paths = getPathStrs(data, '');
const options = paths.map(path => (
<option value={path} key={path}>
{path.split(',').join('->') || 'root'}
</option>
));
const selectChange = e => {
this.setState({selectedPath: e.target.value.split(',')})
};
return (
<div>
<h2>Sunburst Demo</h2>
<p>Click a node, or select it in the dropdown, to select a subtree.</p>
<p>Every {this.period} seconds a node will be added, removed, resized, or renamed</p>
<Sunburst
setProps={this.setProps}
{...this.state}
/>
<select value={selectedPathStr} onChange={selectChange}>
{options}
</select>
</div>
)
}
mutateData() {
const {data, dataVersion} = this.state;
const newSize = Math.round(Math.random() * 200) / 10;
// Pick a random node
const nodes = getPathStrs(data, '').map(getNode(data));
const {node, parent} = nodes[Math.floor(Math.random() * nodes.length)];
// Pick a random operation to execute on this node
const operations = [addChild, resizeNode, removeNode, renameNode];
const operation = operations[Math.floor(Math.random() * operations.length)];
operation();
this.setState({dataVersion: dataVersion + 1, data: data});
function addChild() {
const newName = 'box ' + dataVersion;
const newChild = {name: newName, size: newSize};
if(node.children) {
node.children.push(newChild);
}
else {
node.children = [newChild];
delete node.size;
}
}
function resizeNode() {
// only valid on leaf nodes
if(node.size) { node.size = newSize; }
}
function removeNode() {
// only remove leaf nodes, otherwise we'd be removing too much!
if(!node.children) {
parent.children.splice(parent.children.indexOf(node),1);
if(!parent.children.length) {
delete parent.children;
parent.size = newSize;
}
}
}
function renameNode() {
// Alternate name! Eventually most of the house will be cheese!
//
// Note that because we're using the node path (of names) as the
// data binding key, renaming a node causes it (and all its children)
// to disappear for transitionDuration time, then it reappears with
// its new name. The only way I see to avoid this missing period
// would be to key off some other id than name - otherwise how are
// we to tell the difference between a rename and actually removing
// one node and adding another with a different name?
node.name = 'cheese ' + dataVersion;
}
}
}
function getPathStrs(data, head) {
let out = [head];
for(let i = 0; i < (data.children || []).length; i++) {
const childi = data.children[i];
out = out.concat(getPathStrs(childi, addPath(head, childi.name)));
}
return out;
}
function addPath(head, name) {
return head ? (head + ',' + name) : name;
}
function getNode(root) {
return function(pathStr) {
const path = (pathStr || '').split(',');
let node = root;
const lineage = [node];
for(let i = 0; i < path.length; i++) {
const part = path[i];
for(let j = 0; j < node.children.length; j++) {
const childj = node.children[j];
if(childj.name === part) {
node = childj;
lineage.push(node);
break;
}
}
}
return {node: node, parent: lineage[lineage.length - 2]};
}
}
export default App;