2015-08-20 14:28:25 -07:00
|
|
|
import {EventEmitter, ObservableWrapper} from 'angular2/src/core/facade/async';
|
2015-06-22 12:14:19 -07:00
|
|
|
import {LocationStrategy} from 'angular2/src/router/location_strategy';
|
2015-06-15 15:41:09 -07:00
|
|
|
|
2015-06-22 12:14:19 -07:00
|
|
|
|
|
|
|
export class MockLocationStrategy extends LocationStrategy {
|
2015-06-15 15:41:09 -07:00
|
|
|
internalBaseHref: string = '/';
|
|
|
|
internalPath: string = '/';
|
|
|
|
internalTitle: string = '';
|
2015-08-28 11:29:19 -07:00
|
|
|
urlChanges: string[] = [];
|
2015-06-15 15:41:09 -07:00
|
|
|
_subject: EventEmitter = new EventEmitter();
|
|
|
|
constructor() { super(); }
|
|
|
|
|
2015-07-07 20:03:00 -07:00
|
|
|
simulatePopState(url: string): void {
|
2015-06-15 15:41:09 -07:00
|
|
|
this.internalPath = url;
|
|
|
|
ObservableWrapper.callNext(this._subject, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
path(): string { return this.internalPath; }
|
|
|
|
|
|
|
|
simulateUrlPop(pathname: string): void {
|
|
|
|
ObservableWrapper.callNext(this._subject, {'url': pathname});
|
|
|
|
}
|
|
|
|
|
|
|
|
pushState(ctx: any, title: string, url: string): void {
|
|
|
|
this.internalTitle = title;
|
|
|
|
this.internalPath = url;
|
2015-06-17 11:17:21 -07:00
|
|
|
this.urlChanges.push(url);
|
2015-06-15 15:41:09 -07:00
|
|
|
}
|
|
|
|
|
2015-07-07 20:03:00 -07:00
|
|
|
onPopState(fn: (value: any) => void): void { ObservableWrapper.subscribe(this._subject, fn); }
|
2015-06-15 15:41:09 -07:00
|
|
|
|
|
|
|
getBaseHref(): string { return this.internalBaseHref; }
|
2015-07-28 23:19:56 -04:00
|
|
|
|
|
|
|
back(): void {
|
|
|
|
if (this.urlChanges.length > 0) {
|
|
|
|
this.urlChanges.pop();
|
|
|
|
var nextUrl = this.urlChanges.length > 0 ? this.urlChanges[this.urlChanges.length - 1] : '';
|
|
|
|
this.simulatePopState(nextUrl);
|
|
|
|
}
|
|
|
|
}
|
2015-09-25 14:48:17 -07:00
|
|
|
|
|
|
|
forward(): void { throw 'not implemented'; }
|
2015-06-15 15:41:09 -07:00
|
|
|
}
|