Last active
August 29, 2015 14:17
-
-
Save ndugger/037e51f07a0d6bb9ab8f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Router { | |
static read(routes, path) { | |
let pattern = new RegExp("\{(.*)\}"), | |
path = path.split('/'); | |
for (let route in routes) { | |
let variables = {}; | |
if (route.match(pattern)) { // Route contains variables | |
route = route.split('/'); | |
if (route.length === path.length) { // Route is compatable with path | |
for (let i = 0, count = path.length; i < count; i++) { | |
if (route[i].match(pattern)) { // 'Directory' is a variable | |
variables[route[i].match(pattern).pop()] = path[i]; | |
} else if (route[i] === path[i]) { // 'Directory' is same as path | |
continue; | |
} else { // No match, try new route | |
break; | |
} | |
} | |
if (Object.keys(variables).length) { // Found correct route | |
return { | |
path: route.join('/'), | |
data: variables | |
} | |
} | |
} | |
} | |
} | |
return { | |
path: path.join('/') | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment