hopglass/history.js

739 lines
18 KiB
JavaScript
Raw Normal View History

2015-03-20 14:01:25 +01:00
L.AwesomeMarkers.Icon.prototype.options.prefix = 'ion'
2015-03-20 09:46:24 +01:00
document.addEventListener('DOMContentLoaded', main)
function get(url) {
return new Promise(function(resolve, reject) {
var req = new XMLHttpRequest();
req.open('GET', url);
req.onload = function() {
if (req.status == 200) {
resolve(req.response);
}
else {
reject(Error(req.statusText));
}
};
req.onerror = function() {
reject(Error("Network Error"));
};
req.send();
});
}
function getJSON(url) {
return get(url).then(JSON.parse)
}
function main() {
2015-03-20 21:03:20 +01:00
getJSON("config.json").then( function (config) {
moment.locale("de")
2015-03-20 21:03:20 +01:00
var options = { worldCopyJump: true,
zoomControl: false
}
2015-03-20 13:30:28 +01:00
2015-03-20 21:03:20 +01:00
var map = L.map(document.getElementById("map"), options)
2015-03-20 13:30:28 +01:00
2015-03-20 21:03:20 +01:00
var sh = document.getElementById("sidebarhandle")
sh.onclick = function () {
var sb = document.getElementById("sidebar")
2015-03-20 13:30:28 +01:00
2015-03-20 21:03:20 +01:00
if (sb.classList.contains("hidden"))
sb.classList.remove("hidden")
else
sb.classList.add("hidden")
}
2015-03-20 13:30:28 +01:00
2015-03-20 21:03:20 +01:00
var urls = [ config.dataPath + 'nodes.json',
config.dataPath + 'graph.json'
]
2015-03-20 13:43:30 +01:00
2015-03-20 21:03:20 +01:00
var p = Promise.all(urls.map(getJSON))
p.then(handle_data(config, map))
})
2015-03-20 09:46:24 +01:00
}
function sort(key, d) {
return d.slice().sort( function (a, b) {
return a[key] - b[key]
}).reverse()
}
function limit(key, m, d) {
return d.filter( function (d) {
return d[key].isAfter(m)
})
}
function offline(d) {
return !d.flags.online
}
function online(d) {
return d.flags.online
}
function has_location(d) {
return "location" in d.nodeinfo
}
function subtract(a, b) {
var ids = {}
b.forEach( function (d) {
ids[d.nodeinfo.node_id] = true
})
return a.filter( function (d) {
return !(d.nodeinfo.node_id in ids)
})
}
2015-03-20 21:03:20 +01:00
function handle_data(config, map) {
2015-03-20 13:30:28 +01:00
return function (data) {
2015-03-20 13:43:30 +01:00
var nodedict = data[0]
var nodes = Object.keys(nodedict.nodes).map(function (key) { return nodedict.nodes[key] })
2015-03-20 09:46:24 +01:00
2015-03-20 13:30:28 +01:00
nodes = nodes.filter( function (d) {
return "firstseen" in d && "lastseen" in d
})
2015-03-20 09:46:24 +01:00
2015-03-20 13:30:28 +01:00
nodes.forEach( function(node) {
node.firstseen = moment.utc(node.firstseen)
node.lastseen = moment.utc(node.lastseen)
2015-03-20 13:30:28 +01:00
})
2015-03-20 09:46:24 +01:00
2015-03-20 13:30:28 +01:00
var age = moment().subtract(14, 'days')
2015-03-20 09:46:24 +01:00
2015-03-20 13:30:28 +01:00
var newnodes = limit("firstseen", age, sort("firstseen", nodes).filter(online))
var lostnodes = limit("lastseen", age, sort("lastseen", nodes).filter(offline))
2015-03-20 09:46:24 +01:00
2015-03-20 13:30:28 +01:00
var onlinenodes = subtract(nodes.filter(online).filter(has_location), newnodes)
2015-03-20 09:46:24 +01:00
2015-03-20 15:03:39 +01:00
var graph = data[1].batadv
2015-03-21 10:39:55 +01:00
var graphnodes = data[0].nodes
2015-03-20 15:03:39 +01:00
graph.nodes.forEach( function (d) {
2015-03-22 15:08:04 +01:00
if (d.node_id in graphnodes)
2015-03-21 10:39:55 +01:00
d.node = graphnodes[d.node_id]
2015-03-20 15:03:39 +01:00
})
graph.links.forEach( function (d) {
if (graph.nodes[d.source].node)
d.source = graph.nodes[d.source]
else
d.source = undefined
if (graph.nodes[d.target].node)
d.target = graph.nodes[d.target]
else
d.target = undefined
})
graph = graph.links.filter( function (d) {
2015-03-22 14:47:33 +01:00
return d.source !== undefined && d.target !== undefined
2015-03-20 15:03:39 +01:00
})
2015-03-20 20:08:28 +01:00
graph.forEach( function (d) {
2015-03-22 15:08:04 +01:00
if (!("location" in d.source.node.nodeinfo && "location" in d.target.node.nodeinfo))
return
2015-03-20 20:08:28 +01:00
d.latlngs = []
d.latlngs.push(L.latLng(d.source.node.nodeinfo.location.latitude, d.source.node.nodeinfo.location.longitude))
d.latlngs.push(L.latLng(d.target.node.nodeinfo.location.latitude, d.target.node.nodeinfo.location.longitude))
d.distance = d.latlngs[0].distanceTo(d.latlngs[1])
})
2015-03-22 15:08:04 +01:00
longlinks = graph.slice().filter( function (d) {
return "distance" in d
}).sort( function (a, b) {
2015-03-20 20:08:28 +01:00
return a.distance - b.distance
2015-03-22 15:08:04 +01:00
}).reverse().slice(0, Math.ceil(config.longLinkPercentile * graph.filter( function (d) {
return "distance" in d
}).length))
2015-03-20 20:08:28 +01:00
2015-03-22 15:08:04 +01:00
nodes.forEach( function (d) {
d.neighbours = []
})
graph.forEach( function (d) {
d.source.node.neighbours.push({ node: d.target.node, link: d })
d.target.node.neighbours.push({ node: d.source.node, link: d })
})
2015-03-20 20:08:28 +01:00
2015-03-22 15:20:18 +01:00
var gotoAnything = new gotoBuilder(config, showNodeinfo, showLinkinfo)
2015-03-20 22:55:23 +01:00
var markers = mkmap(map, newnodes, lostnodes, onlinenodes, graph, gotoAnything)
gotoAnything.addMarkers(markers)
2015-03-21 15:59:25 +01:00
addToList(document.getElementById("newnodes"), config.showContact, "firstseen", gotoAnything.node, newnodes)
addToList(document.getElementById("lostnodes"), config.showContact, "lastseen", gotoAnything.node, lostnodes)
addToLongLinksList(document.getElementById("longlinks"), gotoAnything.link, longlinks)
2015-03-21 10:40:58 +01:00
showMeshstats(document.getElementById("meshstats"), nodes)
2015-03-22 13:24:15 +01:00
var historyDict = { nodes: {}, links: {} }
nodes.forEach( function (d) {
historyDict.nodes[d.nodeinfo.node_id] = d
})
graph.forEach( function (d) {
historyDict.links[linkId(d)] = d
})
gotoHistory(gotoAnything, historyDict, window.location.hash)
window.onpopstate = function (d) {
gotoHistory(gotoAnything, historyDict, d.state)
}
2015-03-20 13:30:28 +01:00
}
2015-03-20 09:46:24 +01:00
}
2015-03-20 20:08:28 +01:00
function showDistance(d) {
2015-03-22 15:08:04 +01:00
if (isNaN(d.distance))
return
2015-03-20 20:08:28 +01:00
return (new Intl.NumberFormat("de-DE", {maximumFractionDigits: 0}).format(d.distance)) + " m"
}
function showTq(d) {
var opts = { maximumFractionDigits: 2,
minimumFractionDigits: 2
}
return (new Intl.NumberFormat("de-DE", opts).format(d.tq)) + " TQ"
}
2015-03-20 22:55:23 +01:00
function linkId(d) {
2015-03-22 14:21:11 +01:00
var ids = [d.source.node.nodeinfo.node_id, d.target.node.nodeinfo.node_id]
return ids.sort().join("-")
2015-03-20 22:55:23 +01:00
}
function mkmap(map, newnodes, lostnodes, onlinenodes, graph, gotoAnything) {
2015-03-20 09:57:53 +01:00
L.control.zoom({ position: "topright" }).addTo(map)
2015-03-20 09:46:24 +01:00
L.tileLayer("http://otile{s}.mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.jpg", {
subdomains: "1234",
type: "osm",
attribution: "Map data Tiles &copy; <a href=\"http://www.mapquest.com/\" target=\"_blank\">MapQuest</a> <img src=\"http://developer.mapquest.com/content/osm/mq_logo.png\" />, Map data © OpenStreetMap contributors, CC-BY-SA",
maxZoom: 18
2015-03-20 09:46:24 +01:00
}).addTo(map)
var markersDict = addLinksToMap(map, graph, gotoAnything)
2015-03-20 15:03:39 +01:00
2015-03-22 15:27:16 +01:00
var nodes = newnodes.concat(lostnodes).filter(has_location)
2015-03-20 09:46:24 +01:00
var markers = nodes.map( function (d) {
2015-03-20 14:01:25 +01:00
var icon = L.AwesomeMarkers.icon({ markerColor: d.flags.online ? "green" : "red",
icon: d.flags.online ? "lightbulb" : "bug" })
2015-03-20 09:46:24 +01:00
2015-03-20 20:48:52 +01:00
var opt = { icon: icon,
title: d.nodeinfo.hostname
}
2015-03-20 09:46:24 +01:00
var m = L.marker([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude], opt)
2015-03-21 10:40:09 +01:00
m.on('click', gotoAnything.node(d, false))
2015-03-20 09:46:24 +01:00
m.bindPopup(d.nodeinfo.hostname)
2015-03-20 22:55:23 +01:00
markersDict[d.nodeinfo.node_id] = m
2015-03-20 09:46:24 +01:00
return m
})
var onlinemarkers = onlinenodes.map( function (d) {
2015-03-22 14:00:19 +01:00
var opt = { color: "#1566A9",
fillColor: "#1566A9",
2015-03-20 14:01:25 +01:00
radius: 5,
opacity: 0.7,
fillOpacity: 0.5
2015-03-20 09:46:24 +01:00
}
var m = L.circleMarker([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude], opt)
m.on('click', gotoAnything.node(d, false))
2015-03-20 09:46:24 +01:00
m.bindPopup(d.nodeinfo.hostname)
2015-03-20 22:55:23 +01:00
markersDict[d.nodeinfo.node_id] = m
2015-03-20 09:46:24 +01:00
return m
})
var group = L.featureGroup(markers).addTo(map)
var group_online = L.featureGroup(onlinemarkers).addTo(map)
var bounds = group.getBounds()
if (!bounds.isValid())
bounds = group_online.getBounds()
if (bounds.isValid())
map.fitBounds(bounds, {paddingTopLeft: [getSidebarWidth(), 0]})
2015-03-20 22:55:23 +01:00
var funcDict = {}
Object.keys(markersDict).map( function(k) {
funcDict[k] = function (d) {
var m = markersDict[k]
2015-03-21 19:08:51 +01:00
var bounds
2015-03-20 22:55:23 +01:00
if ("getBounds" in m) {
2015-03-21 19:08:51 +01:00
bounds = m.getBounds()
2015-03-20 22:55:23 +01:00
} else {
2015-03-21 19:08:51 +01:00
bounds = L.latLngBounds([m.getLatLng()])
2015-03-20 22:55:23 +01:00
}
2015-03-21 19:08:51 +01:00
map.fitBounds(bounds, {paddingTopLeft: [getSidebarWidth(), 0]})
m.openPopup(bounds.getCenter())
2015-03-20 22:55:23 +01:00
}
});
return funcDict
2015-03-20 09:46:24 +01:00
}
2015-03-21 19:08:51 +01:00
function getSidebarWidth() {
var small = window.matchMedia("(max-width: 60em)");
var sb = document.getElementById("sidebar")
return small.matches ? 0 : sb.offsetWidth
}
function addLinksToMap(map, graph, gotoAnything) {
2015-03-20 22:55:23 +01:00
var markersDict = {}
2015-03-20 15:03:39 +01:00
var scale = chroma.scale(['green', 'orange', 'red']).domain([1, 10])
2015-03-22 15:08:04 +01:00
graph = graph.filter( function (d) {
return "distance" in d
})
2015-03-20 15:03:39 +01:00
var lines = graph.map( function (d) {
var opts = { color: scale(d.tq).hex(),
2015-03-20 20:48:52 +01:00
weight: 4
2015-03-20 15:03:39 +01:00
}
2015-03-20 20:08:28 +01:00
var line = L.polyline(d.latlngs, opts)
2015-03-20 15:03:39 +01:00
2015-03-21 13:32:07 +01:00
line.bindPopup(d.source.node.nodeinfo.hostname + " " + d.target.node.nodeinfo.hostname + "<br><strong>" + showDistance(d) + " / " + showTq(d) + "</strong>")
line.on('click', gotoAnything.link(d, false))
2015-03-20 17:58:20 +01:00
2015-03-20 22:55:23 +01:00
markersDict[linkId(d)] = line
2015-03-20 15:03:39 +01:00
return line
})
var group = L.featureGroup(lines).addTo(map)
2015-03-20 22:55:23 +01:00
return markersDict
2015-03-20 15:03:39 +01:00
}
2015-03-21 15:59:25 +01:00
function addToLongLinksList(el, gotoProxy, links) {
2015-03-20 20:08:28 +01:00
links.forEach( function (d) {
var row = document.createElement("tr")
var td1 = document.createElement("td")
2015-03-20 22:55:23 +01:00
var a = document.createElement("a")
a.textContent = d.source.node.nodeinfo.hostname + " " + d.target.node.nodeinfo.hostname
a.href = "#"
2015-03-21 15:59:25 +01:00
a.onclick = gotoProxy(d)
2015-03-20 22:55:23 +01:00
td1.appendChild(a)
2015-03-20 20:08:28 +01:00
row.appendChild(td1)
var td2 = document.createElement("td")
2015-03-21 20:49:39 +01:00
td2.textContent = showTq(d)
2015-03-20 20:08:28 +01:00
row.appendChild(td2)
var td3 = document.createElement("td")
2015-03-21 20:49:39 +01:00
td3.textContent = showDistance(d)
row.appendChild(td3)
2015-03-20 20:08:28 +01:00
el.appendChild(row)
})
}
2015-03-21 15:59:25 +01:00
function addToList(el, showContact, tf, gotoProxy, list) {
2015-03-20 09:46:24 +01:00
list.forEach( function (d) {
var time = moment(d[tf]).fromNow()
var row = document.createElement("tr")
var td1 = document.createElement("td")
2015-03-20 22:55:23 +01:00
var a = document.createElement("a")
a.classList.add("hostname")
a.classList.add(d.flags.online ? "online" : "offline")
a.textContent = d.nodeinfo.hostname
2015-03-21 15:59:25 +01:00
a.href = "#"
a.onclick = gotoProxy(d)
2015-03-20 22:55:23 +01:00
td1.appendChild(a)
2015-03-20 09:46:24 +01:00
2015-03-22 15:27:16 +01:00
if (has_location(d)) {
2015-03-20 20:36:49 +01:00
var span = document.createElement("span")
span.classList.add("icon")
span.classList.add("ion-location")
td1.appendChild(span)
}
2015-03-20 21:03:20 +01:00
if ("owner" in d.nodeinfo && showContact) {
2015-03-20 09:46:24 +01:00
var contact = d.nodeinfo.owner.contact
td1.appendChild(document.createTextNode(" " + contact + ""))
}
var td2 = document.createElement("td")
td2.textContent = time
row.appendChild(td1)
row.appendChild(td2)
el.appendChild(row)
})
}
2015-03-21 10:40:58 +01:00
function sum(a) {
return a.reduce( function (a, b) {
return a + b
}, 0)
}
function one() {
return 1
}
function showMeshstats(el, nodes) {
var totalNodes = sum(nodes.filter(online).map(one))
var totalClients = sum(nodes.filter(online).map( function (d) {
return d.statistics.clients
}))
var totalGateways = sum(nodes.filter(online).filter( function (d) {
return d.flags.gateway
}).map(one))
el.textContent = totalNodes + " Knoten (online), " +
totalClients + " Clients, " +
totalGateways + " Gateways"
}
2015-03-22 15:20:18 +01:00
function showNodeinfo(config, gotoAnything, d) {
2015-03-21 16:32:17 +01:00
var el = document.getElementById("nodeinfo")
destroy()
el.classList.remove("hidden")
2015-03-21 16:56:39 +01:00
el.scrollIntoView(false)
2015-03-21 16:32:17 +01:00
var closeButton = document.createElement("button")
closeButton.classList.add("close")
2015-03-22 13:24:15 +01:00
closeButton.onclick = close
2015-03-21 16:32:17 +01:00
el.appendChild(closeButton)
var h2 = document.createElement("h2")
h2.textContent = d.nodeinfo.hostname
2015-03-22 11:19:30 +01:00
var span = document.createElement("span")
span.classList.add(d.flags.online ? "online" : "offline")
span.textContent = " (" + (d.flags.online ? "online" : "offline, " + d.lastseen.fromNow(true)) + ")"
h2.appendChild(span)
2015-03-21 16:32:17 +01:00
el.appendChild(h2)
2015-03-22 11:19:30 +01:00
var attributes = document.createElement("table")
attributes.classList.add("attributes")
attributeEntry(attributes, "Gateway", d.flags.gateway ? "ja" : null)
2015-03-22 15:27:16 +01:00
attributeEntry(attributes, "In der Karte", has_location(d) ? "ja" : "nein")
if (config.showContact)
attributeEntry(attributes, "Kontakt", dictGet(d.nodeinfo, ["owner", "contact"]))
2015-03-22 11:19:30 +01:00
attributeEntry(attributes, "Hardware", dictGet(d.nodeinfo, ["hardware", "model"]))
attributeEntry(attributes, "Primäre MAC", dictGet(d.nodeinfo, ["network", "mac"]))
attributeEntry(attributes, "Firmware", showFirmware(d))
attributeEntry(attributes, "Uptime", showUptime(d))
attributeEntry(attributes, "Teil des Netzes", showFirstseen(d))
attributeEntry(attributes, "Arbeitsspeicher", showRAM(d))
attributeEntry(attributes, "IP Adressen", showIPs(d))
attributeEntry(attributes, "Clients", showClients(d))
el.appendChild(attributes)
2015-03-22 15:08:04 +01:00
if (d.neighbours.length > 0) {
var h3 = document.createElement("h3")
h3.textContent = "Nachbarknoten"
el.appendChild(h3)
var table = document.createElement("table")
var neighbours = d.neighbours.slice().sort( function (a, b) {
2015-03-22 15:20:18 +01:00
return a.node.nodeinfo.hostname.localeCompare(b.node.nodeinfo.hostname)
})
2015-03-22 15:08:04 +01:00
neighbours.forEach( function (d) {
var tr = document.createElement("tr")
var td1 = document.createElement("td")
2015-03-22 15:20:18 +01:00
var a1 = document.createElement("a")
2015-03-22 15:27:33 +01:00
a1.classList.add("hostname")
2015-03-22 15:20:18 +01:00
a1.textContent = d.node.nodeinfo.hostname
2015-03-22 15:27:33 +01:00
a1.href = "#"
2015-03-22 15:20:18 +01:00
a1.onclick = gotoAnything.node(d.node)
td1.appendChild(a1)
2015-03-22 15:27:33 +01:00
if (has_location(d.node)) {
var span = document.createElement("span")
span.classList.add("icon")
span.classList.add("ion-location")
td1.appendChild(span)
}
2015-03-22 15:08:04 +01:00
tr.appendChild(td1)
var td2 = document.createElement("td")
2015-03-22 15:20:18 +01:00
var a2 = document.createElement("a")
a2.href = "#"
a2.textContent = showTq(d.link)
a2.onclick = gotoAnything.link(d.link)
td2.appendChild(a2)
2015-03-22 15:08:04 +01:00
tr.appendChild(td2)
var td3 = document.createElement("td")
2015-03-22 15:20:18 +01:00
var a3 = document.createElement("a")
a3.href = "#"
a3.textContent = showDistance(d.link)
a3.onclick = gotoAnything.link(d.link)
td3.appendChild(a3)
2015-03-22 15:08:04 +01:00
tr.appendChild(td3)
table.appendChild(tr)
})
el.appendChild(table)
}
2015-03-22 13:24:15 +01:00
function close() {
destroy()
pushHistory()
}
2015-03-21 16:32:17 +01:00
function destroy() {
el.classList.add("hidden")
while (el.hasChildNodes())
el.removeChild(el.childNodes[0])
}
2015-03-22 11:19:30 +01:00
function attributeEntry(el, label, value) {
if (value === null || value == undefined)
return
var tr = document.createElement("tr")
var th = document.createElement("th")
th.textContent = label
tr.appendChild(th)
var td = document.createElement("td")
if (typeof value == "function")
value(td)
else
td.appendChild(document.createTextNode(value))
tr.appendChild(td)
el.appendChild(tr)
return td
}
function showFirmware(d) {
var release = dictGet(d.nodeinfo, ["software", "firmware", "release"])
var base = dictGet(d.nodeinfo, ["software", "firmware", "base"])
if (release === null || base === null)
return
return release + " / " + base
}
function showUptime(d) {
if (!("uptime" in d.statistics))
return
return moment.duration(d.statistics.uptime, "seconds").humanize()
}
function showFirstseen(d) {
if (!("firstseen" in d))
return
return d.firstseen.fromNow(true)
}
function showClients(d) {
if (!d.flags.online)
return
return function (el) {
el.appendChild(document.createTextNode(d.statistics.clients > 0 ? d.statistics.clients : "keine"))
el.appendChild(document.createElement("br"))
var span = document.createElement("span")
span.classList.add("clients")
span.textContent = " ".repeat(d.statistics.clients)
el.appendChild(span)
}
}
function showIPs(d) {
var ips = dictGet(d.nodeinfo, ["network", "addresses"])
if (ips === null)
return
ips.sort()
return function (el) {
ips.forEach( function (ip, i) {
var link = !ip.startsWith("fe80:")
if (i > 0)
el.appendChild(document.createElement("br"))
if (link) {
var a = document.createElement("a")
a.href = "http://[" + ip + "]/"
a.textContent = ip
el.appendChild(a)
} else
el.appendChild(document.createTextNode(ip))
})
}
}
function showRAM(d) {
if (!("memory_usage" in d.statistics))
return
return function (el) {
el.appendChild(showBar("memory-usage", d.statistics.memory_usage))
}
}
}
function showBar(className, v) {
var span = document.createElement("span")
span.classList.add("bar")
span.classList.add(className)
var bar = document.createElement("span")
bar.style.width = (v * 100) + "%"
span.appendChild(bar)
var label = document.createElement("label")
label.textContent = (Math.round(v * 100)) + " %"
span.appendChild(label)
return span
2015-03-21 10:40:58 +01:00
}
2015-03-21 15:59:25 +01:00
function showLinkinfo(config, d) {
console.log(d)
2015-03-21 16:51:07 +01:00
}
2015-03-22 13:24:15 +01:00
function pushHistory(d) {
var s = "#!"
if (d) {
if ("node" in d)
s += "n:" + d.node.nodeinfo.node_id
if ("link" in d)
s += "l:" + linkId(d.link)
}
window.history.pushState(s, undefined, s)
}
function gotoHistory(gotoAnything, dict, s) {
if (!s.startsWith("#!"))
return
s = s.slice(2)
var args = s.split(":")
if (args[0] === "n") {
var id = args[1]
if (id in dict.nodes)
gotoAnything.node(dict.nodes[id], true, false)()
}
if (args[0] === "l") {
var id = args[1]
if (id in dict.links)
gotoAnything.link(dict.links[id], true, false)()
}
}
function trueDefault(d) {
return d === undefined ? true : d
}
function gotoBuilder(config, nodes, links) {
var markers = {}
2015-03-22 15:20:18 +01:00
var self = this
2015-03-22 13:24:15 +01:00
function gotoNode(d, showMap, push) {
showMap = trueDefault(showMap)
push = trueDefault(push)
if (showMap && d.nodeinfo.node_id in markers)
2015-03-21 15:59:25 +01:00
markers[d.nodeinfo.node_id]()
2015-03-22 15:20:18 +01:00
nodes(config, self, d)
2015-03-21 16:32:17 +01:00
2015-03-22 13:24:15 +01:00
if (push)
pushHistory( { node: d })
2015-03-21 15:59:25 +01:00
return false
}
2015-03-22 13:24:15 +01:00
function gotoLink(d, showMap, push) {
showMap = trueDefault(showMap)
push = trueDefault(push)
if (showMap && linkId(d) in markers)
2015-03-21 15:59:25 +01:00
markers[linkId(d)]()
links(config, d)
2015-03-21 16:51:07 +01:00
2015-03-22 13:24:15 +01:00
if (push)
pushHistory( { link: d })
2015-03-21 15:59:25 +01:00
return false
}
function addMarkers(d) {
markers = d
}
2015-03-22 15:20:18 +01:00
this.node = function (d, m, p) { return function () { return gotoNode(d, m, p) }}
this.link = function (d, m, p) { return function () { return gotoLink(d, m, p) }}
this.addMarkers = function (d) {
markers = d
}
return this
2015-03-21 15:59:25 +01:00
}
2015-03-22 11:19:30 +01:00
function dictGet(dict, key) {
var k = key.shift()
if (!(k in dict))
return null
if (key.length == 0)
return dict[k]
return dictGet(dict[k], key)
}