hash url state manager

This commit is contained in:
Adam Bradley
2015-07-09 11:39:39 -05:00
parent 5681c57017
commit 45ac09a391
4 changed files with 149 additions and 101 deletions

View File

@ -1,6 +1,5 @@
import {bootstrap, Compiler, ElementRef, NgZone, bind, ViewRef} from 'angular2/angular2'; import {bootstrap, Compiler, ElementRef, NgZone, bind, ViewRef} from 'angular2/angular2';
import {AppViewManager} from 'angular2/src/core/compiler/view_manager'; import {AppViewManager} from 'angular2/src/core/compiler/view_manager';
import {ViewContainerRef} from 'angular2/src/core/compiler/view_container_ref';
import {NgZone} from 'angular2/src/core/zone/ng_zone'; import {NgZone} from 'angular2/src/core/zone/ng_zone';
import {IonicRouter} from '../../routing/router'; import {IonicRouter} from '../../routing/router';
@ -75,10 +74,10 @@ export class IonicApp {
* Create and append the given component into the root * Create and append the given component into the root
* element of the app. * element of the app.
* *
* @param Component the ComponentType to create and insert * @param Component the cls to create and insert
* @return Promise that resolves with the ContainerRef created * @return Promise that resolves with the ContainerRef created
*/ */
appendComponent(ComponentType: Type, context=null) { appendComponent(cls: Type, context=null) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let injector = this.injector(); let injector = this.injector();
let compiler = injector.get(Compiler); let compiler = injector.get(Compiler);
@ -86,7 +85,7 @@ export class IonicApp {
let rootComponentRef = this._ref._hostComponent; let rootComponentRef = this._ref._hostComponent;
let viewContainerLocation = rootComponentRef.location; let viewContainerLocation = rootComponentRef.location;
compiler.compileInHost(ComponentType).then(protoViewRef => { compiler.compileInHost(cls).then(protoViewRef => {
let atIndex = 0; let atIndex = 0;
let hostViewRef = viewMngr.createViewInContainer( let hostViewRef = viewMngr.createViewInContainer(
@ -159,7 +158,7 @@ function initApp(window, document, config) {
return app; return app;
} }
export function ionicBootstrap(ComponentType, config, router) { export function ionicBootstrap(cls, config, router) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
try { try {
// get the user config, or create one if wasn't passed in // get the user config, or create one if wasn't passed in
@ -203,10 +202,10 @@ export function ionicBootstrap(ComponentType, config, router) {
bind(Modal).toValue(modal) bind(Modal).toValue(modal)
]; ];
bootstrap(ComponentType, injectableBindings).then(appRef => { bootstrap(cls, injectableBindings).then(appRef => {
app.load(appRef); app.load(appRef);
router.init(window); router.load(app, config, window);
// resolve that the app has loaded // resolve that the app has loaded
resolve(app); resolve(app);
@ -222,15 +221,3 @@ export function ionicBootstrap(ComponentType, config, router) {
} }
}); });
} }
export function load(app) {
if (!app) {
console.error('Invalid app module');
} else if (!app.main) {
console.error('App module missing main()');
} else {
app.main(ionicBootstrap);
}
}

View File

@ -12,6 +12,7 @@ export * from 'ionic/platform/platform'
export * from 'ionic/platform/registry' export * from 'ionic/platform/registry'
export * from 'ionic/routing/router' export * from 'ionic/routing/router'
export * from 'ionic/routing/hash-url-state'
export * from 'ionic/util/click-block' export * from 'ionic/util/click-block'
export * from 'ionic/util/focus' export * from 'ionic/util/focus'

View File

@ -0,0 +1,105 @@
import {IonicRouter} from './router';
import * as util from '../util/util';
class HashUrlStateManager {
constructor(router, ionicApp, ionicConfig, window) {
this.router = router;
this.ionicApp = ionicApp;
this.ionicConfig = ionicConfig;
this.location = window.location;
this.history = window.history;
window.addEventListener('popstate', ev => {
this.onPopState(ev);
});
}
stateChange(path, type, activeView) {
if (type == 'pop') {
// if the popstate came from the browser's back button (and not Ionic)
// then we shouldn't force another browser history.back()
// only do a history.back() if the URL hasn't been updated yet
if (this.isDifferentPath(path)) {
this.history.back();
}
} else {
// push state change
let enteringState = {
path: path,
backPath: this.router.lastPath(),
forwardPath: null
};
if (this._hasInit) {
// update the leaving state to know what it's forward state will be
let leavingState = util.extend(this.history.state, {
forwardPath: enteringState.path
});
if (leavingState.path !== enteringState.path) {
this.history.replaceState(leavingState, '', '#' + leavingState.path);
}
if (this.isDifferentPath(path)) {
// push the new state to the history stack since the path
// isn't already in the location hash
this.history.pushState(enteringState, '', '#' + enteringState.path);
}
} else {
// replace the very first load with the correct entering state info
this.history.replaceState(enteringState, '', '#' + enteringState.path);
this._hasInit = true;
}
}
}
onPopState(ev) {
let newState = ev.state || {};
let newStatePath = newState.path;
let newStateBackPath = newState.backPath;
let newStateForwardPath = newState.forwardPath;
let lastLoadedStatePath = this.router.lastPath();
if (newStatePath === lastLoadedStatePath) {
// do nothing if the last path is the same
// as the "new" current state
return;
}
let activeViewCtrl = this.router.activeViewController();
if (activeViewCtrl) {
if (newStateForwardPath === lastLoadedStatePath) {
// if the last loaded state path is the same as the new
// state's forward path then the user is moving back
activeViewCtrl.pop();
} else if (newStateBackPath === lastLoadedStatePath) {
// if the last loaded state path is the new state's
// back path, then the user is moving forward
this.loadByPath(newStatePath);
}
}
}
getCurrentPath() {
// Grab the path without the leading hash
return {
path: this.location.hash.slice(1),
priority: 0
}
}
isDifferentPath(path) {
// check if the given path is different than the current location
return (this.location.hash !== ('#' + path));
}
}
IonicRouter.registerStateManager('hashurl', HashUrlStateManager);

View File

@ -32,20 +32,16 @@ export class IonicRouter {
} }
} }
init(window) { load(ionicApp, ionicConfig, window) {
this.initHistory(window); // create each of the state manager classes
for (let name in stateManagerClasses) {
stateManagers[name] = new stateManagerClasses[name](this, ionicApp, ionicConfig, window);
}
stateManagerClasses = {};
this.loadByPath(this.getCurrentPath(), this.otherwise()); this.loadByPath(this.getCurrentPath(), this.otherwise());
} }
initHistory(window) {
this.location = window.location;
this.history = window.history;
window.addEventListener('popstate', ev => {
this.onPopState(ev);
});
}
loadByPath(path, fallbackRoute) { loadByPath(path, fallbackRoute) {
let self = this; let self = this;
let activeViewCtrl = self.activeViewController(); let activeViewCtrl = self.activeViewController();
@ -54,7 +50,7 @@ export class IonicRouter {
function zoneLoad() { function zoneLoad() {
self._app.zone().run(() => { self._app.zone().run(() => {
activeViewCtrl.push(matchedRoute.cls); activeViewCtrl.push(matchedRoute.cls);
self._lastPath = matchedRoute.path; self.lastPath(matchedRoute.path);
}); });
} }
@ -74,90 +70,47 @@ export class IonicRouter {
} }
} }
onPopState(ev) { getCurrentPath() {
let newState = ev.state || {}; // check each of the state managers and the one with the
let newStatePath = newState.path; // highest priority wins of knowing what path we are currently at
let newStateBackPath = newState.backPath; let rtnPath = null;
let newStateForwardPath = newState.forwardPath; let highestPriority = -1;
let lastLoadedStatePath = this._lastPath; let currentState = null;
if (newStatePath === lastLoadedStatePath) { for (let name in stateManagers) {
// do nothing if the last path is the same currentState = stateManagers[name].getCurrentPath();
// as the "new" current state if (currentState.path && currentState.priority > highestPriority) {
return; rtnPath = currentState.path;
}
let activeViewCtrl = this.activeViewController();
if (activeViewCtrl) {
if (newStateForwardPath === lastLoadedStatePath) {
// if the last loaded state path is the same as the new
// state's forward path then the user is moving back
activeViewCtrl.pop();
} else if (newStateBackPath === lastLoadedStatePath) {
// if the last loaded state path is the new state's
// back path, then the user is moving forward
this.loadByPath(newStatePath);
} }
} }
return rtnPath;
} }
stateChange(type, activeView) { stateChange(type, activeView) {
if (activeView && activeView.ComponentType) { if (activeView && activeView.cls) {
let routeConfig = activeView.ComponentType.route; let routeConfig = activeView.cls.route;
if (routeConfig) { if (routeConfig) {
let matchedRoute = this.match(routeConfig.path); let matchedRoute = this.match(routeConfig.path);
if (matchedRoute) { if (matchedRoute) {
if (type == 'pop') { for (let name in stateManagers) {
// if the popstate came from the browser's back button (and not Ionic) stateManagers[name].stateChange(matchedRoute.path, type, activeView);
// then we shouldn't force another browser history.back()
// only do a history.back() if the URL hasn't been updated yet
if (this.isNewPath(matchedRoute.path)) {
this.history.back();
}
} else {
this.pushState(matchedRoute);
} }
this._lastPath = matchedRoute.path; this.lastPath(matchedRoute.path);
} }
} }
} }
} }
pushState(route) { lastPath(val) {
let enteringState = { if (arguments.length) {
path: route.path, this._lastPath = val;
backPath: this._lastPath,
forwardPath: null
};
if (this._hasInit) {
// update the leaving state to know what it's forward state will be
let leavingState = util.extend(this.history.state, {
forwardPath: enteringState.path
});
if (leavingState.path !== enteringState.path) {
this.history.replaceState(leavingState, '', '#' + leavingState.path);
}
if (this.isNewPath(route.path)) {
// push the new state to the history stack since the path
// isn't already in the location hash
this.history.pushState(enteringState, '', '#' + enteringState.path);
}
} else {
// replace the very first load with the correct entering state info
this.history.replaceState(enteringState, '', '#' + enteringState.path);
this._hasInit = true;
} }
return this._lastPath;
} }
match(path) { match(path) {
@ -195,18 +148,20 @@ export class IonicRouter {
} }
} }
getCurrentPath() { static registerStateManager(name, StateManagerClass) {
let hash = this.location.hash; stateManagerClasses[name] = StateManagerClass;
// Grab the path without the leading hash
return hash.slice(1);
} }
isNewPath(path) { static deregisterStateManager(name) {
return (this.location.hash !== ('#' + path)); delete stateManagerClasses[name];
delete stateManagers[name];
} }
} }
let stateManagerClasses = {};
let stateManagers = {};
export class Routable { export class Routable {
constructor(cls, routeConfig) { constructor(cls, routeConfig) {