Skip to content

Instantly share code, notes, and snippets.

@a10k
Last active November 6, 2015 20:28
Show Gist options
  • Save a10k/6d940295998a14e52c41 to your computer and use it in GitHub Desktop.
Save a10k/6d940295998a14e52c41 to your computer and use it in GitHub Desktop.
A Managed Object Model Diagram Proposal
<html xml:lang="en" lang="en">
<meta charset="utf-8">
<style>
.node {
cursor: pointer;
}
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 1.5px;
}
.node text {
font: 10px sans-serif;
}
.link {
fill: none;
stroke: #AAA;
stroke-width: 0.5px;
}
body {
overflow: hidden;
}
</style>
<body>
<div id="body"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.js"></script>
<script>
var margin = {
top: 20,
right: 20,
bottom: 20,
left: 20
},
width = 1376 - margin.right - margin.left,
height = 786 - margin.top - margin.bottom;
var root = {"class": "ManagedObject",
"mim":"COM1",
"PMCounters": 3938,
"children": [{
"class": "AgglomerativeCluster",
"PMCounters": 3938,
"children":[{
"class": "AlarmFM",
"PMCounters": 6714
}]
}, {
"class": "CommunityStructure",
"PMCounters": 3812
}, {
"class": "HierarchicalCluster",
"PMCounters": 6714
}, {
"class": "MergeEdge",
"PMCounters": 743
}]
};
var i = 0,
duration = 400,
rectW = 150,
rectH = 200;
var tree = d3.layout.tree().nodeSize([rectW + 40, rectH + 30]);
var diagonal = d3.svg.diagonal()
.projection(function (d) {
return [d.x + rectW / 2, d.y + rectH / 2];
});
var svg = d3.select("#body").append("svg").attr("width", width).attr("height", height)
.call(zm = d3.behavior.zoom().scaleExtent([0.1,2]).on("zoom", redraw)).append("g")
.attr("transform", "translate(" + width/2 + "," + 20 + ")");
//necessary so that zoom knows where to zoom and unzoom from
zm.translate([width/2, 20]);
root.x0 = 0;
root.y0 = height / 2;
function collapse(d) {
if (d.children) {
d._children = d.children;
d._children.forEach(collapse);
d.children = null;
}
}
root.children.forEach(collapse);
update(root);
d3.select("#body").style("height", "800px");
function update(source) {
// Compute the new tree layout.
var nodes = tree.nodes(root).reverse(),
links = tree.links(nodes);
// Normalize for fixed-depth.
nodes.forEach(function (d) {
d.y = d.depth * 400;
});
// Update the nodes…
var node = svg.selectAll("g.node")
.data(nodes, function (d) {
return d.id || (d.id = ++i);
});
// Enter any new nodes at the parent's previous position.
var nodeEnter = node.enter().append("g")
.attr("class", "node")
.attr("transform", function (d) {
return "translate(" + source.x0 + "," + source.y0 + ")";
})
.on("click", click);
nodeEnter.append("rect")
.attr("width", rectW)
.attr("height", rectH)
.attr("stroke", "#AD3333")
.attr("stroke-width", 1)
.style("fill", function (d) {
return d._children ? "#FFFF94" : "#FFFFCC";
});
//inner rectangle box
nodeEnter.append("rect")
.attr("width", rectW)
.attr("height", 40)
.attr("stroke", "#AD3333")
.attr("stroke-width", 0.5)
.style("fill", function (d) {
return d._children ? "#FFFF94" : "#FFFF94";
});
nodeEnter.append("text")
.attr("x", rectW / 2)
.attr("y", 15)
.attr("dy", ".75em")
.attr("text-anchor", "middle")
.text(function (d) {
return d.class;
});
// Transition nodes to their new position.
var nodeUpdate = node.transition()
.duration(duration)
.attr("transform", function (d) {
return "translate(" + d.x + "," + d.y + ")";
});
nodeUpdate.select("rect")
.attr("width", rectW)
.attr("height", rectH)
.attr("stroke", "#AD3333")
.attr("stroke-width", 1)
.style("fill", function (d) {
return d._children ? "#FFFF94" : "#FFFFCC";
});
nodeUpdate.select("text")
.style("fill-opacity", 1);
// Transition exiting nodes to the parent's new position.
var nodeExit = node.exit().transition()
.duration(duration)
.attr("transform", function (d) {
return "translate(" + source.x + "," + source.y + ")";
})
.remove();
nodeExit.select("rect")
.attr("width", rectW)
.attr("height", rectH)
//.attr("width", bbox.getBBox().width)""
//.attr("height", bbox.getBBox().height)
.attr("stroke", "#AD3333")
.attr("stroke-width", 1);
nodeExit.select("text");
// Update the links…
var link = svg.selectAll("path.link")
.data(links, function (d) {
return d.target.id;
});
// Enter any new links at the parent's previous position.
link.enter().insert("path", "g")
.attr("class", "link")
.attr("x", rectW / 2)
.attr("y", rectH / 2)
.attr("d", function (d) {
var o = {
x: source.x0,
y: source.y0
};
return diagonal({
source: o,
target: o
});
});
// Transition links to their new position.
link.transition()
.duration(duration)
.attr("d", diagonal);
// Transition exiting nodes to the parent's new position.
link.exit().transition()
.duration(duration)
.attr("d", function (d) {
var o = {
x: source.x,
y: source.y
};
return diagonal({
source: o,
target: o
});
})
.remove();
// Stash the old positions for transition.
nodes.forEach(function (d) {
d.x0 = d.x;
d.y0 = d.y;
});
}
// Toggle children on click.
function click(d) {
if (d.children) {
d._children = d.children;
d.children = null;
} else {
d.children = d._children;
d._children = null;
}
update(d);
}
//Redraw for zoom
function redraw() {
//console.log("here", d3.event.translate, d3.event.scale);
svg.attr("transform",
"translate(" + d3.event.translate + ")"
+ " scale(" + d3.event.scale + ")");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment