-
-
Save KpokPatagon/8f7ae155a8c7167154ef61fb4de0a8ed to your computer and use it in GitHub Desktop.
D3.js collapsing tree with boxes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tree" : { | |
"nodeName" : "NODE NAME 1", | |
"name" : "NODE NAME 1", | |
"type" : "type3", | |
"code" : "N1", | |
"label" : "Node name 1", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link NODE NAME 1", | |
"nodeName" : "NODE NAME 1", | |
"direction" : "ASYN" | |
}, | |
"children" : [{ | |
"nodeName" : "NODE NAME 2.1", | |
"name" : "NODE NAME 2.1", | |
"type" : "type1", | |
"code" : "N2.1", | |
"label" : "Node name 2.1", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 1 to 2.1", | |
"nodeName" : "NODE NAME 2.1", | |
"direction" : "SYNC" | |
}, | |
"children" : [{ | |
"nodeName" : "NODE NAME 3.1", | |
"name" : "NODE NAME 3.1", | |
"type" : "type2", | |
"code" : "N3.1", | |
"label" : "Node name 3.1", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 2.1 to 3.1", | |
"nodeName" : "NODE NAME 3.1", | |
"direction" : "SYNC" | |
}, | |
"children" : [] | |
}, { | |
"nodeName" : "NODE NAME 3.2", | |
"name" : "NODE NAME 3.2", | |
"type" : "type2", | |
"code" : "N3.2", | |
"label" : "Node name 3.2", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 2.1 to 3.2", | |
"nodeName" : "NODE NAME 3.1", | |
"direction" : "SYNC" | |
}, | |
"children" : [] | |
} | |
] | |
}, { | |
"nodeName" : "NODE NAME 2.2", | |
"name" : "NODE NAME 2.2", | |
"type" : "type1", | |
"code" : "N2.2", | |
"label" : "Node name 2.2", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 1 to 2.2", | |
"nodeName" : "NODE NAME 2.2", | |
"direction" : "ASYN" | |
}, | |
"children" : [] | |
}, { | |
"nodeName" : "NODE NAME 2.3", | |
"name" : "NODE NAME 2.3", | |
"type" : "type1", | |
"code" : "N2.3", | |
"label" : "Node name 2.3", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 1 to 2.3", | |
"nodeName" : "NODE NAME 2.3", | |
"direction" : "ASYN" | |
}, | |
"children" : [{ | |
"nodeName" : "NODE NAME 3.3", | |
"name" : "NODE NAME 3.3", | |
"type" : "type1", | |
"code" : "N3.3", | |
"label" : "Node name 3.3", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 2.3 to 3.3", | |
"nodeName" : "NODE NAME 3.3", | |
"direction" : "ASYN" | |
}, | |
"children" : [{ | |
"nodeName" : "NODE NAME 4.1", | |
"name" : "NODE NAME 4.1", | |
"type" : "type4", | |
"code" : "N4.1", | |
"label" : "Node name 4.1", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 3.3 to 4.1", | |
"nodeName" : "NODE NAME 4.1", | |
"direction" : "SYNC" | |
}, | |
"children" : [] | |
} | |
] | |
}, { | |
"nodeName" : "NODE NAME 3.4", | |
"name" : "NODE NAME 3.4", | |
"type" : "type1", | |
"code" : "N3.4", | |
"label" : "Node name 3.4", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 2.3 to 3.4", | |
"nodeName" : "NODE NAME 3.4", | |
"direction" : "ASYN" | |
}, | |
"children" : [{ | |
"nodeName" : "NODE NAME 4.2", | |
"name" : "NODE NAME 4.2", | |
"type" : "type4", | |
"code" : "N4.2", | |
"label" : "Node name 4.2", | |
"version" : "v1.0", | |
"link" : { | |
"name" : "Link node 3.4 to 4.2", | |
"nodeName" : "NODE NAME 4.1", | |
"direction" : "ASYN" | |
}, | |
"children" : [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>D3.js collapsible tree with boxes</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" type="text/css" href="tree-boxes.css"> | |
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> | |
<script src="https://d3js.org/d3.v3.min.js" type="text/javascript"></script> | |
<script src="tree-boxes.js" type="text/javascript"></script> | |
</head> | |
<body> | |
<div class="container"> | |
<ct-visualization id="tree-container"></ct-visualization> | |
<script> | |
d3.json("data-example.json", function(error, json) { | |
treeBoxes('', json.tree); | |
}); | |
</script> | |
</div> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************************************************** | |
* | |
* Copyright (C) 2016 Swayvil <swayvil@gmail.com> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* The GNU General Public License can be found at | |
* http://www.gnu.org/copyleft/gpl.html. | |
* | |
* This script is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. | |
* | |
***************************************************************/ | |
/* | |
* Styles of the components of the tree | |
*/ | |
#tree-container { | |
position: absolute; | |
left: 0px; | |
width: 100%; | |
} | |
.svgContainer { | |
display: block; | |
margin: auto; | |
} | |
.node { | |
cursor: pointer; | |
} | |
.node-rect { | |
} | |
.node-rect-closed { | |
stroke-width: 2px; | |
stroke: rgb(0,0,0); | |
} | |
.link { | |
fill: none; | |
stroke: lightsteelblue; | |
stroke-width: 2px; | |
} | |
.linkselected { | |
fill: none; | |
stroke: tomato; | |
stroke-width: 2px; | |
} | |
.arrow { | |
fill: lightsteelblue; | |
stroke-width: 1px; | |
} | |
.arrowselected { | |
fill: tomato; | |
stroke-width: 2px; | |
} | |
.link text { | |
font: 7px sans-serif; | |
fill: #CC0000; | |
} | |
.wordwrap { | |
white-space: pre-wrap; /* CSS3 */ | |
white-space: -moz-pre-wrap; /* Firefox */ | |
white-space: -pre-wrap; /* Opera <7 */ | |
white-space: -o-pre-wrap; /* Opera 7 */ | |
word-wrap: break-word; /* IE */ | |
} | |
.node-text { | |
font: 7px sans-serif; | |
color: white; | |
} | |
.tooltip-text-container { | |
height: 100%; | |
width: 100%; | |
} | |
.tooltip-text { | |
visibility: hidden; | |
font: 7px sans-serif; | |
color: white; | |
display: block; | |
padding: 5px; | |
} | |
.tooltip-box { | |
background: rgba(0, 0, 0, 0.7); | |
visibility: hidden; | |
position: absolute; | |
border-style: solid; | |
border-width: 1px; | |
border-color: black; | |
border-top-right-radius: 0.5em; | |
} | |
p { | |
display: inline; | |
} | |
.textcolored { | |
color: orange; | |
} | |
a.exchangeName { | |
color: orange; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************************************************** | |
* | |
* Copyright (C) 2016 Swayvil <swayvil@gmail.com> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* The GNU General Public License can be found at | |
* http://www.gnu.org/copyleft/gpl.html. | |
* | |
* This script is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. | |
* | |
***************************************************************/ | |
/* | |
* Dependencies: | |
* - d3.js | |
* - jquery.js | |
*/ | |
"use strict"; | |
function treeBoxes(urlService, jsonData) | |
{ | |
var urlService_ = ''; | |
var blue = '#337ab7', | |
green = '#5cb85c', | |
yellow = '#f0ad4e', | |
blueText = '#4ab1eb', | |
purple = '#9467bd'; | |
var margin = { | |
top : 0, | |
right : 0, | |
bottom : 100, | |
left : 0 | |
}, | |
// Height and width are redefined later in function of the size of the tree | |
// (after that the data are loaded) | |
width = 800 - margin.right - margin.left, | |
height = 400 - margin.top - margin.bottom; | |
var rectNode = { width : 120, height : 45, textMargin : 5 }, | |
tooltip = { width : 150, height : 40, textMargin : 5 }; | |
var i = 0, | |
duration = 750, | |
root; | |
var mousedown; // Use to save temporarily 'mousedown.zoom' value | |
var mouseWheel, | |
mouseWheelName, | |
isKeydownZoom = false; | |
var tree; | |
var baseSvg, | |
svgGroup, | |
nodeGroup, // If nodes are not grouped together, after a click the svg node will be set after his corresponding tooltip and will hide it | |
nodeGroupTooltip, | |
linkGroup, | |
linkGroupToolTip, | |
defs; | |
init(urlService, jsonData); | |
function init(urlService, jsonData) | |
{ | |
urlService_ = urlService; | |
if (urlService && urlService.length > 0) | |
{ | |
if (urlService.charAt(urlService.length - 1) != '/') | |
urlService_ += '/'; | |
} | |
if (jsonData) | |
drawTree(jsonData); | |
else | |
{ | |
console.error(jsonData); | |
alert('Invalides data.'); | |
} | |
} | |
function drawTree(jsonData) | |
{ | |
tree = d3.layout.tree().size([ height, width ]); | |
root = jsonData; | |
root.fixed = true; | |
// Dynamically set the height of the main svg container | |
// breadthFirstTraversal returns the max number of node on a same level | |
// and colors the nodes | |
var maxDepth = 0; | |
var maxTreeWidth = breadthFirstTraversal(tree.nodes(root), function(currentLevel) { | |
maxDepth++; | |
currentLevel.forEach(function(node) { | |
if (node.type == 'type1') | |
node.color = blue; | |
if (node.type == 'type2') | |
node.color = green; | |
if (node.type == 'type3') | |
node.color = yellow; | |
if (node.type == 'type4') | |
node.color = purple; | |
}); | |
}); | |
height = maxTreeWidth * (rectNode.height + 20) + tooltip.height + 20 - margin.right - margin.left; | |
width = maxDepth * (rectNode.width * 1.5) + tooltip.width / 2 - margin.top - margin.bottom; | |
tree = d3.layout.tree().size([ height, width ]); | |
root.x0 = height / 2; | |
root.y0 = 0; | |
baseSvg = d3.select('#tree-container').append('svg') | |
.attr('width', width + margin.right + margin.left) | |
.attr('height', height + margin.top + margin.bottom) | |
.attr('class', 'svgContainer') | |
.call(d3.behavior.zoom() | |
//.scaleExtent([0.5, 1.5]) // Limit the zoom scale | |
.on('zoom', zoomAndDrag)); | |
// Mouse wheel is desactivated, else after a first drag of the tree, wheel event drags the tree (instead of scrolling the window) | |
getMouseWheelEvent(); | |
d3.select('#tree-container').select('svg').on(mouseWheelName, null); | |
d3.select('#tree-container').select('svg').on('dblclick.zoom', null); | |
svgGroup = baseSvg.append('g') | |
.attr('class','drawarea') | |
.append('g') | |
.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); | |
// SVG elements under nodeGroupTooltip could be associated with nodeGroup, | |
// same for linkGroupToolTip and linkGroup, | |
// but this separation allows to manage the order on which elements are drew | |
// and so tooltips are always on top. | |
nodeGroup = svgGroup.append('g') | |
.attr('id', 'nodes'); | |
linkGroup = svgGroup.append('g') | |
.attr('id', 'links'); | |
linkGroupToolTip = svgGroup.append('g') | |
.attr('id', 'linksTooltips'); | |
nodeGroupTooltip = svgGroup.append('g') | |
.attr('id', 'nodesTooltips'); | |
defs = baseSvg.append('defs'); | |
initArrowDef(); | |
initDropShadow(); | |
update(root); | |
} | |
function update(source) | |
{ | |
// Compute the new tree layout | |
var nodes = tree.nodes(root).reverse(), | |
links = tree.links(nodes); | |
// Check if two nodes are in collision on the ordinates axe and move them | |
breadthFirstTraversal(tree.nodes(root), collision); | |
// Normalize for fixed-depth | |
nodes.forEach(function(d) { | |
d.y = d.depth * (rectNode.width * 1.5); | |
}); | |
// 1) ******************* Update the nodes ******************* | |
var node = nodeGroup.selectAll('g.node').data(nodes, function(d) { | |
return d.id || (d.id = ++i); | |
}); | |
var nodesTooltip = nodeGroupTooltip.selectAll('g').data(nodes, function(d) { | |
return d.id || (d.id = ++i); | |
}); | |
// Enter any new nodes at the parent's previous position | |
// We use "insert" rather than "append", so when a new child node is added (after a click) | |
// it is added at the top of the group, so it is drawed first | |
// else the nodes tooltips are drawed before their children nodes and they | |
// hide them | |
var nodeEnter = node.enter().insert('g', 'g.node') | |
.attr('class', 'node') | |
.attr('transform', function(d) { | |
return 'translate(' + source.y0 + ',' + source.x0 + ')'; }) | |
.on('click', function(d) { | |
click(d); | |
}); | |
var nodeEnterTooltip = nodesTooltip.enter().append('g') | |
.attr('transform', function(d) { | |
return 'translate(' + source.y0 + ',' + source.x0 + ')'; }); | |
nodeEnter.append('g').append('rect') | |
.attr('rx', 6) | |
.attr('ry', 6) | |
.attr('width', rectNode.width) | |
.attr('height', rectNode.height) | |
.attr('class', 'node-rect') | |
.attr('fill', function (d) { return d.color; }) | |
.attr('filter', 'url(#drop-shadow)'); | |
nodeEnter.append('foreignObject') | |
.attr('x', rectNode.textMargin) | |
.attr('y', rectNode.textMargin) | |
.attr('width', function() { | |
return (rectNode.width - rectNode.textMargin * 2) < 0 ? 0 | |
: (rectNode.width - rectNode.textMargin * 2) | |
}) | |
.attr('height', function() { | |
return (rectNode.height - rectNode.textMargin * 2) < 0 ? 0 | |
: (rectNode.height - rectNode.textMargin * 2) | |
}) | |
.append('xhtml').html(function(d) { | |
return '<div style="width: ' | |
+ (rectNode.width - rectNode.textMargin * 2) + 'px; height: ' | |
+ (rectNode.height - rectNode.textMargin * 2) + 'px;" class="node-text wordwrap">' | |
+ '<b>' + d.nodeName + '</b><br><br>' | |
+ '<b>Code: </b>' + d.code + '<br>' | |
+ '<b>Version: </b>' + d.version + '<br>' | |
+ '</div>'; | |
}) | |
.on('mouseover', function(d) { | |
$('#nodeInfoID' + d.id).css('visibility', 'visible'); | |
$('#nodeInfoTextID' + d.id).css('visibility', 'visible'); | |
}) | |
.on('mouseout', function(d) { | |
$('#nodeInfoID' + d.id).css('visibility', 'hidden'); | |
$('#nodeInfoTextID' + d.id).css('visibility', 'hidden'); | |
}); | |
nodeEnterTooltip.append("rect") | |
.attr('id', function(d) { return 'nodeInfoID' + d.id; }) | |
.attr('x', rectNode.width / 2) | |
.attr('y', rectNode.height / 2) | |
.attr('width', tooltip.width) | |
.attr('height', tooltip.height) | |
.attr('class', 'tooltip-box') | |
.style('fill-opacity', 0.8) | |
.on('mouseover', function(d) { | |
$('#nodeInfoID' + d.id).css('visibility', 'visible'); | |
$('#nodeInfoTextID' + d.id).css('visibility', 'visible'); | |
removeMouseEvents(); | |
}) | |
.on('mouseout', function(d) { | |
$('#nodeInfoID' + d.id).css('visibility', 'hidden'); | |
$('#nodeInfoTextID' + d.id).css('visibility', 'hidden'); | |
reactivateMouseEvents(); | |
}); | |
nodeEnterTooltip.append("text") | |
.attr('id', function(d) { return 'nodeInfoTextID' + d.id; }) | |
.attr('x', rectNode.width / 2 + tooltip.textMargin) | |
.attr('y', rectNode.height / 2 + tooltip.textMargin * 2) | |
.attr('width', tooltip.width) | |
.attr('height', tooltip.height) | |
.attr('class', 'tooltip-text') | |
.style('fill', 'white') | |
.append("tspan") | |
.text(function(d) {return 'Name: ' + d.name;}) | |
.append("tspan") | |
.attr('x', rectNode.width / 2 + tooltip.textMargin) | |
.attr('dy', '1.5em') | |
.text(function(d) {return 'Info: ' + d.label;}); | |
// Transition nodes to their new position. | |
var nodeUpdate = node.transition().duration(duration) | |
.attr('transform', function(d) { return 'translate(' + d.y + ',' + d.x + ')'; }); | |
nodesTooltip.transition().duration(duration) | |
.attr('transform', function(d) { return 'translate(' + d.y + ',' + d.x + ')'; }); | |
nodeUpdate.select('rect') | |
.attr('class', function(d) { return d._children ? 'node-rect-closed' : 'node-rect'; }); | |
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.y + ',' + source.x + ')'; }) | |
.remove(); | |
nodesTooltip.exit().transition().duration(duration) | |
.attr('transform', function(d) { return 'translate(' + source.y + ',' + source.x + ')'; }) | |
.remove(); | |
nodeExit.select('text').style('fill-opacity', 1e-6); | |
// 2) ******************* Update the links ******************* | |
var link = linkGroup.selectAll('path').data(links, function(d) { | |
return d.target.id; | |
}); | |
var linkTooltip = linkGroupToolTip.selectAll('g').data(links, function(d) { | |
return d.target.id; | |
}); | |
function linkMarkerStart(direction, isSelected) { | |
if (direction == 'SYNC') | |
{ | |
return isSelected ? 'url(#start-arrow-selected)' : 'url(#start-arrow)'; | |
} | |
return ''; | |
} | |
function linkType(link) { | |
if (link.direction == 'SYNC') | |
return "Synchronous [\u2194]"; | |
else | |
{ | |
if (link.direction == 'ASYN') | |
return "Asynchronous [\u2192]"; | |
} | |
return '???'; | |
} | |
d3.selection.prototype.moveToFront = function() { | |
return this.each(function(){ | |
this.parentNode.appendChild(this); | |
}); | |
}; | |
// Enter any new links at the parent's previous position. | |
// Enter any new links at the parent's previous position. | |
var linkenter = link.enter().insert('path', 'g') | |
.attr('class', 'link') | |
.attr('id', function(d) { return 'linkID' + d.target.id; }) | |
.attr('d', function(d) { return diagonal(d); }) | |
.attr('marker-end', 'url(#end-arrow)') | |
.attr('marker-start', function(d) { return linkMarkerStart(d.target.link.direction, false); }) | |
.on('mouseover', function(d) { | |
d3.select(this).moveToFront(); | |
d3.select(this).attr('marker-end', 'url(#end-arrow-selected)'); | |
d3.select(this).attr('marker-start', linkMarkerStart(d.target.link.direction, true)); | |
d3.select(this).attr('class', 'linkselected'); | |
$('#tooltipLinkID' + d.target.id).attr('x', (d.target.y + rectNode.width - d.source.y) / 2 + d.source.y); | |
$('#tooltipLinkID' + d.target.id).attr('y', (d.target.x - d.source.x) / 2 + d.source.x); | |
$('#tooltipLinkID' + d.target.id).css('visibility', 'visible'); | |
$('#tooltipLinkTextID' + d.target.id).css('visibility', 'visible'); | |
}) | |
.on('mouseout', function(d) { | |
d3.select(this).attr('marker-end', 'url(#end-arrow)'); | |
d3.select(this).attr('marker-start', linkMarkerStart(d.target.link.direction, false)); | |
d3.select(this).attr('class', 'link'); | |
$('#tooltipLinkID' + d.target.id).css('visibility', 'hidden'); | |
$('#tooltipLinkTextID' + d.target.id).css('visibility', 'hidden'); | |
}); | |
linkTooltip.enter().append('rect') | |
.attr('id', function(d) { return 'tooltipLinkID' + d.target.id; }) | |
.attr('class', 'tooltip-box') | |
.style('fill-opacity', 0.8) | |
.attr('x', function(d) { return (d.target.y + rectNode.width - d.source.y) / 2 + d.source.y; }) | |
.attr('y', function(d) { return (d.target.x - d.source.x) / 2 + d.source.x; }) | |
.attr('width', tooltip.width) | |
.attr('height', tooltip.height) | |
.on('mouseover', function(d) { | |
$('#tooltipLinkID' + d.target.id).css('visibility', 'visible'); | |
$('#tooltipLinkTextID' + d.target.id).css('visibility', 'visible'); | |
// After selected a link, the cursor can be hover the tooltip, that's why we still need to highlight the link and the arrow | |
$('#linkID' + d.target.id).attr('class', 'linkselected'); | |
$('#linkID' + d.target.id).attr('marker-end', 'url(#end-arrow-selected)'); | |
$('#linkID' + d.target.id).attr('marker-start', linkMarkerStart(d.target.link.direction, true)); | |
removeMouseEvents(); | |
}) | |
.on('mouseout', function(d) { | |
$('#tooltipLinkID' + d.target.id).css('visibility', 'hidden'); | |
$('#tooltipLinkTextID' + d.target.id).css('visibility', 'hidden'); | |
$('#linkID' + d.target.id).attr('class', 'link'); | |
$('#linkID' + d.target.id).attr('marker-end', 'url(#end-arrow)'); | |
$('#linkID' + d.target.id).attr('marker-start', linkMarkerStart(d.target.link.direction, false)); | |
reactivateMouseEvents(); | |
}); | |
linkTooltip.enter().append('text') | |
.attr('id', function(d) { return 'tooltipLinkTextID' + d.target.id; }) | |
.attr('class', 'tooltip-text') | |
.attr('x', function(d) { return (d.target.y + rectNode.width - d.source.y) / 2 + d.source.y + tooltip.textMargin; }) | |
.attr('y', function(d) { return (d.target.x - d.source.x) / 2 + d.source.x + tooltip.textMargin * 2; }) | |
.attr('width', tooltip.width) | |
.attr('height', tooltip.height) | |
.style('fill', 'white') | |
.append("tspan") | |
.text(function(d) { return linkType(d.target.link); }) | |
.append("tspan") | |
.attr('x', function(d) { return (d.target.y + rectNode.width - d.source.y) / 2 + d.source.y + tooltip.textMargin; }) | |
.attr('dy', '1.5em') | |
.text(function(d) {return d.target.link.name;}); | |
// Transition links to their new position. | |
var linkUpdate = link.transition().duration(duration) | |
.attr('d', function(d) { return diagonal(d); }); | |
linkTooltip.transition().duration(duration) | |
.attr('d', function(d) { return diagonal(d); }); | |
// Transition exiting nodes to the parent's new position. | |
link.exit().transition() | |
.remove(); | |
linkTooltip.exit().transition() | |
.remove(); | |
// Stash the old positions for transition. | |
nodes.forEach(function(d) { | |
d.x0 = d.x; | |
d.y0 = d.y; | |
}); | |
} | |
// Zoom functionnality is desactivated (user can use browser Ctrl + mouse wheel shortcut) | |
function zoomAndDrag() { | |
//var scale = d3.event.scale, | |
var scale = 1, | |
translation = d3.event.translate, | |
tbound = -height * scale, | |
bbound = height * scale, | |
lbound = (-width + margin.right) * scale, | |
rbound = (width - margin.left) * scale; | |
// limit translation to thresholds | |
translation = [ | |
Math.max(Math.min(translation[0], rbound), lbound), | |
Math.max(Math.min(translation[1], bbound), tbound) | |
]; | |
d3.select('.drawarea') | |
.attr('transform', 'translate(' + translation + ')' + | |
' scale(' + scale + ')'); | |
} | |
// 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); | |
} | |
// Breadth-first traversal of the tree | |
// func function is processed on every node of a same level | |
// return the max level | |
function breadthFirstTraversal(tree, func) | |
{ | |
var max = 0; | |
if (tree && tree.length > 0) | |
{ | |
var currentDepth = tree[0].depth; | |
var fifo = []; | |
var currentLevel = []; | |
fifo.push(tree[0]); | |
while (fifo.length > 0) { | |
var node = fifo.shift(); | |
if (node.depth > currentDepth) { | |
func(currentLevel); | |
currentDepth++; | |
max = Math.max(max, currentLevel.length); | |
currentLevel = []; | |
} | |
currentLevel.push(node); | |
if (node.children) { | |
for (var j = 0; j < node.children.length; j++) { | |
fifo.push(node.children[j]); | |
} | |
} | |
} | |
func(currentLevel); | |
return Math.max(max, currentLevel.length); | |
} | |
return 0; | |
} | |
// x = ordoninates and y = abscissas | |
function collision(siblings) { | |
var minPadding = 5; | |
if (siblings) { | |
for (var i = 0; i < siblings.length - 1; i++) | |
{ | |
if (siblings[i + 1].x - (siblings[i].x + rectNode.height) < minPadding) | |
siblings[i + 1].x = siblings[i].x + rectNode.height + minPadding; | |
} | |
} | |
} | |
function removeMouseEvents() { | |
// Drag and zoom behaviors are temporarily disabled, so tooltip text can be selected | |
mousedown = d3.select('#tree-container').select('svg').on('mousedown.zoom'); | |
d3.select('#tree-container').select('svg').on("mousedown.zoom", null); | |
} | |
function reactivateMouseEvents() { | |
// Reactivate the drag and zoom behaviors | |
d3.select('#tree-container').select('svg').on('mousedown.zoom', mousedown); | |
} | |
// Name of the event depends of the browser | |
function getMouseWheelEvent() { | |
if (d3.select('#tree-container').select('svg').on('wheel.zoom')) | |
{ | |
mouseWheelName = 'wheel.zoom'; | |
return d3.select('#tree-container').select('svg').on('wheel.zoom'); | |
} | |
if (d3.select('#tree-container').select('svg').on('mousewheel.zoom') != null) | |
{ | |
mouseWheelName = 'mousewheel.zoom'; | |
return d3.select('#tree-container').select('svg').on('mousewheel.zoom'); | |
} | |
if (d3.select('#tree-container').select('svg').on('DOMMouseScroll.zoom')) | |
{ | |
mouseWheelName = 'DOMMouseScroll.zoom'; | |
return d3.select('#tree-container').select('svg').on('DOMMouseScroll.zoom'); | |
} | |
} | |
function diagonal(d) { | |
var p0 = { | |
x : d.source.x + rectNode.height / 2, | |
y : (d.source.y + rectNode.width) | |
}, p3 = { | |
x : d.target.x + rectNode.height / 2, | |
y : d.target.y - 12 // -12, so the end arrows are just before the rect node | |
}, m = (p0.y + p3.y) / 2, p = [ p0, { | |
x : p0.x, | |
y : m | |
}, { | |
x : p3.x, | |
y : m | |
}, p3 ]; | |
p = p.map(function(d) { | |
return [ d.y, d.x ]; | |
}); | |
return 'M' + p[0] + 'C' + p[1] + ' ' + p[2] + ' ' + p[3]; | |
} | |
function initDropShadow() { | |
var filter = defs.append("filter") | |
.attr("id", "drop-shadow") | |
.attr("color-interpolation-filters", "sRGB"); | |
filter.append("feOffset") | |
.attr("result", "offOut") | |
.attr("in", "SourceGraphic") | |
.attr("dx", 0) | |
.attr("dy", 0); | |
filter.append("feGaussianBlur") | |
.attr("stdDeviation", 2); | |
filter.append("feOffset") | |
.attr("dx", 2) | |
.attr("dy", 2) | |
.attr("result", "shadow"); | |
filter.append("feComposite") | |
.attr("in", 'offOut') | |
.attr("in2", 'shadow') | |
.attr("operator", "over"); | |
} | |
function initArrowDef() { | |
// Build the arrows definitions | |
// End arrow | |
defs.append('marker') | |
.attr('id', 'end-arrow') | |
.attr('viewBox', '0 -5 10 10') | |
.attr('refX', 0) | |
.attr('refY', 0) | |
.attr('markerWidth', 6) | |
.attr('markerHeight', 6) | |
.attr('orient', 'auto') | |
.attr('class', 'arrow') | |
.append('path') | |
.attr('d', 'M0,-5L10,0L0,5'); | |
// End arrow selected | |
defs.append('marker') | |
.attr('id', 'end-arrow-selected') | |
.attr('viewBox', '0 -5 10 10') | |
.attr('refX', 0) | |
.attr('refY', 0) | |
.attr('markerWidth', 6) | |
.attr('markerHeight', 6) | |
.attr('orient', 'auto') | |
.attr('class', 'arrowselected') | |
.append('path') | |
.attr('d', 'M0,-5L10,0L0,5'); | |
// Start arrow | |
defs.append('marker') | |
.attr('id', 'start-arrow') | |
.attr('viewBox', '0 -5 10 10') | |
.attr('refX', 0) | |
.attr('refY', 0) | |
.attr('markerWidth', 6) | |
.attr('markerHeight', 6) | |
.attr('orient', 'auto') | |
.attr('class', 'arrow') | |
.append('path') | |
.attr('d', 'M10,-5L0,0L10,5'); | |
// Start arrow selected | |
defs.append('marker') | |
.attr('id', 'start-arrow-selected') | |
.attr('viewBox', '0 -5 10 10') | |
.attr('refX', 0) | |
.attr('refY', 0) | |
.attr('markerWidth', 6) | |
.attr('markerHeight', 6) | |
.attr('orient', 'auto') | |
.attr('class', 'arrowselected') | |
.append('path') | |
.attr('d', 'M10,-5L0,0L10,5'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment