angular-cn/modules/@angular/router/src/router_state.ts

304 lines
8.9 KiB
TypeScript
Raw Normal View History

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
2016-06-08 14:13:41 -04:00
import {ComponentFactory, Type} from '@angular/core';
import {BehaviorSubject} from 'rxjs/BehaviorSubject';
import {Observable} from 'rxjs/Observable';
import {Data, ResolveData, Route} from './config';
2016-06-08 14:13:41 -04:00
import {PRIMARY_OUTLET, Params} from './shared';
import {UrlSegment, UrlSegmentGroup, UrlTree} from './url_tree';
import {merge, shallowEqual, shallowEqualArrays} from './utils/collection';
2016-06-08 14:13:41 -04:00
import {Tree, TreeNode} from './utils/tree';
2016-05-23 19:14:23 -04:00
2016-05-24 16:41:37 -04:00
/**
* The state of the router.
2016-05-24 16:41:37 -04:00
*
* ### Usage
*
* ```
* class MyComponent {
* constructor(router: Router) {
* const state = router.routerState;
* const id: Observable<string> = state.firstChild(state.root).params.map(p => p.id);
* const isDebug: Observable<string> = state.queryParams.map(q => q.debug);
* }
* }
* ```
*
2016-06-28 17:49:29 -04:00
* @stable
2016-05-24 16:41:37 -04:00
*/
2016-05-23 19:14:23 -04:00
export class RouterState extends Tree<ActivatedRoute> {
/**
* @internal
*/
constructor(root: TreeNode<ActivatedRoute>, public snapshot: RouterStateSnapshot) {
2016-05-23 19:14:23 -04:00
super(root);
setRouterStateSnapshot<RouterState, ActivatedRoute>(this, root);
2016-05-23 19:14:23 -04:00
}
/**
* @deprecated (Use root.queryParams)
*/
get queryParams(): Observable<Params> { return this.root.queryParams; }
/**
* @deprecated (Use root.fragment)
*/
get fragment(): Observable<string> { return this.root.fragment; }
2016-06-09 17:33:09 -04:00
toString(): string { return this.snapshot.toString(); }
2016-05-23 19:14:23 -04:00
}
2016-06-14 17:55:59 -04:00
export function createEmptyState(urlTree: UrlTree, rootComponent: Type): RouterState {
const snapshot = createEmptyStateSnapshot(urlTree, rootComponent);
const emptyUrl = new BehaviorSubject([new UrlSegment('', {})]);
2016-05-23 19:14:23 -04:00
const emptyParams = new BehaviorSubject({});
const emptyData = new BehaviorSubject({});
2016-05-23 19:14:23 -04:00
const emptyQueryParams = new BehaviorSubject({});
2016-06-08 14:13:41 -04:00
const fragment = new BehaviorSubject('');
const activated = new ActivatedRoute(
emptyUrl, emptyParams, emptyQueryParams, fragment, emptyData, PRIMARY_OUTLET, rootComponent,
snapshot.root);
2016-06-02 17:44:57 -04:00
activated.snapshot = snapshot.root;
return new RouterState(new TreeNode<ActivatedRoute>(activated, []), snapshot);
2016-05-23 19:14:23 -04:00
}
2016-06-14 17:55:59 -04:00
function createEmptyStateSnapshot(urlTree: UrlTree, rootComponent: Type): RouterStateSnapshot {
2016-06-01 16:29:02 -04:00
const emptyParams = {};
const emptyData = {};
2016-06-01 16:29:02 -04:00
const emptyQueryParams = {};
2016-06-08 14:13:41 -04:00
const fragment = '';
const activated = new ActivatedRouteSnapshot(
[], emptyParams, emptyQueryParams, fragment, emptyData, PRIMARY_OUTLET, rootComponent, null,
urlTree.root, -1, InheritedResolve.empty);
return new RouterStateSnapshot('', new TreeNode<ActivatedRouteSnapshot>(activated, []));
2016-06-01 16:29:02 -04:00
}
2016-05-24 16:41:37 -04:00
/**
2016-06-08 14:13:41 -04:00
* Contains the information about a component loaded in an outlet. The information is provided
2016-06-28 17:49:29 -04:00
* through the params, urlSegments, and data observables.
2016-05-24 16:41:37 -04:00
*
* ### Usage
*
* ```
* class MyComponent {
* constructor(route: ActivatedRoute) {
* const id: Observable<string> = route.params.map(p => p.id);
2016-06-28 17:49:29 -04:00
* const data = route.data.map(d => d.user); //includes `data` and `resolve`
2016-05-24 16:41:37 -04:00
* }
* }
* ```
*
2016-06-28 17:49:29 -04:00
* @stable
2016-05-24 16:41:37 -04:00
*/
2016-05-23 19:14:23 -04:00
export class ActivatedRoute {
2016-06-02 17:44:57 -04:00
/** @internal */
_futureSnapshot: ActivatedRouteSnapshot;
snapshot: ActivatedRouteSnapshot;
/** @internal */
_routerState: RouterState;
/**
* @internal
*/
2016-06-08 14:13:41 -04:00
constructor(
public url: Observable<UrlSegment[]>, public params: Observable<Params>,
public queryParams: Observable<Params>, public fragment: Observable<string>,
public data: Observable<Data>, public outlet: string, public component: Type|string,
2016-06-08 14:13:41 -04:00
futureSnapshot: ActivatedRouteSnapshot) {
2016-06-02 17:44:57 -04:00
this._futureSnapshot = futureSnapshot;
}
get routeConfig(): Route { return this._futureSnapshot.routeConfig; }
get root(): ActivatedRoute { return this._routerState.root; }
get parent(): ActivatedRoute { return this._routerState.parent(this); }
get firstChild(): ActivatedRoute { return this._routerState.firstChild(this); }
get children(): ActivatedRoute[] { return this._routerState.children(this); }
get pathFromRoot(): ActivatedRoute[] { return this._routerState.pathFromRoot(this); }
toString(): string {
return this.snapshot ? this.snapshot.toString() : `Future(${this._futureSnapshot})`;
}
2016-06-01 16:29:02 -04:00
}
2016-06-28 17:49:29 -04:00
/**
* @internal
*/
export class InheritedResolve {
/**
* @internal
*/
resolvedData = {};
constructor(public parent: InheritedResolve, public current: ResolveData) {}
/**
* @internal
*/
get flattenedResolvedData(): Data {
return this.parent ? merge(this.parent.flattenedResolvedData, this.resolvedData) :
this.resolvedData;
}
static get empty(): InheritedResolve { return new InheritedResolve(null, {}); }
}
/**
* Contains the information about a component loaded in an outlet at a particular moment in time.
*
* ### Usage
*
* ```
* class MyComponent {
* constructor(route: ActivatedRoute) {
* const id: string = route.snapshot.params.id;
2016-06-28 17:49:29 -04:00
* const data = route.snapshot.data;
* }
* }
* ```
*
2016-06-28 17:49:29 -04:00
* @stable
*/
export class ActivatedRouteSnapshot {
2016-06-01 16:29:02 -04:00
/**
* @internal
*/
_resolvedComponentFactory: ComponentFactory<any>;
2016-06-08 14:13:41 -04:00
2016-06-01 16:29:02 -04:00
/** @internal **/
_routeConfig: Route;
2016-06-01 16:29:02 -04:00
2016-06-02 14:30:38 -04:00
/** @internal **/
_urlSegment: UrlSegmentGroup;
2016-06-14 17:55:59 -04:00
/** @internal */
2016-06-14 17:55:59 -04:00
_lastPathIndex: number;
2016-06-02 14:30:38 -04:00
/** @internal */
_resolve: InheritedResolve;
/** @internal */
_routerState: RouterStateSnapshot;
/**
* @internal
*/
2016-06-08 14:13:41 -04:00
constructor(
public url: UrlSegment[], public params: Params, public queryParams: Params,
public fragment: string, public data: Data, public outlet: string,
public component: Type|string, routeConfig: Route, urlSegment: UrlSegmentGroup,
lastPathIndex: number, resolve: InheritedResolve) {
2016-06-01 16:29:02 -04:00
this._routeConfig = routeConfig;
2016-06-14 17:55:59 -04:00
this._urlSegment = urlSegment;
this._lastPathIndex = lastPathIndex;
this._resolve = resolve;
2016-06-01 16:29:02 -04:00
}
get routeConfig(): Route { return this._routeConfig; }
get root(): ActivatedRouteSnapshot { return this._routerState.root; }
get parent(): ActivatedRouteSnapshot { return this._routerState.parent(this); }
get firstChild(): ActivatedRouteSnapshot { return this._routerState.firstChild(this); }
get children(): ActivatedRouteSnapshot[] { return this._routerState.children(this); }
get pathFromRoot(): ActivatedRouteSnapshot[] { return this._routerState.pathFromRoot(this); }
toString(): string {
2016-06-14 17:55:59 -04:00
const url = this.url.map(s => s.toString()).join('/');
const matched = this._routeConfig ? this._routeConfig.path : '';
return `Route(url:'${url}', path:'${matched}')`;
}
2016-06-01 16:29:02 -04:00
}
/**
* The state of the router at a particular moment in time.
*
* ### Usage
*
* ```
* class MyComponent {
* constructor(router: Router) {
* const snapshot = router.routerState.snapshot;
* }
* }
* ```
*
2016-06-28 17:49:29 -04:00
* @stable
*/
export class RouterStateSnapshot extends Tree<ActivatedRouteSnapshot> {
/**
* @internal
*/
constructor(public url: string, root: TreeNode<ActivatedRouteSnapshot>) {
2016-06-01 16:29:02 -04:00
super(root);
setRouterStateSnapshot<RouterStateSnapshot, ActivatedRouteSnapshot>(this, root);
2016-06-01 16:29:02 -04:00
}
/**
* @deprecated (Use root.queryParams)
*/
get queryParams(): Params { return this.root.queryParams; }
/**
* @deprecated (Use root.fragment)
*/
get fragment(): string { return this.root.fragment; }
2016-06-09 17:33:09 -04:00
toString(): string { return serializeNode(this._root); }
2016-06-02 17:44:57 -04:00
}
function setRouterStateSnapshot<U, T extends{_routerState: U}>(state: U, node: TreeNode<T>): void {
node.value._routerState = state;
node.children.forEach(c => setRouterStateSnapshot(state, c));
}
function serializeNode(node: TreeNode<ActivatedRouteSnapshot>): string {
const c = node.children.length > 0 ? ` { ${node.children.map(serializeNode).join(", ")} } ` : '';
return `${node.value}${c}`;
}
2016-06-02 17:44:57 -04:00
/**
* The expectation is that the activate route is created with the right set of parameters.
* So we push new values into the observables only when they are not the initial values.
* And we detect that by checking if the snapshot field is set.
*/
export function advanceActivatedRoute(route: ActivatedRoute): void {
if (route.snapshot) {
if (!shallowEqual(route.snapshot.queryParams, route._futureSnapshot.queryParams)) {
(<any>route.queryParams).next(route._futureSnapshot.queryParams);
}
if (route.snapshot.fragment !== route._futureSnapshot.fragment) {
(<any>route.fragment).next(route._futureSnapshot.fragment);
}
if (!shallowEqual(route.snapshot.params, route._futureSnapshot.params)) {
(<any>route.params).next(route._futureSnapshot.params);
(<any>route.data).next(route._futureSnapshot.data);
}
if (!shallowEqualArrays(route.snapshot.url, route._futureSnapshot.url)) {
(<any>route.url).next(route._futureSnapshot.url);
}
2016-06-02 17:44:57 -04:00
route.snapshot = route._futureSnapshot;
} else {
route.snapshot = route._futureSnapshot;
// this is for resolved data
(<any>route.data).next(route._futureSnapshot.data);
2016-06-02 17:44:57 -04:00
}
}