Skip to content

Commit 6201e71

Browse files
committed
feat(tree): Adiciona visualização de árvore
1 parent 40317fd commit 6201e71

File tree

8 files changed

+7383
-0
lines changed

8 files changed

+7383
-0
lines changed

web/public/arf.js

+188
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
function init(json) {
2+
var margin = [20, 120, 20, 140],
3+
width = 1920 - margin[1] - margin[3],
4+
height = 800 - margin[0] - margin[2],
5+
i = 0,
6+
duration = 1250,
7+
root
8+
9+
var tree = d3.layout.tree().size([height, width])
10+
11+
var diagonal = d3.svg.diagonal().projection(function (d) {
12+
return [d.y, d.x]
13+
})
14+
15+
var vis = d3
16+
.select('body')
17+
.append('svg:svg')
18+
.attr('width', width + margin[1] + margin[3])
19+
.attr('height', height + margin[0] + margin[2])
20+
.append('svg:g')
21+
.attr('transform', 'translate(' + margin[3] + ',' + margin[0] + ')')
22+
23+
root = json
24+
root.x0 = height / 2
25+
root.y0 = 0
26+
27+
function collapse(d) {
28+
if (d.children) {
29+
d._children = d.children
30+
d._children.forEach(collapse)
31+
d.children = null
32+
}
33+
}
34+
35+
/* function toggleAll(d) {
36+
if (d.children) {
37+
d.children.forEach(toggleAll);
38+
toggle(d);
39+
}
40+
} */
41+
root.children.forEach(collapse)
42+
update(root)
43+
44+
function update(source) {
45+
// var duration = d3.event && d3.event.altKey ? 5000 : 500;
46+
47+
// Compute the new tree layout.
48+
var nodes = tree.nodes(root).reverse()
49+
50+
// Normalize for fixed-depth.
51+
nodes.forEach(function (d) {
52+
d.y = d.depth * 180
53+
})
54+
55+
// Update the nodes…
56+
var node = vis.selectAll('g.node').data(nodes, function (d) {
57+
return d.id || (d.id = ++i)
58+
})
59+
60+
// Enter any new nodes at the parent's previous position.
61+
var nodeEnter = node
62+
.enter()
63+
.append('svg:g')
64+
.attr('class', 'node')
65+
.attr('transform', function (d) {
66+
return 'translate(' + source.y0 + ',' + source.x0 + ')'
67+
})
68+
.on('click', function (d) {
69+
toggle(d)
70+
update(d)
71+
})
72+
73+
nodeEnter
74+
.append('svg:circle')
75+
.attr('r', 1e-6)
76+
.style('fill', function (d) {
77+
return d._children ? 'lightsteelblue' : '#fff'
78+
})
79+
80+
nodeEnter
81+
.append('a')
82+
.attr('target', '_blank')
83+
.attr('xlink:href', function (d) {
84+
return d.url
85+
})
86+
.append('svg:text')
87+
.attr('x', function (d) {
88+
return d.children || d._children ? -10 : 10
89+
})
90+
.attr('dy', '.35em')
91+
.attr('text-anchor', function (d) {
92+
return d.children || d._children ? 'end' : 'start'
93+
})
94+
.text(function (d) {
95+
return d.name
96+
})
97+
.style('fill: rgb(0, 0, 0)', function (d) {
98+
return d.free ? 'black' : '#999'
99+
})
100+
.style('fill-opacity', 1e-6)
101+
102+
nodeEnter.append('svg:title').text(function (d) {
103+
return d.description
104+
})
105+
106+
// Transition nodes to their new position.
107+
var nodeUpdate = node
108+
.transition()
109+
.duration(duration)
110+
.attr('transform', function (d) {
111+
return 'translate(' + d.y + ',' + d.x + ')'
112+
})
113+
114+
nodeUpdate
115+
.select('circle')
116+
.attr('r', 6)
117+
.style('fill', function (d) {
118+
return d._children ? 'lightsteelblue' : '#fff'
119+
})
120+
121+
nodeUpdate.select('text').style('fill-opacity', 1)
122+
123+
// Transition exiting nodes to the parent's new position.
124+
var nodeExit = node
125+
.exit()
126+
.transition()
127+
.duration(duration)
128+
.attr('transform', function (d) {
129+
return 'translate(' + source.y + ',' + source.x + ')'
130+
})
131+
.remove()
132+
133+
nodeExit.select('circle').attr('r', 1e-6)
134+
135+
nodeExit.select('text').style('fill-opacity', 1e-6)
136+
137+
// Update the links…
138+
var link = vis.selectAll('path.link').data(tree.links(nodes), function (d) {
139+
return d.target.id
140+
})
141+
142+
// Enter any new links at the parent's previous position.
143+
link
144+
.enter()
145+
.insert('svg:path', 'g')
146+
.attr('class', 'link')
147+
.attr('d', function (d) {
148+
var o = { x: source.x0, y: source.y0 }
149+
return diagonal({ source: o, target: o })
150+
})
151+
.transition()
152+
.duration(duration)
153+
.attr('d', diagonal)
154+
155+
// Transition links to their new position.
156+
link.transition().duration(duration).attr('d', diagonal)
157+
158+
// Transition exiting nodes to the parent's new position.
159+
link
160+
.exit()
161+
.transition()
162+
.duration(duration)
163+
.attr('d', function (d) {
164+
var o = { x: source.x, y: source.y }
165+
return diagonal({ source: o, target: o })
166+
})
167+
.remove()
168+
169+
// Stash the old positions for transition.
170+
nodes.forEach(function (d) {
171+
d.x0 = d.x
172+
d.y0 = d.y
173+
})
174+
}
175+
176+
// Toggle children.
177+
function toggle(d) {
178+
if (d.children) {
179+
d._children = d.children
180+
d.children = null
181+
} else {
182+
d.children = d._children
183+
d._children = null
184+
}
185+
}
186+
}
187+
188+
globalThis.init = init

0 commit comments

Comments
 (0)