szurubooru/public_html/js/Router.js

88 lines
2.3 KiB
JavaScript
Raw Normal View History

2014-08-31 23:22:56 +02:00
var App = App || {};
App.Router = function(pathJs, _, jQuery, util, appState, presenterManager) {
2014-08-31 23:22:56 +02:00
var root = '#/';
2014-09-16 17:29:11 +02:00
var previousLocation = window.location.href;
2014-08-31 23:22:56 +02:00
injectRoutes();
function navigateToMainPage() {
window.location.href = root;
2014-09-08 22:02:28 +02:00
}
2014-08-31 23:22:56 +02:00
function navigate(url) {
window.location.href = url;
2014-09-08 22:02:28 +02:00
}
2014-08-31 23:22:56 +02:00
function navigateInplace(url) {
if ('replaceState' in history) {
history.replaceState('', '', url);
pathJs.dispatch(document.location.hash);
} else {
navigate(url);
}
}
2014-08-31 23:22:56 +02:00
function start() {
2014-09-08 22:02:28 +02:00
pathJs.listen();
}
2014-08-31 23:22:56 +02:00
function injectRoutes() {
2014-09-07 19:49:11 +02:00
inject('#/home', 'homePresenter');
2014-09-07 09:30:48 +02:00
inject('#/login', 'loginPresenter');
inject('#/logout', 'logoutPresenter');
inject('#/register', 'registrationPresenter');
2014-09-07 19:49:11 +02:00
inject('#/upload', 'postUploadPresenter');
inject('#/password-reset(/:token)', 'userActivationPresenter', {operation: 'passwordReset'});
inject('#/activate(/:token)', 'userActivationPresenter', {operation: 'activation'});
2014-09-07 19:49:11 +02:00
inject('#/users(/:searchArgs)', 'userListPresenter');
inject('#/user/:userName(/:tab)', 'userPresenter');
inject('#/posts(/:searchArgs)', 'postListPresenter');
inject('#/comments(/:searchArgs)', 'commentListPresenter');
inject('#/tags(/:searchArgs)', 'tagListPresenter');
inject('#/help', 'helpPresenter');
setRoot('#/home');
2014-09-08 22:02:28 +02:00
}
2014-08-31 23:22:56 +02:00
function setRoot(newRoot) {
root = newRoot;
2014-09-08 22:02:28 +02:00
pathJs.root(newRoot);
}
2014-08-31 23:22:56 +02:00
function inject(path, presenterName, additionalParams) {
2014-09-08 22:02:28 +02:00
pathJs.map(path).to(function() {
var finalParams = _.extend(
this.params,
additionalParams,
{previousRoute: pathJs.routes.previous});
2014-09-17 22:37:49 +02:00
var presenter = App.DI.get(presenterName);
presenter.name = presenterName;
presenterManager.switchContentPresenter(presenter, finalParams);
2014-09-16 17:29:11 +02:00
}).enter(function(e) {
if (util.isExitConfirmationEnabled()) {
if (window.location.href !== previousLocation) {
if (!window.confirm('Are you sure you want to leave this page? Data will be lost.')) {
window.location.href = previousLocation;
return false;
} else {
util.disableExitConfirmation();
}
}
}
previousLocation = window.location.href;
2014-08-31 23:22:56 +02:00
});
2014-09-08 22:02:28 +02:00
}
2014-08-31 23:22:56 +02:00
return {
start: start,
navigate: navigate,
navigateInplace: navigateInplace,
2014-08-31 23:22:56 +02:00
navigateToMainPage: navigateToMainPage,
};
};
App.DI.registerSingleton('router', ['pathJs', '_', 'jQuery', 'util', 'appState', 'presenterManager'], App.Router);