shifty-router
Version:
Fast, modular client router, based on sheet-router
48 lines (38 loc) • 1.39 kB
JavaScript
var window = require('global/window')
var assert = require('assert')
var qs = require('./qs')
module.exports = href
var noRoutingAttrName = 'data-no-routing'
// handle a click if is anchor tag with an href
// and url lives on the same domain. Replaces
// trailing '#' so empty links work as expected.
// (fn(str), obj?) -> undefined
function href (cb, root) {
assert.equal(typeof cb, 'function', 'sheet-router/href: cb must be a function')
window.onclick = function (e) {
if ((e.button && e.button !== 0) || e.ctrlKey || e.metaKey || e.altKey || e.shiftKey) return
var node = (function traverse (node) {
if (!node || node === root) return
if (node.localName !== 'a') return traverse(node.parentNode)
if (node.href === undefined) return traverse(node.parentNode)
if (!sameOrigin(node.href)) return
return node
})(e.target)
if (!node) return
var isRoutingDisabled = node.hasAttribute(noRoutingAttrName)
if (isRoutingDisabled) return
e.preventDefault()
cb({
pathname: node.pathname,
search: (node.search) ? qs(node.search) : {},
href: node.href,
hash: node.hash
})
}
}
function sameOrigin (href) {
var location = window.location
var origin = location.protocol + '//' + location.hostname
if (location.port) origin += ':' + location.port
return (href && (href.indexOf(origin) === 0))
}