diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-04-13 16:34:31 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-04-13 16:34:31 -0400 |
| commit | d83787d5ebe3927c60aec747545838cacf7a6c31 (patch) | |
| tree | 442394777fb1ef3335fb78334e47f97426951c15 /public/assets | |
| parent | 7d60d71f1af243b0b10dd12ea0efc846a998b5c0 (diff) | |
fix routing
Diffstat (limited to 'public/assets')
| -rw-r--r-- | public/assets/js/vendor/Router.js | 110 |
1 files changed, 57 insertions, 53 deletions
diff --git a/public/assets/js/vendor/Router.js b/public/assets/js/vendor/Router.js index 3b0d939..c4115dc 100644 --- a/public/assets/js/vendor/Router.js +++ b/public/assets/js/vendor/Router.js @@ -15,68 +15,72 @@ var Router = View.extend({ } }, - route: function(){ - var path = this.routeByHash ? window.location.hash.substr(0) : window.location.pathname + route: function(){ + var path = this.routeByHash ? window.location.hash.substr(0) : window.location.pathname path = path || "/" - this.originalPath = path - this.parseRoute(path) - }, - - parseRoute: function(pathname){ + this.originalPath = path + this.parseRoute(path) + }, + + parseRoute: function(pathname){ pathname = pathname.replace(/^#/, "") - if (pathname[0] !== "/") { pathname = "/" + pathname } + if (pathname[0] !== "/") { pathname = "/" + pathname } - var routes = this.routes, - path = pathname.split("/"); + var routes = this.routes, + path = pathname.split("/"); - for (var i = 0; i < path.length; i++) { - if (! path[i].length) { - path[i] = null - } - } + for (var i = 0; i < path.length; i++) { + if (! path[i].length) { + path[i] = null + } + } - if (pathname in routes) { - this[this.routes[pathname]]() - return - } - - if (path[path.length-1] == null) { - path.pop() - } + if (pathname in routes) { + this[this.routes[pathname]]() + return + } + + if (path[path.length-1] == null) { + path.pop() + } - for (var route in routes) { - var routePath = route.split("/") - if (routePath[1] == path[1]) { - if (routePath[2] && routePath[2].indexOf(":") !== -1 && path[2] && (path[3] === routePath[3]) ) { - this[this.routes[route]](path[2]) - return - } - else if (routePath[2] == path[2]) { - if (routePath[3] && path[3]) { - if (routePath[3].indexOf(":") !== -1) { - this[this.routes[route]](path[3]) - return - } - else if (routePath[3] == path[3]) { - this[this.routes[route]]() - return - } - } - else if (! routePath[3] && ! path[3]) { - this[this.routes[route]]() - return - } - } - else if (! routePath[2] && (! path[2].length || ! path[2])) { - this[this.routes[route]]() - return - } - } - } + for (var route in routes) { + var routePath = route.split("/") + if (routePath[1] == path[1]) { + if (routePath[2] && routePath[2].indexOf(":") !== -1 && path[2] && (path[3] === routePath[3]) ) { + this[this.routes[route]](path[2]) + return + } + else if (routePath[2] == path[2]) { + if (routePath[3] && path[3]) { + if (routePath[3].indexOf(":") !== -1) { + this[this.routes[route]](path[3]) + return + } + else if (routePath[3] == path[3]) { + this[this.routes[route]]() + return + } + } + else if (! routePath[3] && ! path[3]) { + this[this.routes[route]]() + return + } + } + else if (! routePath[2] && (! path[2].length || ! path[2])) { + this[this.routes[route]]() + return + } + } + else if (routePath[1].indexOf(":") !== -1 && path.length < 3) { + this[this.routes[route]](path[1]) + return + } + } // Redirect to root on 404 window.location = '/' - } + } }) |
