2015-08-20 14:28:25 -07:00
|
|
|
import {DOM} from 'angular2/src/core/dom/dom_adapter';
|
2015-09-03 22:01:36 -07:00
|
|
|
import {Injectable} from 'angular2/src/core/di';
|
2015-06-15 14:34:14 -07:00
|
|
|
import {LocationStrategy} from './location_strategy';
|
2015-08-20 14:28:25 -07:00
|
|
|
import {EventListener, History, Location} from 'angular2/src/core/facade/browser';
|
2015-06-15 14:34:14 -07:00
|
|
|
|
2015-09-21 17:31:31 -07:00
|
|
|
/**
|
|
|
|
* `HashLocationStrategy` is a {@link LocationStrategy} used to configure the
|
|
|
|
* {@link Location} service to represent its state in the
|
|
|
|
* [hash fragment](https://en.wikipedia.org/wiki/Uniform_Resource_Locator#Syntax)
|
|
|
|
* of the browser's URL.
|
|
|
|
*
|
|
|
|
* For instance, if you call `location.go('/foo')`, the browser's URL will become
|
|
|
|
* `example.com#/foo`.
|
|
|
|
*
|
|
|
|
* ## Example
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* import {Component, View} from 'angular2/angular2';
|
|
|
|
* import {
|
|
|
|
* ROUTER_DIRECTIVES,
|
2015-10-10 22:11:13 -07:00
|
|
|
* ROUTER_PROVIDERS,
|
2015-09-21 17:31:31 -07:00
|
|
|
* RouteConfig,
|
|
|
|
* Location
|
|
|
|
* } from 'angular2/router';
|
|
|
|
*
|
|
|
|
* @Component({...})
|
|
|
|
* @View({directives: [ROUTER_DIRECTIVES]})
|
|
|
|
* @RouteConfig([
|
|
|
|
* {...},
|
|
|
|
* ])
|
|
|
|
* class AppCmp {
|
|
|
|
* constructor(location: Location) {
|
|
|
|
* location.go('/foo');
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
*
|
2015-10-10 22:11:13 -07:00
|
|
|
* bootstrap(AppCmp, [ROUTER_PROVIDERS]);
|
2015-09-21 17:31:31 -07:00
|
|
|
* ```
|
|
|
|
*/
|
2015-06-15 14:34:14 -07:00
|
|
|
@Injectable()
|
|
|
|
export class HashLocationStrategy extends LocationStrategy {
|
|
|
|
private _location: Location;
|
|
|
|
private _history: History;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this._location = DOM.getLocation();
|
|
|
|
this._history = DOM.getHistory();
|
|
|
|
}
|
|
|
|
|
|
|
|
onPopState(fn: EventListener): void {
|
|
|
|
DOM.getGlobalEventTarget('window').addEventListener('popstate', fn, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
getBaseHref(): string { return ''; }
|
|
|
|
|
2015-07-08 15:08:17 -07:00
|
|
|
path(): string {
|
|
|
|
// the hash value is always prefixed with a `#`
|
|
|
|
// and if it is empty then it will stay empty
|
2015-07-09 11:05:07 -07:00
|
|
|
var path = this._location.hash;
|
|
|
|
|
|
|
|
// Dart will complain if a call to substring is
|
|
|
|
// executed with a position value that extends the
|
|
|
|
// length of string.
|
|
|
|
return path.length > 0 ? path.substring(1) : path;
|
2015-07-08 15:08:17 -07:00
|
|
|
}
|
2015-06-15 14:34:14 -07:00
|
|
|
|
|
|
|
pushState(state: any, title: string, url: string) {
|
|
|
|
this._history.pushState(state, title, '#' + url);
|
|
|
|
}
|
|
|
|
|
|
|
|
forward(): void { this._history.forward(); }
|
|
|
|
|
|
|
|
back(): void { this._history.back(); }
|
|
|
|
}
|