ethstats-server/public/js/directives.js

320 lines
8.2 KiB
JavaScript
Raw Normal View History

2015-01-20 19:29:31 +01:00
'use strict';
/* Directives */
2015-05-19 10:07:48 +02:00
angular.module('netStatsApp.directives', [])
.directive('appVersion', ['version', function (version) {
2015-01-20 19:29:31 +01:00
return function(scope, elm, attrs) {
elm.text(version);
};
2015-05-19 10:07:48 +02:00
}])
.directive('sparkchart', ['$compile', '$filter', function($compile, $filter) {
return {
restrict: 'EA',
scope: {
data: '='
},
link: function (scope, element, attrs)
{
scope.init = function ()
{
element.empty();
jQuery(element[0]).sparkline(scope.data, {
type: 'bar',
tooltipSuffix: (attrs.tooltipsuffix || '')
});
}
scope.init();
scope.$watch('data', function ()
{
scope.init();
}, true);
}
};
}])
.directive('nodepropagchart', ['$compile', '$filter', function($compile, $filter) {
return {
restrict: 'EA',
scope: {
data: '='
},
link: function (scope, element, attrs)
{
var options = {
type: 'bar',
negBarColor: '#7f7f7f',
zeroAxis: false,
height: 20,
barWidth : 2,
barSpacing : 1,
tooltipSuffix: '',
chartRangeMax: 8000,
colorMap: jQuery.range_map({
'0:1': '#10a0de',
'1:1000': '#7bcc3a',
'1001:3000': '#FFD162',
'3001:7000': '#ff8a00',
'7001:': '#F74B4B'
}),
tooltipFormatter: function (spark, opt, ms) {
var tooltip = '<div class="tooltip-arrow"></div><div class="tooltip-inner">';
tooltip += $filter('blockPropagationFilter')(ms[0].value, '');
tooltip += '</div>';
return tooltip;
}
};
scope.init = function ()
{
element.empty();
jQuery(element[0]).sparkline(scope.data, options);
}
scope.init();
scope.$watch('data', function ()
{
scope.init();
}, true);
}
};
}])
.directive('nodemap', ['$compile', function($compile) {
2015-02-08 16:03:05 +01:00
return {
restrict: 'EA',
scope: {
data: '='
},
link: function(scope, element, attrs) {
2015-04-17 02:12:15 +02:00
var bubbleConfig = {
borderWidth: 0,
highlightOnHover: false,
popupOnHover: true,
popupTemplate: function(geo, data) {
2015-04-24 18:49:39 +02:00
return ['<div class="tooltip-arrow"></div>',
'<div class="hoverinfo ' + data.fillClass + '">',
'<div class="propagationBox"></div>',
'<strong>',
data.nodeName,
'</strong>',
'</div>'].join('');
2015-04-17 02:12:15 +02:00
}
};
2015-02-08 16:20:43 +01:00
scope.init = function() {
element.empty();
2015-04-24 18:49:39 +02:00
var width = 628,
height = 244;
2015-02-08 16:20:43 +01:00
scope.map = new Datamap({
element: element[0],
scope: 'world',
2015-04-24 18:50:28 +02:00
width: width,
2015-04-24 18:49:39 +02:00
height: 300,
2015-02-08 16:20:43 +01:00
fills: {
2015-04-17 02:12:15 +02:00
success: '#7BCC3A',
info: '#10A0DE',
2015-02-08 16:20:43 +01:00
warning: '#FFD162',
2015-04-17 02:12:15 +02:00
orange: '#FF8A00',
2015-02-08 16:20:43 +01:00
danger: '#F74B4B',
defaultFill: '#282828'
},
geographyConfig: {
borderWidth: 0,
borderColor: '#000',
highlightOnHover: false,
popupOnHover: false
},
bubblesConfig: {
borderWidth: 0,
2015-04-17 02:12:15 +02:00
highlightOnHover: false,
popupOnHover: true
2015-04-24 18:49:39 +02:00
},
done: function(datamap) {
var ev;
var zoomListener = d3.behavior.zoom()
.size([width, height])
2015-04-24 19:52:29 +02:00
.scaleExtent([1, 3])
2015-04-24 18:49:39 +02:00
.on("zoom", redraw)
.on("zoomend", animadraw);
function redraw() {
datamap.svg.select(".datamaps-subunits").attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
datamap.svg.select(".bubbles").selectAll("circle")
.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")")
.attr("r", 3/d3.event.scale);
ev = d3.event;
}
zoomListener(datamap.svg);
function animadraw() {
var x = Math.min(0, Math.max(ev.translate[0], (-1) * width * (ev.scale-1)));
var y = Math.min(0, Math.max(ev.translate[1], (-1) * height * (ev.scale-1)));
datamap.svg.select(".datamaps-subunits")
.transition()
.delay(150)
.duration(750)
.attr("transform", "translate(" + x + "," + y + ")scale(" + ev.scale + ")");
datamap.svg.select(".bubbles").selectAll("circle")
.transition()
.delay(150)
.duration(750)
.attr("transform", "translate(" + x + "," + y + ")scale(" + ev.scale + ")")
.attr("r", 3/ev.scale);
zoomListener.translate([x,y]);
}
2015-02-08 16:20:43 +01:00
}
});
2015-04-17 02:12:15 +02:00
scope.map.bubbles(scope.data, bubbleConfig);
2015-02-08 16:20:43 +01:00
}
scope.init();
2015-02-08 16:03:05 +01:00
scope.$watch('data', function() {
2015-04-17 02:12:15 +02:00
scope.map.bubbles(scope.data, bubbleConfig);
2015-02-08 16:03:05 +01:00
}, true);
}
};
2015-05-19 10:07:48 +02:00
}])
.directive('histogram', ['$compile', function($compile) {
2015-04-23 15:17:31 +02:00
return {
restrict: 'EA',
scope: {
data: '='
},
link: function(scope, element, attrs) {
2015-04-23 16:03:14 +02:00
var margin = {top: 0, right: 0, bottom: 0, left: 0};
var width = 280 - margin.left - margin.right,
2015-04-24 06:09:09 +02:00
height = 63 - margin.top - margin.bottom;
2015-04-23 15:17:31 +02:00
var TICKS = 40;
var x = d3.scale.linear()
2015-05-13 01:44:47 +02:00
.domain([0, 10000])
2015-04-23 15:17:31 +02:00
.rangeRound([0, width])
.interpolate(d3.interpolateRound);
var y = d3.scale.linear()
.range([height, 0])
.interpolate(d3.interpolateRound);
2015-04-23 20:24:01 +02:00
var color = d3.scale.linear()
2015-05-13 01:44:47 +02:00
.domain([1000, 3000, 7000, 10000])
.range(["#7bcc3a", "#FFD162", "#ff8a00", "#F74B4B"]);
2015-04-23 20:24:01 +02:00
2015-04-23 15:17:31 +02:00
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")
2015-04-24 05:23:26 +02:00
.ticks(3)
2015-04-23 16:03:14 +02:00
.tickFormat(d3.format("%"));
2015-04-23 15:17:31 +02:00
var line = d3.svg.line()
.x(function(d) { return x(d.x + d.dx/2) - 1; })
2015-04-23 20:24:01 +02:00
.y(function(d) { return y(d.y) - 2; })
2015-04-23 15:17:31 +02:00
.interpolate('basis');
var tip = d3.tip()
.attr('class', 'd3-tip')
2015-04-24 02:08:12 +02:00
.offset([10, 0])
.direction('s')
.html(function(d) {
2015-04-24 05:23:26 +02:00
return '<div class="tooltip-arrow"></div><div class="tooltip-inner"><b>' + (d.x/1000) + 's - ' + ((d.x + d.dx)/1000) + 's</b><div class="small">Percent: <b>' + Math.round(d.y * 100) + '%</b>' + '<br>Frequency: <b>' + d.frequency + '</b><br>Cumulative: <b>' + Math.round(d.cumpercent*100) + '%</b></div></div>';
})
2015-04-23 16:03:14 +02:00
scope.init = function()
{
2015-04-24 02:08:12 +02:00
var data = scope.data;
2015-04-23 15:17:31 +02:00
2015-04-23 16:03:14 +02:00
// Adjust y axis
2015-04-23 15:17:31 +02:00
y.domain([0, d3.max(data, function(d) { return d.y; })]);
2015-04-23 16:03:14 +02:00
// Delete previous histogram
2015-04-23 15:17:31 +02:00
element.empty();
2015-04-23 16:03:14 +02:00
/* Start drawing */
2015-04-23 15:17:31 +02:00
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);
2015-04-23 15:17:31 +02:00
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
2015-04-24 06:09:09 +02:00
.call(xAxis)
.selectAll("text")
.attr("y", 6);
2015-04-23 15:17:31 +02:00
svg.append("g")
.attr("class", "y axis")
2015-04-23 16:03:14 +02:00
.attr("transform", "translate(" + width + ", 0)")
2015-04-23 15:17:31 +02:00
.call(yAxis);
2015-04-23 20:24:01 +02:00
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)"; })
2015-04-23 20:24:01 +02:00
.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")
2015-04-23 15:17:31 +02:00
.attr("class", "bar")
.attr("y", function(d) { return y(d.y); })
2015-05-13 01:44:47 +02:00
.attr("rx", 1)
.attr("ry", 1)
2015-04-23 20:24:01 +02:00
.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")
2015-04-23 15:17:31 +02:00
.attr("y", function(d) { return y(d.y); })
2015-04-23 20:24:01 +02:00
.attr("fill", function(d) { return d3.rgb(color(d.x)).brighter(.7).toString(); })
2015-04-23 16:03:14 +02:00
.attr("rx", 1)
.attr("ry", 1)
2015-04-23 15:17:31 +02:00
.attr("width", x(data[0].dx + data[0].x) - x(data[0].x) - 1)
2015-04-23 20:24:01 +02:00
.attr("height", function(d) { return height - y(d.y) + 1; });
2015-04-23 15:17:31 +02:00
svg.append("path")
.attr("class", "line")
.attr("d", line(data));
}
scope.$watch('data', function() {
if(scope.data.length > 0) {
scope.init();
}
2015-04-23 15:17:31 +02:00
}, true);
}
};
2015-02-08 16:03:05 +01:00
}]);