meshviewer/lib/proportions.js

187 lines
5.8 KiB
JavaScript
Raw Normal View History

define(['d3-interpolate', 'snabbdom', 'utils/version', 'filters/genericnode', 'helper'],
function (d3Interpolate, V, versionCompare, Filter, helper) {
'use strict';
2017-11-05 15:58:41 +00:00
V = V.default;
2015-04-02 20:07:00 +00:00
return function (filterManager) {
var self = this;
2017-11-05 17:23:40 +00:00
var scale = d3Interpolate.interpolate(config.forceGraph.tqFrom, config.forceGraph.tqTo);
2017-11-06 17:54:50 +00:00
var time;
2015-03-30 00:58:47 +00:00
var statusTable;
var fwTable;
var hwTable;
var geoTable;
var autoTable;
2017-04-22 22:03:42 +00:00
var gatewayTable;
var gateway6Table;
var siteTable;
function count(nodes, key, f) {
var dict = {};
2015-03-30 00:58:47 +00:00
nodes.forEach(function (d) {
2016-05-26 16:37:24 +00:00
var v = helper.dictGet(d, key.slice(0));
2015-03-30 00:58:47 +00:00
if (f !== undefined) {
v = f(v);
}
2015-03-30 00:58:47 +00:00
if (v === null) {
return;
}
2015-03-30 00:58:47 +00:00
dict[v] = 1 + (v in dict ? dict[v] : 0);
});
2015-03-30 00:58:47 +00:00
return Object.keys(dict).map(function (d) {
return [d, dict[d], key, f];
});
}
2015-03-30 00:58:47 +00:00
function addFilter(filter) {
return function () {
filterManager.addFilter(filter);
return false;
};
}
function fillTable(name, table, data) {
if (!table) {
table = document.createElement('table');
}
2017-02-18 23:15:36 +00:00
var max = Math.max.apply(Math, data.map(function (o) {
return o[1];
}));
var items = data.map(function (d) {
var v = d[1] / max;
2017-01-28 14:33:13 +00:00
var filter = new Filter(_.t(name), d[2], d[0], d[3]);
2015-07-07 22:36:57 +00:00
var a = V.h('a', { props: { href: '#' }, on: { click: addFilter(filter) } }, d[0]);
var th = V.h('th', a);
var td = V.h('td', V.h('span', {
style: {
width: 'calc(25px + ' + Math.round(v * 90) + '%)',
backgroundColor: scale(v)
}
}, d[1].toFixed(0)));
2015-03-30 00:58:47 +00:00
return V.h('tr', [th, td]);
});
var tableNew = V.h('table', { props: { className: 'proportion' } }, items);
return V.patch(table, tableNew);
}
self.setData = function setData(data) {
2017-10-31 12:32:39 +00:00
var onlineNodes = data.nodes.online;
var nodes = onlineNodes.concat(data.nodes.lost);
2017-11-06 17:54:50 +00:00
time = data.timestamp;
function hostnameOfNodeID(nodeid) {
var gateway = data.nodeDict[nodeid];
if (gateway) {
return gateway.hostname;
}
return null;
}
var gatewayDict = count(nodes, ['gateway'], hostnameOfNodeID);
var gateway6Dict = count(nodes, ['gateway6'], hostnameOfNodeID);
var statusDict = count(nodes, ['is_online'], function (d) {
return d ? 'online' : 'offline';
});
var fwDict = count(nodes, ['firmware', 'release']);
var hwDict = count(nodes, ['model']);
var geoDict = count(nodes, ['location'], function (d) {
2017-01-28 14:33:13 +00:00
return d && d.longitude && d.latitude ? _.t('yes') : _.t('no');
});
var autoDict = count(nodes, ['autoupdater'], function (d) {
if (d.enabled) {
return d.branch;
}
2017-01-28 14:33:13 +00:00
return _.t('node.deactivated');
});
var siteDict = count(nodes, ['site_code'], function (d) {
if (config.siteNames) {
config.siteNames.forEach(function (t) {
if (d === t.site) {
2017-04-22 22:03:42 +00:00
d = t.name;
}
});
}
2017-04-22 22:03:42 +00:00
return d;
});
statusTable = fillTable('node.status', statusTable, statusDict.sort(function (a, b) {
return b[1] - a[1];
}));
fwTable = fillTable('node.firmware', fwTable, fwDict.sort(versionCompare));
hwTable = fillTable('node.hardware', hwTable, hwDict.sort(function (a, b) {
return b[1] - a[1];
}));
geoTable = fillTable('node.visible', geoTable, geoDict.sort(function (a, b) {
return b[1] - a[1];
}));
autoTable = fillTable('node.update', autoTable, autoDict.sort(function (a, b) {
return b[1] - a[1];
}));
gatewayTable = fillTable('node.selectedGatewayIPv4', gatewayTable, gatewayDict.sort(function (a, b) {
return b[1] - a[1];
}));
gateway6Table = fillTable('node.selectedGatewayIPv6', gateway6Table, gateway6Dict.sort(function (a, b) {
2017-04-22 22:03:42 +00:00
return b[1] - a[1];
}));
siteTable = fillTable('node.site', siteTable, siteDict.sort(function (a, b) {
return b[1] - a[1];
}));
};
self.render = function render(el) {
2017-01-28 14:33:13 +00:00
self.renderSingle(el, 'node.status', statusTable);
self.renderSingle(el, 'node.firmware', fwTable);
self.renderSingle(el, 'node.hardware', hwTable);
self.renderSingle(el, 'node.visible', geoTable);
self.renderSingle(el, 'node.update', autoTable);
self.renderSingle(el, 'node.selectedGatewayIPv4', gatewayTable);
self.renderSingle(el, 'node.selectedGatewayIPv6', gateway6Table);
2017-01-28 14:33:13 +00:00
self.renderSingle(el, 'node.site', siteTable);
if (config.globalInfos) {
var images = document.createElement('div');
el.appendChild(images);
var img = [];
2017-11-06 17:54:50 +00:00
var subst = {
'{TIME}': time,
'{LOCALE}': _.locale()
};
config.globalInfos.forEach(function (globalInfo) {
img.push(V.h('h2', globalInfo.name));
2017-11-06 17:54:50 +00:00
img.push(helper.showStat(V, globalInfo, subst));
});
V.patch(images, V.h('div', img));
}
};
2015-03-30 00:58:47 +00:00
self.renderSingle = function renderSingle(el, heading, table) {
if (table.children.length > 0) {
var h2 = document.createElement('h2');
h2.classList.add('proportion-header');
h2.textContent = _.t(heading);
h2.onclick = function onclick() {
table.elm.classList.toggle('hide');
};
el.appendChild(h2);
el.appendChild(table.elm);
}
};
return self;
};
});