ethstats-server/public/js/controllers.js

94 lines
1.9 KiB
JavaScript
Raw Normal View History

2015-01-20 19:29:31 +01:00
'use strict';
/* Controllers */
2015-02-08 16:03:05 +01:00
function StatsCtrl($scope, $filter, socket, _) {
2015-01-20 19:29:31 +01:00
2015-02-05 16:54:04 +01:00
// Main Stats init
// ---------------
$scope.nodesTotal = 0;
$scope.nodesActive = 0;
$scope.bestBlock = 0;
$scope.lastBlock = 0;
$scope.upTimeTotal = 0;
2015-02-08 16:28:19 +01:00
$scope.map = [];
2015-02-08 16:03:05 +01:00
2015-01-20 19:29:31 +01:00
// Socket listeners
// ----------------
2015-02-17 06:12:44 +01:00
socket = new Primus();
socket.on('open', function open() {
socket.emit('ready');
console.log('The connection has been opened.');
}).on('end', function end() {
self._socket = false;
}).on('error', function error(err) {
console.log(err);
}).on('reconnecting', function reconnecting(opts) {
console.log('We are scheduling a reconnect operation', opts);
}).on('data', function incoming(data) {
console.log('Received some data', data);
});
// socket.emit('ready', 'test');
2015-02-08 16:03:05 +01:00
socket.on('init', function(data)
{
2015-02-17 06:12:44 +01:00
console.log(data);
2015-01-20 19:29:31 +01:00
$scope.nodes = data.nodes;
2015-01-29 17:50:16 +01:00
updateStats();
});
2015-02-08 16:03:05 +01:00
socket.on('update', function(data)
{
2015-02-17 06:12:44 +01:00
console.log(data);
2015-02-05 00:30:16 +01:00
$scope.nodes[data.id] = data;
2015-01-29 17:50:16 +01:00
updateStats();
});
function updateStats()
{
2015-01-20 19:29:31 +01:00
$scope.nodesTotal = $scope.nodes.length;
2015-02-08 16:03:05 +01:00
$scope.nodesActive = _.filter($scope.nodes, function(node) {
return node.stats.active == true;
}).length;
$scope.bestBlock = _.max($scope.nodes, function(node) {
return parseInt(node.stats.block.number);
}).stats.block.number;
2015-02-08 16:03:05 +01:00
$scope.lastBlock = _.max($scope.nodes, function(node) {
return parseInt(node.stats.block.timestamp);
}).stats.block.timestamp;
$scope.upTimeTotal = _.reduce($scope.nodes, function(total, node) {
2015-02-17 06:12:44 +01:00
return total + node.stats.uptime;
2015-02-08 16:03:05 +01:00
}, 0) / $scope.nodes.length;
$scope.map = _.map($scope.nodes, function(node) {
if(node.geo != null)
return {
radius: 3,
latitude: node.geo.ll[0],
longitude: node.geo.ll[1],
fillKey: $filter('bubbleClass')(node, $scope.bestBlock)
};
else
return {
radius: 0,
latitude: 0,
longitude: 0
};
});
2015-02-17 06:12:44 +01:00
$scope.$apply();
2015-01-29 17:50:16 +01:00
}
2015-01-20 19:29:31 +01:00
}