Skip to content

Instantly share code, notes, and snippets.

@tiagofassoni
Last active December 15, 2015 14:29
Show Gist options
  • Save tiagofassoni/5274386 to your computer and use it in GitHub Desktop.
Save tiagofassoni/5274386 to your computer and use it in GitHub Desktop.
Just some experimentation with d3.js
{ "name": "I need someone who...",
"children":[
{
"name": "Wants to make the World a better place",
"children": [
{"name": "gave language classes to monks"},
{"name": "teaches people how to ride bikes"},
{"name": "taught math to poor people"},
{"name": "Participates at Wikipedia"}
]
},
{ "name": "Can do fancy presentations",
"children": [
{"name": "seriously, look at this!"}
]
},
{
"name": "Wears many hats",
"children":[
{"name": "tech support"},
{"name": "staff training"},
{"name": "talked in technical conferences"},
{"name": "sysadmin",
"children": [
{"name": "and programmer"}
]
},
{"name": "degree in Applied Mathematics",
"children": [
{"name": "with research in graph theory"}
]
},
{"name": "worked in Business Intelligence"}
]
},
{
"name": "Thinks outside the box",
"children":[
{"name": "practices meditation"},
{"name": "commutes by bike"},
{"name": "vanilla resumes are boring"},
{"name": "couchsurfing"}
]
},
{
"name": "Can work under any environment",
"children":[
{"name": "big or small"},
{"name": "with/without pressure"},
{"name": "in different countries",
"children": [
{"name": "born and raised in Brazil",
"children": [{"name": "lived and worked in Spain for 1 year"}]
}
]},
{"name": "NGOs, small companies, banks"}
]
},
{
"name": "Can talk to the customer",
"children": [
{"name": "did tech support",
"children": [{"name": "In 3 different languages"}]
}
]
},
{"name": "Knows human languages",
"children": [
{"name": "portuguese"},
{"name": "english"},
{"name": "spanish"},
{"name": "some japanese and catalan"}
]
},
{
"name": "Knows programming languages",
"children": [
{"name": "Python"},
{"name": "Worked in Opensource software"},
{"name": "Bash, C, Perl, VBA, SAS..."}
]
}
]
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<link type="text/css" rel="stylesheet" href="style.css"/>
<script type="text/javascript" src="d3.v3.min.js"></script>
<!-- <script type="text/javascript" src="d3/d3.layout.js"></script> -->
<style type="text/css">
.node circle {
cursor: pointer;
fill: #fff;
stroke: steelblue;
stroke-width: 1.5px;
}
.node text {
font-size: 14px;
}
path.link {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}
</style>
</head>
<body>
<div id="body">
<div id="header">
A Fancy Resume
<div class="hint">Click on the ball to expand or collapse.
There is also a boring version <a href="standard_resume.doc">here</a>
</div></div>
</div>
</div>
<script type="text/javascript">
var //m = [20, 120, 20, 120],
w = 1000, //- m[1] - m[3],
h = 1000,// - m[0] - m[2],
i = 0,
root;
var diameter = 900;
var tree = d3.layout.tree()
.size([360, diameter / 2 - 50])
//.size([h, w]);
// var tree = d3.layout.tree()
// .size([360, diameter / 2 - 120])
// .separation(function(a, b) { return (a.parent == b.parent ? 1 : 2) / a.depth; });
var diagonal = d3.svg.diagonal.radial()
.projection(function(d) { return [d.y, d.x / 180 * Math.PI]; });
// var diagonal = d3.svg.diagonal()
// .projection(function(d) { return [d.y, d.x]; });
var vis = d3.select("#body").append("svg:svg")
.attr("width", w )//+ m[1] + m[3])
.attr("height", h)// - m[0] - m[2])
.append("svg:g")
.attr("transform", "translate(" + eval(diameter / 2 + 20 ) + "," + eval(diameter / 2 - 40) + ")");
//.attr("transform", "translate(" + m[3] + "," + m[0] + ")");
d3.json("habilidades.json", function(json) {
console.debug(json)
root = json;
root.x0 = 0;
root.y0 = 0;
function toggleAll(d) {
if (d.children) {
d.children.forEach(toggleAll);
toggle(d);
}
}
// Initialize the display to show a few nodes.
toggleAll(root)
//root.children.forEach(toggleAll);
//toggle(root.children[3]);
update(root);
});
function update(source) {
var duration = d3.event && d3.event.altKey ? 5000 : 500;
// Compute the new tree layout.
var nodes = tree.nodes(root).reverse();
// Normalize for fixed-depth.
// nodes.forEach(function(d) { console.log(d.y);console.log(d.depth); d.y = d.depth * 180; });
// Update the nodes…
var node = vis.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("svg:g")
.attr("class", "node")
.attr("transform", function(d) { return "rotate(" + (d.x - 90) + ")translate(" + d.y + ")"; })
.on("click", function(d) { toggle(d); update(d); });
nodeEnter.append("svg:circle")
.attr("r", 1e-6)
.style("fill", function(d) { return d._children ? "#fff" : "green"; });
nodeEnter.append("svg:text")
//.attr("x", function(d) { return d.children || d._children ? -10 : 10; })
.attr("dy", ".35em")
//.attr("text-anchor", function(d) { return d.children || d._children ? "end" : "start"; })
.attr("text-anchor", "middle")
// .attr("transform", function(d) {
// return "rotate(" - (d.x - 90) + ")";
// })
//.attr("transform", function(d) { return "rotate(" + (- d.x) + ")"; })//< 180 ? "translate(8)" : "rotate(270)translate(-8)"; })
.text(function(d) { return d.name; })
.style("fill-opacity", 1e-6);
// Transition nodes to their new position.
var nodeUpdate = node.transition()
.duration(duration)
.attr("transform", function(d) { return "rotate(" + (d.x - 90) + ")translate(" + d.y + ")";});
//return "translate(" + d.y + "," + d.x + ")"; });
nodeUpdate.select("circle")
.attr("r", 7)
.style("fill", function(d) { return d._children ? "#fff" : "green"; });
nodeUpdate.select("text")
.style("fill-opacity", 1)
.attr("transform", function(d) { return "rotate(" + (- d.x+90) + ")translate(0,-16)"; });
// Transition exiting nodes to the parent's new position.
var nodeExit = node.exit().transition()
.duration(duration)
.attr("transform", function(d) { return "rotate(" + (d.x - 90) + ")translate(" + d.y + ")";})//return "translate(" + source.y + "," + source.x + ")"; })
.remove();
nodeExit.select("circle")
.attr("r", 1e-6);
nodeExit.select("text")
.style("fill-opacity", 1e-6);
// Update the links…
var link = vis.selectAll("path.link")
.data(tree.links(nodes), function(d) { return d.target.id; });
// Enter any new links at the parent's previous position.
link.enter().insert("svg:path", "g")
.attr("class", "link")
.attr("d", function(d) {
var o = {x: source.x0, y: source.y0};
return diagonal({source: o, target: o});
})
.transition()
.duration(duration)
.attr("d", diagonal);
// 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;
});
}
d3.select(self.frameElement).style("height", diameter - 150 + "px");
// Toggle children.
function toggle(d) {
if (d.children) {
d._children = d.children;
d.children = null;
} else {
d.children = d._children;
d._children = null;
}
}
</script>
</body>
</html>
body {
/*background: url(texture-noise.png);*/
overflow: auto;
margin: 0;
font-size: 14px;
font-family: "Helvetica Neue", Helvetica;
}
#chart, #header, #footer {
position: absolute;
top: 0;
}
#header, #footer {
z-index: 1;
display: block;
font-size: 36px;
font-weight: 300;
text-shadow: 0 1px 0 #fff;
}
#header.inverted, #footer.inverted {
color: #fff;
text-shadow: 0 1px 4px #000;
}
#header {
top: 80px;
right: 140px;
/*width: 1000px;*/
text-align: right;
}
#footer {
top: 680px;
right: 140px;
text-align: right;
}
rect {
fill: none;
pointer-events: all;
}
pre {
font-size: 18px;
}
line {
stroke: #000;
stroke-width: 1.5px;
}
.string, .regexp {
color: #f39;
}
.keyword {
color: #00c;
}
.comment {
color: #777;
font-style: oblique;
}
.number {
color: #369;
}
.class, .special {
color: #1181B8;
}
a:link, a:visited {
color: #000;
text-decoration: none;
}
a:hover {
color: #666;
}
.hint {
position: absolute;
right: 0;
width: 1280px;
font-size: 12px;
color: #999;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment