bypass route resolution algorithm on non-routed redraws

This commit is contained in:
Leo Horie 2016-12-05 11:23:25 -05:00
parent bb4321e8db
commit 809d8921c9
8 changed files with 105 additions and 117 deletions

View file

@ -18,11 +18,11 @@ module.exports = function($window) {
var asyncId
function debounceAsync(f) {
return function(e) {
return function() {
if (asyncId != null) return
asyncId = callAsync(function() {
asyncId = null
f(e)
f()
})
}
@ -79,7 +79,7 @@ module.exports = function($window) {
}
function defineRoutes(routes, resolve, reject) {
function resolveRoute(isAction) {
function resolveRoute() {
var path = getPath()
var params = {}
var pathname = parsePath(path, params, params)
@ -94,7 +94,7 @@ module.exports = function($window) {
for (var i = 0; i < keys.length; i++) {
params[keys[i].replace(/:|\./g, "")] = decodeURIComponent(values[i])
}
resolve(routes[route], params, path, route, Boolean(isAction))
resolve(routes[route], params, path, route)
})
return
}
@ -105,9 +105,7 @@ module.exports = function($window) {
if (supportsPushState) $window.onpopstate = debounceAsync(resolveRoute)
else if (prefix.charAt(0) === "#") $window.onhashchange = resolveRoute
resolveRoute(true)
return resolveRoute
resolveRoute()
}
function link(vnode) {