Ethereum network status dashboard for PoW and PoA networks
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/* Filters */
|
|
|
|
|
|
|
|
angular.module('netStatsApp.filters', [])
|
|
|
|
.filter('peerClass', function() {
|
|
|
|
return function(peers) {
|
|
|
|
return (peers <= 1 ? 'text-danger' : (peers > 1 && peers < 4 ? 'text-warning' : 'text-success'));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.filter('miningClass', function() {
|
|
|
|
return function(mining) {
|
|
|
|
return (! mining ? 'text-danger' : '');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.filter('miningIconClass', function() {
|
|
|
|
return function(mining) {
|
|
|
|
return (! mining ? 'icon-cancel' : 'icon-check');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.filter('blockClass', function() {
|
|
|
|
return function(current, best) {
|
|
|
|
return (best - current <= 1 ? '' : (best - current > 1 && best - current < 4 ? 'text-warning' : 'text-danger'));
|
|
|
|
}
|
|
|
|
});
|