hopglass/lib/meshstats.js

50 lines
1.7 KiB
JavaScript
Raw Normal View History

2015-03-29 19:10:24 +02:00
define(function () {
2015-07-08 16:32:26 +02:00
return function (config) {
2015-03-25 15:33:36 +01:00
var self = this
var stats, timestamp
2015-03-25 15:33:36 +01:00
2015-03-29 17:48:25 +02:00
self.setData = function (d) {
var totalNodes = sum(d.nodes.all.map(one))
var totalOnlineNodes = sum(d.nodes.all.filter(online).map(one))
var totalNewNodes = sum(d.nodes.new.map(one))
var totalLostNodes = sum(d.nodes.lost.map(one))
2015-03-29 17:48:25 +02:00
var totalClients = sum(d.nodes.all.filter(online).map( function (d) {
2015-03-25 15:33:36 +01:00
return d.statistics.clients
}))
2015-03-29 17:48:25 +02:00
var totalGateways = sum(d.nodes.all.filter(online).filter( function (d) {
2015-03-25 15:33:36 +01:00
return d.flags.gateway
}).map(one))
var nodetext = [{ count: totalOnlineNodes, label: "online" },
{ count: totalNewNodes, label: "neu" },
{ count: totalLostNodes, label: "verschwunden" }
].filter( function (d) { return d.count > 0 } )
.map( function (d) { return [d.count, d.label].join(" ") } )
.join(", ")
stats.textContent = totalNodes + " Knoten " +
2015-07-08 23:37:49 +02:00
"(" + nodetext + "), " +
totalClients + " Clients, " +
totalGateways + " Gateways"
2015-03-25 15:33:36 +01:00
timestamp.textContent = "Diese Daten sind von " + d.timestamp.format("LLLL") + "."
2015-03-25 15:33:36 +01:00
}
self.render = function (el) {
var h2 = document.createElement("h2")
2015-07-08 16:32:26 +02:00
h2.textContent = config.siteName
2015-03-25 15:33:36 +01:00
el.appendChild(h2)
var p = document.createElement("p")
2015-03-25 15:33:36 +01:00
el.appendChild(p)
stats = document.createTextNode("")
p.appendChild(stats)
p.appendChild(document.createElement("br"))
timestamp = document.createTextNode("")
p.appendChild(timestamp)
2015-03-25 15:33:36 +01:00
}
return self
}
})