meshviewer/lib/linklist.js

61 lines
1.9 KiB
JavaScript
Raw Normal View History

2015-04-07 15:41:17 +00:00
define(["sorttable", "virtual-dom"], function (SortTable, V) {
function linkName(d) {
return (d.source.node ? d.source.node.nodeinfo.hostname : d.source.id) + " " + d.target.node.nodeinfo.hostname;
2015-04-07 15:41:17 +00:00
}
2015-03-25 15:04:23 +00:00
2015-04-07 15:41:17 +00:00
var headings = [{ name: "Knoten",
sort: function (a, b) {
return linkName(a).localeCompare(linkName(b));
2015-04-07 15:41:17 +00:00
},
reverse: false
},
{ name: "TQ",
sort: function (a, b) { return a.tq - b.tq; },
2015-04-07 15:41:17 +00:00
reverse: true
},
2016-02-18 19:26:05 +00:00
{ name: "Typ",
sort: function (a, b) {
return a.type.localeCompare(b.type);
2016-02-18 19:26:05 +00:00
},
reverse: false
},
2015-04-07 15:41:17 +00:00
{ name: "Entfernung",
sort: function (a, b) {
return (a.distance === undefined ? -1 : a.distance) -
(b.distance === undefined ? -1 : b.distance);
2015-04-07 15:41:17 +00:00
},
reverse: true
}];
2015-03-25 15:04:23 +00:00
2015-04-07 15:41:17 +00:00
return function(linkScale, router) {
var table = new SortTable(headings, 2, renderRow);
2015-03-25 15:04:23 +00:00
2015-04-07 15:41:17 +00:00
function renderRow(d) {
var td1Content = [V.h("a", {href: "#", onclick: router.link(d)}, linkName(d))];
2015-03-25 15:04:23 +00:00
var td1 = V.h("td", td1Content);
var td2 = V.h("td", {style: {color: linkScale(d.tq).hex()}}, showTq(d));
var td3 = V.h("td", d.type);
var td4 = V.h("td", showDistance(d));
2015-04-03 00:32:32 +00:00
return V.h("tr", [td1, td2, td3, td4]);
2015-04-07 15:41:17 +00:00
}
2015-03-25 15:04:23 +00:00
2015-04-07 15:41:17 +00:00
this.render = function (d) {
var el = document.createElement("div");
el.last = V.h("div");
d.appendChild(el);
2015-03-25 15:04:23 +00:00
var h2 = document.createElement("h2");
h2.textContent = "Verbindungen";
el.appendChild(h2);
2015-03-25 15:04:23 +00:00
el.appendChild(table.el);
};
2015-03-25 15:04:23 +00:00
2015-04-07 15:41:17 +00:00
this.setData = function (d) {
table.setData(d.graph.links);
};
};
});