2015-04-02 19:59:07 +02:00
|
|
|
define(["moment", "virtual-dom"], function (moment, V) {
|
2015-04-26 11:52:21 +02:00
|
|
|
return function(nodes, field, router, title) {
|
2015-03-25 16:28:36 +01:00
|
|
|
var self = this
|
2015-04-02 19:59:07 +02:00
|
|
|
var el, tbody
|
2015-03-25 16:28:36 +01:00
|
|
|
|
2015-03-29 16:14:10 +02:00
|
|
|
self.render = function (d) {
|
2015-03-25 16:28:36 +01:00
|
|
|
el = document.createElement("div")
|
|
|
|
d.appendChild(el)
|
|
|
|
}
|
|
|
|
|
2015-03-29 17:48:25 +02:00
|
|
|
self.setData = function (data) {
|
|
|
|
var list = data.nodes[nodes]
|
|
|
|
|
2015-04-02 19:59:07 +02:00
|
|
|
if (list.length === 0) {
|
|
|
|
while (el.firstChild)
|
|
|
|
el.removeChild(el.firstChild)
|
|
|
|
|
|
|
|
tbody = null
|
|
|
|
|
2015-03-25 16:28:36 +01:00
|
|
|
return
|
2015-04-02 19:59:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!tbody) {
|
|
|
|
var h2 = document.createElement("h2")
|
|
|
|
h2.textContent = title
|
|
|
|
el.appendChild(h2)
|
|
|
|
|
|
|
|
var table = document.createElement("table")
|
|
|
|
el.appendChild(table)
|
|
|
|
|
|
|
|
tbody = document.createElement("tbody")
|
|
|
|
tbody.last = V.h("tbody")
|
|
|
|
table.appendChild(tbody)
|
|
|
|
}
|
|
|
|
|
|
|
|
var items = list.map( function (d) {
|
|
|
|
var time = moment(d[field]).from(data.now)
|
|
|
|
var td1Content = []
|
|
|
|
|
|
|
|
var aClass = ["hostname", d.flags.online ? "online" : "offline"]
|
|
|
|
|
|
|
|
td1Content.push(V.h("a", { className: aClass.join(" "),
|
|
|
|
onclick: router.node(d),
|
|
|
|
href: "#"
|
|
|
|
}, d.nodeinfo.hostname))
|
|
|
|
|
|
|
|
if (has_location(d))
|
|
|
|
td1Content.push(V.h("span", {className: "icon ion-location"}))
|
|
|
|
|
|
|
|
var td1 = V.h("td", td1Content)
|
|
|
|
var td2 = V.h("td", time)
|
2015-03-25 16:28:36 +01:00
|
|
|
|
2015-04-02 19:59:07 +02:00
|
|
|
return V.h("tr", [td1, td2])
|
2015-03-25 16:28:36 +01:00
|
|
|
})
|
|
|
|
|
2015-04-02 19:59:07 +02:00
|
|
|
var tbodyNew = V.h("tbody", items)
|
|
|
|
tbody = V.patch(tbody, V.diff(tbody.last, tbodyNew))
|
|
|
|
tbody.last = tbodyNew
|
2015-03-25 16:28:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return self
|
|
|
|
}
|
|
|
|
})
|