ethstats-server/public/js/directives.js

170 lines
4.0 KiB
JavaScript
Raw Normal View History

2015-01-20 19:29:31 +01:00
'use strict';
/* Directives */
angular.module('netStatsApp.directives', []).
directive('appVersion', ['version', function(version) {
return function(scope, elm, attrs) {
elm.text(version);
};
2015-02-08 16:03:05 +01:00
}]).
directive('nodemap', ['$compile', function($compile) {
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) {
return ['<div class="tooltip-arrow"></div><div class="hoverinfo ' + data.fillClass + '"><div class="propagationBox"></div><strong>',
data.nodeName,
'</strong></div>'].join('');
}
};
2015-02-08 16:20:43 +01:00
scope.init = function() {
element.empty();
scope.map = new Datamap({
element: element[0],
scope: 'world',
responsive: true,
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-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
2015-02-08 16:20:43 +01:00
window.onresize = function() {
scope.$apply();
};
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-02-08 16:20:43 +01:00
scope.$watch(function() {
return angular.element(window)[0].innerWidth;
}, function() {
scope.init();
});
2015-02-08 16:03:05 +01:00
}
};
2015-04-23 15:17:31 +02:00
}]).
directive('histogram', ['$compile', function($compile) {
return {
restrict: 'EA',
scope: {
data: '='
},
link: function(scope, element, attrs) {
var margin = {top: 0, right: 0, bottom: 0, left: 5};
var width = 285 - margin.left - margin.right,
height = 173 - 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 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(4);
var line = d3.svg.line()
.x(function(d) { return x(d.x + d.dx); })
.y(function(d) { return y(d.y); })
.interpolate('basis');
scope.init = function() {
var data = d3.layout.histogram()
.frequency(true)
.bins(x.ticks(TICKS))
(scope.data);
y.domain([0, d3.max(data, function(d) { return d.y; })]);
element.empty();
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.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
// .attr("transform", "translate(0,0)")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.attr("transform", "translate(0, 0)")
// .attr("transform", "translate(" + width + ", 0)")
.call(yAxis);
svg.selectAll(".bar")
.data(data)
.enter().insert("rect", ".axis")
.attr("class", "bar")
.attr("x", function(d) { return x(d.x) + 1; })
.attr("y", function(d) { return y(d.y); })
.attr("rx", 1.5)
.attr("ry", 1.5)
.attr("width", x(data[0].dx + data[0].x) - x(data[0].x) - 1)
.attr("height", function(d) { return height - y(d.y); });
svg.append("path")
.attr("class", "line")
.attr("d", line(data));
}
scope.init();
scope.$watch('data', function() {
scope.init();
}, true);
}
};
2015-02-08 16:03:05 +01:00
}]);