blob: d33de360c0e9d50ade8dc4d37a32569047b43d1c [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.serviceTopology')
.service('LogicTopologyHelper', function($window, $log, lodash, serviceTopologyConfig, NodeDrawer){
var diagonal, nodes, links, i = 0, svgWidth, svgHeight, layout;
const baseData = {
name: 'Router',
type: 'router',
children: [
{
name: 'WAN',
type: 'network',
children: [
{
name: 'Rack',
type: 'rack',
children: [
{
name: 'LAN',
type: 'network',
children: [] //subscribers goes here
}
]
}
]
}
]
};
/**
* from a nested data structure,
* create nodes and links for a D3 Tree Layout
*/
const computeLayout = (data) => {
let nodes = layout.nodes(data);
// Normalize for fixed-depth.
nodes.forEach(function(d) {
// position the child node horizontally
const step = ((svgWidth - (serviceTopologyConfig.widthMargin * 2)) / 7);
d.y = (6 - d.depth) * step;
});
let links = layout.links(nodes);
return [nodes, links];
};
/**
* Draw the containing group for any node or update the existing one
*/
const drawNodes = (svg, nodes) => {
// Update the nodes…
var node = svg.selectAll('g.node')
.data(nodes, d => {
if(!angular.isString(d.d3Id)){
d.d3Id = `tree-${++i}`;
}
return d.d3Id;
});
// Enter any new nodes
var nodeEnter = node.enter().append('g')
.attr({
class: d => `node ${d.type}`,
transform: `translate(${svgWidth / 2}, ${svgHeight / 2})`
});
NodeDrawer.addNetworks(nodeEnter.filter('.network'));
NodeDrawer.addRack(nodeEnter.filter('.rack'));
NodeDrawer.addPhisical(nodeEnter.filter('.router'));
NodeDrawer.addPhisical(nodeEnter.filter('.subscriber'));
NodeDrawer.addDevice(nodeEnter.filter('.device'));
// Transition nodes to their new position.
var nodeUpdate = node.transition()
.duration(serviceTopologyConfig.duration)
.attr({
'transform': d => `translate(${d.y},${d.x})`
});
// TODO handle node remove
};
/**
* Handle links in the tree layout
*/
const drawLinks = (svg, links) => {
diagonal = d3.svg.diagonal()
.projection(d => [d.y, d.x]);
// Update the links…
var link = svg.selectAll('path.link')
.data(links, d => {
return d.target.d3Id
});
// Enter any new links at the parent's previous position.
link.enter().insert('path', 'g')
.attr('class', d => `link ${d.target.type}`)
.attr('d', function(d) {
var o = {x: svgHeight / 2, y: svgWidth / 2};
return diagonal({source: o, target: o});
});
// Transition links to their new position.
link.transition()
.duration(serviceTopologyConfig.duration)
.attr('d', diagonal);
};
/**
* Calculate the svg size and setup tree layout
*/
this.drawTree = (svg) => {
svgWidth = svg.node().getBoundingClientRect().width;
svgHeight = svg.node().getBoundingClientRect().height;
const width = svgWidth - (serviceTopologyConfig.widthMargin * 2);
const height = svgHeight - (serviceTopologyConfig.heightMargin * 2);
layout = d3.layout.tree()
.size([height, width]);
// Compute the new tree layout.
[nodes, links] = computeLayout(baseData);
drawNodes(svg, nodes);
drawLinks(svg, links);
};
/**
* Add Subscribers to the tree
*/
this.addSubscribers = (svg, subscribers) => {
subscribers.map((subscriber) => {
subscriber.children = subscriber.devices;
});
// add subscriber to data tree
baseData.children[0].children[0].children[0].children = subscribers;
[nodes, links] = computeLayout(baseData);
drawNodes(svg, nodes);
drawLinks(svg, links);
}
});
}());