ethstats-server/public/js/filters.js

487 lines
10 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() {
2015-02-05 05:32:42 +01:00
return function(node, bestBlock) {
2015-02-08 16:03:05 +01:00
return mainClass(node, bestBlock);
2015-02-05 05:32:42 +01:00
};
2015-01-30 22:37:38 +01:00
})
2015-01-29 17:50:16 +01:00
.filter('peerClass', function() {
2015-04-09 00:48:27 +02:00
return function(peers, active) {
return peerClass(peers, active);
2015-02-05 05:32:42 +01:00
};
2015-01-29 17:50:16 +01:00
})
.filter('miningClass', function() {
2015-04-09 00:48:27 +02:00
return function(mining, active) {
if(! active)
return 'text-gray';
2015-02-05 05:59:24 +01:00
return (! mining ? 'text-danger' : 'text-success');
2015-02-05 05:32:42 +01:00
};
2015-01-29 17:50:16 +01:00
})
.filter('miningIconClass', function() {
2015-02-05 05:32:42 +01:00
return function(mining) {
return (! mining ? 'icon-cancel' : 'icon-check');
};
2015-01-29 17:50:16 +01:00
})
2015-04-24 11:39:29 +02:00
.filter('hashrateClass', function() {
return function(mining, active) {
if(! mining || ! active)
2015-04-24 00:38:09 +02:00
return 'text-gray';
return 'text-success';
};
})
2015-04-24 11:39:29 +02:00
.filter('hashrateFilter', ['$filter', function(filter) {
2015-04-24 00:38:09 +02:00
return function(hashrate) {
if(typeof hashrate === 'undefined' || !hashrate)
return 0;
2015-04-24 11:39:29 +02:00
return filter('number')((hashrate/1000).toFixed(2));
2015-04-24 00:38:09 +02:00
}
2015-04-24 11:39:29 +02:00
}])
2015-02-17 16:29:26 +01:00
.filter('nodeVersion', function($sce) {
2015-02-17 15:07:50 +01:00
return function(version) {
2015-04-17 03:35:08 +02:00
if(typeof version !== 'undefined')
{
var tmp = version.split('/');
tmp[0] = tmp[0].replace('Ethereum(++)', 'Eth');
2015-04-23 15:17:31 +02:00
if(tmp[0].indexOf('pyethapp') === 0)
{
tmp[0] = 'pyeth';
}
2015-04-17 03:35:08 +02:00
if(tmp[1][0] !== 'v' && tmp[1][2] !== '.')
{
tmp.splice(1,1);
}
if(tmp[2] === 'Release'){
tmp.splice(2,1);
}
if(tmp[2].indexOf('Linux') === 0)
tmp[2] = 'linux';
if(tmp[2].indexOf('Darwin') === 0)
tmp[2] = 'darwin';
return $sce.trustAsHtml(tmp.join('/'));
}
return '';
2015-02-17 16:29:26 +01:00
};
2015-02-17 15:07:50 +01:00
})
2015-01-29 17:50:16 +01:00
.filter('blockClass', function() {
2015-02-05 05:32:42 +01:00
return function(current, best) {
2015-04-09 00:48:27 +02:00
if( ! current.active)
return 'text-gray';
2015-04-26 16:47:31 +02:00
return (best - current.block.number < 1 ? 'text-success' : (best - current.block.number === 1 ? 'text-warning' : (best - current.block.number > 1 && best - current.block.number < 4 ? 'text-orange' : 'text-danger')));
2015-02-05 05:32:42 +01:00
};
2015-02-05 02:33:58 +01:00
})
2015-04-24 10:44:21 +02:00
.filter('gasPriceFilter', ['$filter', function(filter) {
2015-04-24 11:39:29 +02:00
var numberFilter = filter('number');
2015-04-24 10:44:21 +02:00
return function(price) {
if(typeof price === 'undefined')
return "0 wei";
2015-04-24 10:44:21 +02:00
if(price.length < 4)
return price + " wei";
if(price.length < 7)
return (price/1000) + " kwei";
if(price.length < 10)
return (price/1000000) + " mwei";
if(price.length < 13)
return (price/1000000000) + " gwei";
if(price.length < 16)
return (price/1000000000000) + " szabo";
if(price.length < 19)
return (price.substr(0, price.length - 15)) + " finney";
return numberFilter(price.substr(0, price.length - 18)) + " ether";
}
}])
2015-02-09 16:44:44 +01:00
.filter('gasFilter', function() {
return function(gas) {
return (typeof gas !== 'undefined' ? parseInt(gas) : '?');
}
})
2015-02-19 18:34:20 +01:00
.filter('hashFilter', function() {
return function(hash) {
2015-04-28 14:38:26 +02:00
if(typeof hash === 'undefined')
return "?";
2015-04-17 11:10:20 +02:00
if(hash.substr(0,2) === '0x')
hash = hash.substr(2,64);
2015-04-06 15:13:49 +02:00
return hash.substr(0, 8) + '...' + hash.substr(56, 8);
2015-02-19 18:34:20 +01:00
}
})
2015-02-05 02:33:58 +01:00
.filter('timeClass', function() {
2015-04-09 00:48:27 +02:00
return function(timestamp, active) {
if( ! active)
return 'text-gray';
2015-02-05 05:32:42 +01:00
return timeClass(timestamp);
};
2015-02-05 12:05:21 +01:00
})
2015-02-24 22:38:14 +01:00
.filter('propagationTimeClass', function() {
2015-04-09 00:48:27 +02:00
return function(stats, bestBlock) {
if( ! stats.active)
2015-04-06 12:47:11 +02:00
return 'text-gray';
2015-04-09 00:48:27 +02:00
if(stats.block.number < bestBlock)
return 'text-gray';
if(stats.block.propagation == 0)
2015-04-09 23:36:29 +02:00
return 'text-info';
2015-04-06 13:02:52 +02:00
2015-04-09 00:48:27 +02:00
if(stats.block.propagation < 1000)
2015-04-09 23:36:29 +02:00
return 'text-success';
2015-02-24 22:38:14 +01:00
2015-04-09 00:48:27 +02:00
if(stats.block.propagation < 3000)
2015-04-09 23:36:29 +02:00
return 'text-warning';
2015-04-06 12:47:11 +02:00
2015-04-09 00:48:27 +02:00
if(stats.block.propagation < 7000)
2015-04-09 23:36:29 +02:00
return 'text-orange';
2015-02-24 22:38:14 +01:00
2015-04-09 23:36:29 +02:00
return 'text-danger'
2015-02-24 22:38:14 +01:00
};
})
2015-04-28 17:22:11 +02:00
.filter('propagationAvgTimeClass', function() {
2015-04-28 17:44:41 +02:00
return function(propagationAvg, active) {
if( ! active)
return 'text-gray';
2015-04-28 17:44:41 +02:00
if(propagationAvg == 0)
2015-04-28 17:22:11 +02:00
return 'text-info';
2015-04-28 17:44:41 +02:00
if(propagationAvg < 1000)
2015-04-28 17:22:11 +02:00
return 'text-success';
2015-04-28 17:44:41 +02:00
if(propagationAvg < 3000)
2015-04-28 17:22:11 +02:00
return 'text-warning';
2015-04-28 17:44:41 +02:00
if(propagationAvg < 7000)
2015-04-28 17:22:11 +02:00
return 'text-orange';
return 'text-danger'
};
})
2015-03-27 12:35:23 +01:00
.filter('latencyFilter', function() {
return function(stats) {
if(stats.active === false)
return 'offline';
else
return stats.latency + ' ms';
}
})
2015-02-24 22:38:14 +01:00
.filter('latencyClass', function() {
2015-03-27 12:35:23 +01:00
return function(stats) {
if(stats.active === false)
2015-04-09 00:48:27 +02:00
return 'text-danger';
2015-03-27 12:35:23 +01:00
if(stats.latency <= 100)
2015-02-24 22:38:14 +01:00
return 'text-success';
2015-03-27 12:35:23 +01:00
if(stats.latency <= 1000)
2015-02-24 22:38:14 +01:00
return 'text-warning';
return 'text-danger'
};
})
2015-02-18 09:57:45 +01:00
.filter('blockTimeFilter', function() {
2015-02-18 10:10:33 +01:00
return function(timestamp) {
2015-02-18 10:11:26 +01:00
if(timestamp === 0)
return '∞';
2015-04-04 21:35:45 +02:00
// var time = Math.floor((new Date()).getTime() / 1000);
var time = (new Date()).getTime();
var diff = Math.floor((time - timestamp)/1000);
2015-02-18 10:10:33 +01:00
if(diff < 60)
2015-02-23 14:57:41 +01:00
return Math.round(diff) + ' s ago';
2015-02-18 10:10:33 +01:00
return moment.duration(Math.round(diff), 's').humanize() + ' ago';
2015-02-18 09:57:45 +01:00
};
2015-03-04 23:11:51 +01:00
})
2015-04-29 12:14:18 +02:00
.filter('networkHashrateFilter', ['$sce', '$filter', function($sce, filter) {
return function(hashes, isMining) {
2015-04-29 11:39:51 +02:00
var result = 0;
2015-04-29 12:14:18 +02:00
var unit = 'K';
2015-04-29 11:39:51 +02:00
2015-04-29 12:14:18 +02:00
if(hashes !== 0 && hashes < 1000) {
result = hashes;
unit = '';
2015-04-29 11:39:51 +02:00
}
2015-04-29 12:14:18 +02:00
if(hashes >= 1000 && hashes < Math.pow(1000, 2)) {
2015-04-29 11:39:51 +02:00
result = hashes / 1000;
2015-04-29 12:14:18 +02:00
unit = 'K';
2015-04-29 11:39:51 +02:00
}
2015-04-29 12:14:18 +02:00
if(hashes >= Math.pow(1000, 2) && hashes < Math.pow(1000, 3)) {
2015-04-29 11:39:51 +02:00
result = hashes / Math.pow(1000, 2);
2015-04-29 12:14:18 +02:00
unit = 'M';
2015-04-29 11:39:51 +02:00
}
2015-04-29 12:14:18 +02:00
if(hashes >= Math.pow(1000, 3) && hashes < Math.pow(1000, 4)) {
2015-04-29 11:39:51 +02:00
result = hashes / Math.pow(1000, 3);
2015-04-29 12:14:18 +02:00
unit = 'G';
2015-04-29 11:39:51 +02:00
}
2015-04-29 12:14:18 +02:00
if(hashes >= Math.pow(1000, 4) && hashes < Math.pow(1000, 5)) {
2015-04-29 11:39:51 +02:00
result = hashes / Math.pow(1000, 4);
2015-04-29 12:14:18 +02:00
unit = 'T';
2015-04-29 11:39:51 +02:00
}
2015-04-29 12:14:18 +02:00
if( !isMining )
return $sce.trustAsHtml(filter('number')(result.toFixed(1)) + ' <span class="small-hash">' + unit + 'H/s</span>');
return $sce.trustAsHtml('? <span class="small-hash">' + unit + 'KH/s</span>');
2015-04-29 11:39:51 +02:00
};
2015-04-29 12:14:18 +02:00
}])
2015-03-04 23:11:51 +01:00
.filter('blockPropagationFilter', function() {
2015-04-28 17:44:41 +02:00
return function(ms, prefix) {
if(typeof prefix === 'undefined')
prefix = '+';
2015-03-04 23:11:51 +01:00
var result = 0;
2015-03-05 16:04:58 +01:00
if(ms < 1000) {
2015-04-28 17:44:41 +02:00
return (ms === 0 ? "" : prefix) + ms + " ms";
2015-03-04 23:20:57 +01:00
}
2015-03-05 16:04:58 +01:00
if(ms < 1000*60) {
2015-03-04 23:20:57 +01:00
result = ms/1000;
2015-04-28 17:44:41 +02:00
return prefix + result.toFixed(1) + " s";
2015-03-04 23:11:51 +01:00
}
2015-03-05 16:04:58 +01:00
if(ms < 1000*60*60) {
2015-03-04 23:20:57 +01:00
result = ms/1000/60;
2015-04-28 17:44:41 +02:00
return prefix + Math.round(result) + " min";
2015-03-04 23:11:51 +01:00
}
2015-03-05 16:04:58 +01:00
if(ms < 1000*60*60*24) {
2015-03-04 23:20:57 +01:00
result = ms/1000/60/60;
2015-04-28 17:44:41 +02:00
return prefix + Math.round(result) + " h";
2015-03-04 23:11:51 +01:00
}
2015-03-04 23:20:57 +01:00
result = ms/1000/60/60/24;
2015-04-28 17:44:41 +02:00
return prefix + Math.round(result) + " days";
2015-03-04 23:11:51 +01:00
};
})
.filter('avgTimeFilter', function() {
2015-02-18 09:57:45 +01:00
return function(time) {
2015-02-18 10:10:33 +01:00
if(time < 60)
return Math.round(time) + ' s';
2015-02-18 09:57:45 +01:00
return moment.duration(Math.round(time), 's').humanize();
2015-02-18 08:54:04 +01:00
};
})
.filter('avgTimeClass', function() {
return function(time) {
return blockTimeClass(time);
}
})
2015-02-05 12:05:21 +01:00
.filter('upTimeFilter', function() {
return function(uptime) {
return Math.round(uptime) + '%';
};
})
.filter('upTimeClass', function() {
2015-04-09 00:48:27 +02:00
return function(uptime, active) {
if( ! active )
return 'text-gray';
2015-02-05 12:05:21 +01:00
if(uptime >= 90)
return 'text-success';
if(uptime >= 75)
return 'text-warning';
return 'text-danger';
};
})
.filter('geoTooltip', function() {
2015-04-17 00:30:11 +02:00
return function(node) {
var tooltip = [];
var string = '';
2015-04-28 14:50:36 +02:00
if(node.info.node !== '' && typeof node.info.node !== 'undefined') {
2015-04-17 00:30:11 +02:00
var eth_version = node.info.node.split('/');
if(eth_version[1][0] !== 'v' && eth_version[1][2] !== '.')
{
eth_version.splice(1,1);
}
2015-04-17 04:16:01 +02:00
string = "<b>" + node.info.node + "</b>";
2015-04-17 00:30:11 +02:00
tooltip.push(string);
string = "Version: <b>" + (eth_version[1]) + "</b>";
tooltip.push(string);
}
if(node.info.net !== '') {
2015-04-17 02:18:04 +02:00
string = "Network: <b>" + (typeof node.info.net !== 'undefined' ? node.info.net : '-') + "</b>";
2015-04-17 00:30:11 +02:00
tooltip.push(string);
}
if(node.info.protocol !== '') {
2015-04-17 02:18:04 +02:00
string = "Protocol: <b>" + (typeof node.info.protocol !== 'undefined' ? node.info.protocol : '-') + "</b>";
2015-04-17 00:30:11 +02:00
tooltip.push(string);
}
2015-04-17 04:16:01 +02:00
if(node.info.port !== '') {
string = "Port: <b>" + (typeof node.info.port !== 'undefined' ? node.info.port : '30303') + "</b>";
tooltip.push(string);
}
2015-04-17 00:30:11 +02:00
if(node.info.api !== '') {
string = "Web3: <b>" + node.info.api + "</b>";
tooltip.push(string);
}
if(node.info.client !== '') {
2015-04-17 02:20:44 +02:00
string = "API: <b>" + (typeof node.info.client !== 'undefined' ? node.info.client : '<= 0.0.3') + "</b>";
2015-04-17 00:30:11 +02:00
tooltip.push(string);
}
2015-04-17 03:35:08 +02:00
if(node.info.os !== '') {
string = "OS: <b>" + (typeof node.info.os !== 'undefined' ? node.info.os + ' ' + node.info.os_v : '?') + "</b>";
tooltip.push(string);
}
if(node.geo !== null)
{
string = "Location: <b>";
if(node.geo.city !== '')
string += node.geo.city + ", ";
string += node.geo.country + "</b>";
tooltip.push(string);
}
if(node.info.contact !== '') {
string = "Contact: <b>" + (typeof node.info.contact !== 'undefined' ? node.info.contact : '-') + "</b>";
tooltip.push(string);
}
2015-04-17 00:30:11 +02:00
return tooltip.join("<br>");
2015-02-05 09:27:12 +01:00
};
2015-02-08 16:03:05 +01:00
})
.filter('bubbleClass', function() {
return function(node, bestBlock) {
return mainClass(node, bestBlock).replace('text-', '');
2015-04-06 01:28:42 +02:00
};
})
.filter('minerNameFilter', function() {
2015-04-06 20:10:27 +02:00
return function(address, name) {
if(typeof name !== 'undefined' && name !== false && name.length > 0)
return name;
return address.replace('0x', '');
2015-04-06 01:28:42 +02:00
};
})
.filter('minerBlocksClass', function() {
2015-04-17 03:10:08 +02:00
return function(blocks, prefix) {
if(typeof prefix === 'undefined')
prefix = 'bg-';
2015-04-06 01:28:42 +02:00
if(blocks <= 6)
2015-04-17 03:10:08 +02:00
return prefix + 'success';
2015-04-06 01:28:42 +02:00
if(blocks <= 12)
2015-04-17 03:10:08 +02:00
return prefix + 'info';
2015-04-06 01:28:42 +02:00
if(blocks <= 18)
2015-04-17 03:10:08 +02:00
return prefix + 'warning';
2015-04-06 01:28:42 +02:00
2015-04-17 03:10:08 +02:00
return prefix + 'danger';
2015-04-06 01:28:42 +02:00
};
2015-04-28 03:25:49 +02:00
})
.filter('nodeClientClass', function() {
return function(info, current) {
if(typeof info === 'undefined' || typeof info.client === 'undefined' || typeof info.client === '')
return 'text-danger';
if(current.localeCompare(info.client) > 0)
return 'text-warning';
return 'hidden';
};
2015-02-05 05:32:42 +01:00
});
2015-02-05 02:33:58 +01:00
2015-02-08 16:03:05 +01:00
function mainClass(node, bestBlock)
{
if( ! node.active)
2015-04-09 00:10:06 +02:00
return 'text-gray';
2015-02-08 16:03:05 +01:00
if(node.peers === 0)
return 'text-danger';
2015-04-09 00:48:27 +02:00
return peerClass(node.peers, node.active);
2015-02-08 16:03:05 +01:00
}
2015-04-09 00:48:27 +02:00
function peerClass(peers, active)
2015-02-05 05:32:42 +01:00
{
2015-04-09 00:48:27 +02:00
if( ! active)
return 'text-gray';
2015-02-05 05:32:42 +01:00
return (peers <= 1 ? 'text-danger' : (peers > 1 && peers < 4 ? 'text-warning' : 'text-success'));
}
2015-02-05 02:33:58 +01:00
2015-02-05 05:32:42 +01:00
function timeClass(timestamp)
{
2015-04-06 12:47:11 +02:00
var diff = ((new Date()).getTime() - timestamp)/1000;
2015-02-05 02:33:58 +01:00
2015-02-18 08:54:04 +01:00
return blockTimeClass(diff);
}
function blockTimeClass(diff)
{
2015-02-05 05:32:42 +01:00
if(diff <= 12)
return 'text-success';
2015-02-05 02:33:58 +01:00
2015-02-05 05:32:42 +01:00
if(diff <= 20)
2015-04-06 12:55:33 +02:00
return 'text-warning';
2015-02-05 05:32:42 +01:00
if(diff <= 30)
2015-04-06 12:55:33 +02:00
return 'text-orange';
2015-02-05 05:32:42 +01:00
2015-02-18 08:54:04 +01:00
return 'text-danger'
2015-02-05 05:32:42 +01:00
}