Last active
December 17, 2015 15:29
-
-
Save gcpantazis/5631831 to your computer and use it in GitHub Desktop.
Lightweight Backbone-ish Router
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
// Router Module | |
// -------------------------------------------- | |
// | |
// * **Class:** Router | |
// * **Version:** 0.1 | |
// * **Modified:** 05/01/2013 | |
// * **Author:** George Pantazis | |
// | |
// This class is a lightweight extraction of Backbone's router object. For more information, please | |
// refer to [that project's documentation](http://backbonejs.org/#Router). | |
// | |
// *Binding:* | |
// | |
// Note that when binding, the callback will fire immediately if the current | |
// hash matches the provided route pattern. | |
// | |
// var Router = require('require/global-router'); | |
// | |
// Router.on('foo/bar/:a(/:b)(/:c)', function(a,b,c){ | |
// console.log(a,b,c); | |
// }); | |
// | |
// *Unbinding:* | |
// | |
// Router.off('foo/bar/:a(/:b)(/:c)'); | |
// | |
define(function (require) { | |
'use strict'; | |
var Modernizr = require('modernizr'), | |
Settings = require('require/global-settings'); | |
var _router; | |
var router = { | |
'init': function() { | |
_router = new Router(); | |
}, | |
'on': function(route, cb) { | |
_router.addRoute(route, cb); | |
}, | |
'off': function(route) { | |
_router.removeRoute(route); | |
} | |
}; | |
var Router = function(element){ | |
var self = this; | |
self.routeStripper = /^[#\/]|\s+$/g; | |
self.init(); | |
}; | |
Router.prototype = { | |
constructor: Router, | |
init: function() { | |
var self = this; | |
self.routes = []; | |
if ( Modernizr.hashchange && !Settings.isLTIE8 ) { | |
Settings.$window.on('hashchange', function(){ | |
self.checkUrl(); | |
}); | |
} else { | |
self._checkUrlInterval = setInterval(function(){ | |
self.checkUrl(); | |
}, 500); | |
} | |
self.checkUrl(); | |
log('Global : Router : Initialized'); | |
}, | |
addRoute: function(route, cb) { | |
var self = this, | |
routeData; | |
if ( typeof route === 'string' && typeof cb === 'function' ) { | |
routeData = { | |
'route': route, | |
'cb': cb | |
}; | |
self.routes.push(routeData); | |
self.checkUrl(routeData); | |
} | |
}, | |
removeRoute: function(route) { | |
var self = this; | |
for ( var i = 0; i < self.routes.length; i++ ) { | |
if ( self.routes[i].route === route ) { | |
self.routes.splice(i, 1); | |
} | |
} | |
}, | |
checkUrl: function(routeData) { | |
var self = this, | |
current = self.getFragment(), | |
match; | |
if (current === self.fragment && !routeData) { | |
return false; | |
} | |
if ( routeData ) { | |
match = current.match(self.routeToRegExp(routeData.route)); | |
if ( match ) { | |
routeData.cb.apply(window, match.slice(1)); | |
} | |
return; | |
} | |
for ( var i = 0; i < self.routes.length; i++ ) { | |
match = current.match(self.routeToRegExp(self.routes[i].route)); | |
if ( match ) { | |
self.routes[i].cb.apply(window, match.slice(1)); | |
} | |
} | |
self.fragment = current; | |
}, | |
// Strips route from hash if present (x-browser smoothing). | |
getFragment: function(fragment) { | |
var self = this; | |
if (!fragment) { | |
fragment = self.getHash(); | |
} | |
return fragment.replace(self.routeStripper, ''); | |
}, | |
// Get current window hash. | |
getHash: function() { | |
var match = window.location.href.match(/#(.*)$/); | |
return match ? match[1] : ''; | |
}, | |
// Converts routes into regular expressions that can be used by `.match()` | |
routeToRegExp: function(route) { | |
var optionalParam = /\((.*?)\)/g, | |
namedParam = /(\(\?)?:\w+/g, | |
splatParam = /\*\w+/g, | |
escapeRegExp = /[\-{}\[\]+?.,\\\^$|#\s]/g; | |
route = route.replace(escapeRegExp, '\\$&') | |
.replace(optionalParam, '(?:$1)?') | |
.replace(namedParam, function(match, optional){ return optional ? match : '([^\/]+)'; }) | |
.replace(splatParam, '(.*?)'); | |
return new RegExp('^' + route + '$'); | |
} | |
}; | |
return router; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment