'use strict'; /* Directives */ angular.module('netStatsApp.directives', []). directive('appVersion', ['version', function(version) { return function(scope, elm, attrs) { elm.text(version); }; }]). directive('nodemap', ['$compile', function($compile) { return { restrict: 'EA', scope: { data: '=' }, link: function(scope, element, attrs) { var bubbleConfig = { borderWidth: 0, highlightOnHover: false, popupOnHover: true, popupTemplate: function(geo, data) { return ['
', data.nodeName, '
'].join(''); } }; scope.init = function() { element.empty(); scope.map = new Datamap({ element: element[0], scope: 'world', responsive: true, fills: { success: '#7BCC3A', info: '#10A0DE', warning: '#FFD162', orange: '#FF8A00', danger: '#F74B4B', defaultFill: '#282828' }, geographyConfig: { borderWidth: 0, borderColor: '#000', highlightOnHover: false, popupOnHover: false }, bubblesConfig: { borderWidth: 0, highlightOnHover: false, popupOnHover: true } }); scope.map.bubbles(scope.data, bubbleConfig); } scope.init(); window.onresize = function() { scope.$apply(); }; scope.$watch('data', function() { scope.map.bubbles(scope.data, bubbleConfig); }, true); scope.$watch(function() { return angular.element(window)[0].innerWidth; }, function() { scope.init(); }); } }; }]). directive('histogram', ['$compile', function($compile) { return { restrict: 'EA', scope: { data: '=' }, link: function(scope, element, attrs) { var margin = {top: 0, right: 0, bottom: 0, left: 0}; var width = 280 - margin.left - margin.right, height = 50 - margin.top - margin.bottom; var TICKS = 40; var x = d3.scale.linear() .domain([0, 20000]) .rangeRound([0, width]) .interpolate(d3.interpolateRound); var y = d3.scale.linear() .range([height, 0]) .interpolate(d3.interpolateRound); var color = d3.scale.linear() .domain([1000, 3000, 7000, 10000, 20000]) .range(["#7bcc3a", "#FFD162", "#ff8a00", "#F74B4B", "#CC0000"]); var xAxis = d3.svg.axis() .scale(x) .orient("bottom") .ticks(4, ",.1s") .tickFormat(function(t){ return t/1000 + "s"}); var yAxis = d3.svg.axis() .scale(y) .orient("left") .ticks(3) .tickFormat(d3.format("%")); var line = d3.svg.line() .x(function(d) { return x(d.x + d.dx/2) - 1; }) .y(function(d) { return y(d.y) - 2; }) .interpolate('basis'); var tip = d3.tip() .attr('class', 'd3-tip') .offset([10, 0]) .direction('s') .html(function(d) { return '
' + (d.x/1000) + 's - ' + ((d.x + d.dx)/1000) + 's
Percent: ' + Math.round(d.y * 100) + '%' + '
Frequency: ' + d.frequency + '
Cumulative: ' + Math.round(d.cumpercent*100) + '%
'; }) scope.init = function() { var data = scope.data; // Adjust y axis y.domain([0, d3.max(data, function(d) { return d.y; })]); // Delete previous histogram element.empty(); /* Start drawing */ var svg = d3.select(".d3-blockpropagation").append("svg") .attr("width", width + margin.left + margin.right) .attr("height", height + margin.top + margin.bottom) .append("g") .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); svg.call(tip); svg.append("g") .attr("class", "x axis") .attr("transform", "translate(0," + height + ")") .call(xAxis); svg.append("g") .attr("class", "y axis") .attr("transform", "translate(" + width + ", 0)") .call(yAxis); var bar = svg.append("g") .attr("class", "bars") .selectAll("g") .data(data) .enter().append("g") .attr("transform", function(d) { return "translate(" + x(d.x) + ",0)"; }) .on('mouseover', function(d) { tip.show(d, d3.select(this).select('.bar').node()); }) .on('mouseout', tip.hide); bar.insert("rect") .attr("class", "handle") .attr("y", 0) .attr("width", x(data[0].dx + data[0].x) - x(data[0].x)) .attr("height", function(d) { return height; }); bar.insert("rect") .attr("class", "bar") .attr("y", function(d) { return y(d.y); }) .attr("rx", 1.2) .attr("ry", 1.2) .attr("fill", function(d) { return color(d.x); }) .attr("width", x(data[0].dx + data[0].x) - x(data[0].x) - 1) .attr("height", function(d) { return height - y(d.y) + 1; }); bar.insert("rect") .attr("class", "highlight") .attr("y", function(d) { return y(d.y); }) .attr("fill", function(d) { return d3.rgb(color(d.x)).brighter(.7).toString(); }) .attr("rx", 1) .attr("ry", 1) .attr("width", x(data[0].dx + data[0].x) - x(data[0].x) - 1) .attr("height", function(d) { return height - y(d.y) + 1; }); svg.append("path") .attr("class", "line") .attr("d", line(data)); } scope.$watch('data', function() { scope.init(); }, true); } }; }]);