2016-05-24 16:57:51 -04:00
|
|
|
import { Tree, TreeNode } from './utils/tree';
|
2016-05-23 19:14:23 -04:00
|
|
|
import { UrlSegment } from './url_tree';
|
2016-06-01 16:29:02 -04:00
|
|
|
import { Route } from './config';
|
2016-05-26 19:51:44 -04:00
|
|
|
import { Params, PRIMARY_OUTLET } from './shared';
|
2016-05-23 19:14:23 -04:00
|
|
|
import { Observable } from 'rxjs/Observable';
|
|
|
|
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
|
2016-06-01 16:29:02 -04:00
|
|
|
import { Type, ComponentFactory } from '@angular/core';
|
2016-05-23 19:14:23 -04:00
|
|
|
|
2016-05-24 16:41:37 -04:00
|
|
|
/**
|
|
|
|
* The state of the router at a particular moment in time.
|
|
|
|
*
|
|
|
|
* ### 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-05-23 19:14:23 -04:00
|
|
|
export class RouterState extends Tree<ActivatedRoute> {
|
2016-06-01 17:32:15 -04:00
|
|
|
constructor(root: TreeNode<ActivatedRoute>, public queryParams: Observable<Params>, public fragment: Observable<string>, public candidate: RouterStateCandidate) {
|
2016-05-23 19:14:23 -04:00
|
|
|
super(root);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createEmptyState(rootComponent: Type): RouterState {
|
2016-06-01 17:32:15 -04:00
|
|
|
const candidate = createEmptyStateCandidate(rootComponent);
|
2016-05-26 19:51:44 -04:00
|
|
|
const emptyUrl = new BehaviorSubject([new UrlSegment("", {}, PRIMARY_OUTLET)]);
|
2016-05-23 19:14:23 -04:00
|
|
|
const emptyParams = new BehaviorSubject({});
|
|
|
|
const emptyQueryParams = new BehaviorSubject({});
|
|
|
|
const fragment = new BehaviorSubject("");
|
2016-06-01 17:32:15 -04:00
|
|
|
const activated = new ActivatedRoute(emptyUrl, emptyParams, PRIMARY_OUTLET, rootComponent, candidate.root);
|
|
|
|
return new RouterState(new TreeNode<ActivatedRoute>(activated, []), emptyQueryParams, fragment, candidate);
|
2016-05-23 19:14:23 -04:00
|
|
|
}
|
|
|
|
|
2016-06-01 17:32:15 -04:00
|
|
|
function createEmptyStateCandidate(rootComponent: Type): RouterStateCandidate {
|
2016-06-01 16:29:02 -04:00
|
|
|
const emptyUrl = [new UrlSegment("", {}, PRIMARY_OUTLET)];
|
|
|
|
const emptyParams = {};
|
|
|
|
const emptyQueryParams = {};
|
|
|
|
const fragment = "";
|
|
|
|
const activated = new ActivatedRouteCandidate(emptyUrl, emptyParams, PRIMARY_OUTLET, rootComponent, null);
|
|
|
|
return new RouterStateCandidate(new TreeNode<ActivatedRouteCandidate>(activated, []), emptyQueryParams, fragment);
|
|
|
|
}
|
|
|
|
|
2016-05-24 16:41:37 -04:00
|
|
|
/**
|
|
|
|
* Contains the information about a component loaded in an outlet.
|
|
|
|
*
|
|
|
|
* ### Usage
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* class MyComponent {
|
|
|
|
* constructor(route: ActivatedRoute) {
|
|
|
|
* const id: Observable<string> = route.params.map(p => p.id);
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2016-05-23 19:14:23 -04:00
|
|
|
export class ActivatedRoute {
|
|
|
|
constructor(public urlSegments: Observable<UrlSegment[]>,
|
|
|
|
public params: Observable<Params>,
|
|
|
|
public outlet: string,
|
2016-06-01 17:32:15 -04:00
|
|
|
public component: Type | string,
|
|
|
|
public candidate: ActivatedRouteCandidate
|
|
|
|
) {}
|
2016-06-01 16:29:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export class ActivatedRouteCandidate {
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
_resolvedComponentFactory: ComponentFactory<any>;
|
|
|
|
|
|
|
|
/** @internal **/
|
|
|
|
_routeConfig: Route;
|
|
|
|
|
|
|
|
constructor(public urlSegments: UrlSegment[],
|
|
|
|
public params: Params,
|
|
|
|
public outlet: string,
|
|
|
|
public component: Type | string,
|
|
|
|
routeConfig: Route) {
|
|
|
|
this._routeConfig = routeConfig;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class RouterStateCandidate extends Tree<ActivatedRouteCandidate> {
|
|
|
|
constructor(root: TreeNode<ActivatedRouteCandidate>, public queryParams: Params, public fragment: string) {
|
|
|
|
super(root);
|
|
|
|
}
|
2016-05-23 19:14:23 -04:00
|
|
|
}
|