ethstats-server/public/js/filters.js

69 lines
1.5 KiB
JavaScript
Raw Normal View History

2015-01-20 19:29:31 +01:00
'use strict';
/* Filters */
2015-01-29 17:50:16 +01:00
angular.module('netStatsApp.filters', [])
2015-02-05 00:30:16 +01:00
.filter('nodesActiveClass', function() {
return function(active, total) {
var ratio = active/total;
if(ratio >= 0.9)
return 'text-success';
if(ratio >= 0.75)
return 'text-info';
if(ratio >= 0.5)
return 'text-warning';
return 'text-danger';
};
})
2015-01-30 22:37:38 +01:00
.filter('mainClass', function() {
return function(node, bestBlock) {
if( ! node.active)
return 'text-danger';
2015-02-05 00:30:16 +01:00
if(node.peers === 0)
2015-01-30 22:37:38 +01:00
return 'text-danger';
return (node.peers <= 1 ? 'text-danger' : (node.peers > 1 && node.peers < 4 ? 'text-warning' : 'text-success'));
2015-02-05 00:30:16 +01:00
};
2015-01-30 22:37:38 +01:00
})
2015-01-29 17:50:16 +01:00
.filter('peerClass', function() {
return function(peers) {
return (peers <= 1 ? 'text-danger' : (peers > 1 && peers < 4 ? 'text-warning' : 'text-success'));
2015-02-05 00:30:16 +01:00
};
2015-01-29 17:50:16 +01:00
})
.filter('miningClass', function() {
return function(mining) {
return (! mining ? 'text-danger' : '');
2015-02-05 00:30:16 +01:00
};
2015-01-29 17:50:16 +01:00
})
.filter('miningIconClass', function() {
return function(mining) {
return (! mining ? 'icon-cancel' : 'icon-check');
2015-02-05 00:30:16 +01:00
};
2015-01-29 17:50:16 +01:00
})
.filter('blockClass', function() {
return function(current, best) {
return (best - current <= 1 ? '' : (best - current > 1 && best - current < 4 ? 'text-warning' : 'text-danger'));
2015-02-05 00:30:16 +01:00
};
2015-02-05 02:33:58 +01:00
})
.filter('timeClass', function() {
return function(timestamp) {
var time = Math.floor((new Date()).getTime() / 1000);
var diff = time - timestamp;
if(diff <= 12)
return 'text-success';
if(diff <= 20)
return 'text-info';
if(diff <= 30)
return 'text-warning';
return 'text-danger';
};
2015-01-29 17:50:16 +01:00
});