fix update mechanism

alfred-data
Nils Schneider 2012-06-06 06:03:30 +02:00
parent f38fa69f68
commit 912ea821e9
1 changed files with 23 additions and 22 deletions

View File

@ -187,12 +187,35 @@ var visible = {clients: true, vpn: true}
function reload() { function reload() {
d3.json("nodes.json", function(json) { d3.json("nodes.json", function(json) {
// update existing nodes with new info
// XXX inefficient data structure
json.nodes.forEach(function(d, i) {
var n
force.nodes().forEach(function(x) {if (x.id == d.id) n = x})
if (n) {
for (var key in d)
if (d.hasOwnProperty(key))
n[key] = d[key]
json.nodes[i] = n
}
})
json.links.forEach(function(d, i) {
var n
force.links().forEach(function(x) {if (x.id == d.id) n = x})
if (n) {
json.links[i] = n
}
})
// replace indices with real objects
json.links.forEach( function(d) { json.links.forEach( function(d) {
if (typeof d.source == "number") d.source = json.nodes[d.source]; if (typeof d.source == "number") d.source = json.nodes[d.source];
if (typeof d.target == "number") d.target = json.nodes[d.target]; if (typeof d.target == "number") d.target = json.nodes[d.target];
}) })
// count uplinks
json.links.forEach(function(d) { json.links.forEach(function(d) {
var node, other var node, other
@ -214,28 +237,6 @@ function reload() {
} }
}) })
// update existing nodes with new info
json.nodes.forEach(function(d, i) {
var n
force.nodes().forEach(function(x) {if (x.id == d.id) n = x})
if (n) {
for (var key in d)
if (d.hasOwnProperty(key))
n[key] = d[key]
json.nodes[i] = n
}
})
json.links.forEach(function(d) {
var n
force.links().forEach(function(x) {if (x.id == d.id) n = x})
if (n) {
d.source = n.source
d.target = n.target
}
})
data = json data = json
update() update()