feat(router): changes router config not to use names
This commit is contained in:
parent
2e1bd46bb1
commit
86f47273bc
|
@ -3,7 +3,6 @@ import { Type } from '@angular/core';
|
||||||
export type RouterConfig = Route[];
|
export type RouterConfig = Route[];
|
||||||
|
|
||||||
export interface Route {
|
export interface Route {
|
||||||
name: string;
|
|
||||||
index?: boolean;
|
index?: boolean;
|
||||||
path?: string;
|
path?: string;
|
||||||
component: Type | string;
|
component: Type | string;
|
||||||
|
|
|
@ -1,46 +1,48 @@
|
||||||
import { UrlTree, UrlSegment, equalUrlSegments } from './url_tree';
|
import { UrlTree, UrlSegment } from './url_tree';
|
||||||
import { shallowEqual, flatten, first, merge } from './utils/collection';
|
import { flatten, first, merge } from './utils/collection';
|
||||||
import { TreeNode, rootNode } from './utils/tree';
|
import { TreeNode, rootNode } from './utils/tree';
|
||||||
import { RouterState, ActivatedRoute, Params, PRIMARY_OUTLET } from './router_state';
|
import { RouterState, ActivatedRoute } from './router_state';
|
||||||
|
import { Params, PRIMARY_OUTLET } from './shared';
|
||||||
import { RouterConfig, Route } from './config';
|
import { RouterConfig, Route } from './config';
|
||||||
import { ComponentResolver, ComponentFactory, Type } from '@angular/core';
|
import { Type } from '@angular/core';
|
||||||
|
import { Observable } from 'rxjs/Observable';
|
||||||
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
|
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
|
||||||
|
|
||||||
export function recognize(componentResolver: ComponentResolver, config: RouterConfig,
|
export function recognize(config: RouterConfig, url: UrlTree, existingState: RouterState): Observable<RouterState> {
|
||||||
url: UrlTree, existingState: RouterState): Promise<RouterState> {
|
try {
|
||||||
const match = new MatchResult(existingState.root.component, config, [url.root], {}, rootNode(url).children, [], PRIMARY_OUTLET);
|
const match = new MatchResult(existingState.root.component, config, [url.root], {}, rootNode(url).children, [], PRIMARY_OUTLET);
|
||||||
return constructActivatedRoute(componentResolver, match, rootNode(existingState)).
|
(<any>existingState.queryParams).next(url.queryParameters);
|
||||||
then(roots => {
|
(<any>existingState.fragment).next(url.fragment);
|
||||||
(<any>existingState.queryParams).next(url.queryParameters);
|
const roots = constructActivatedRoute(match, rootNode(existingState));
|
||||||
(<any>existingState.fragment).next(url.fragment);
|
const res = new RouterState(roots[0], existingState.queryParams, existingState.fragment);
|
||||||
return new RouterState(roots[0], existingState.queryParams, existingState.fragment);
|
return new Observable<RouterState>(obs => {
|
||||||
|
obs.next(res);
|
||||||
|
obs.complete();
|
||||||
});
|
});
|
||||||
|
} catch(e) {
|
||||||
|
return new Observable<RouterState>(obs => obs.error(e));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function constructActivatedRoute(componentResolver: ComponentResolver, match: MatchResult,
|
function constructActivatedRoute(match: MatchResult, existingRoute: TreeNode<ActivatedRoute> | null): TreeNode<ActivatedRoute>[] {
|
||||||
existingRoute: TreeNode<ActivatedRoute> | null): Promise<TreeNode<ActivatedRoute>[]> {
|
const activatedRoute = createOrReuseRoute(match, existingRoute);
|
||||||
//TODO: remove the cast after Angular is fixed
|
const existingChildren = existingRoute ? existingRoute.children : [];
|
||||||
return componentResolver.resolveComponent(<any>match.component).then(factory => {
|
|
||||||
const activatedRoute = createOrReuseRoute(match, factory, existingRoute);
|
|
||||||
const existingChildren = existingRoute ? existingRoute.children : [];
|
|
||||||
|
|
||||||
if (match.leftOverUrl.length > 0) {
|
if (match.leftOverUrl.length > 0) {
|
||||||
return recognizeMany(componentResolver, match.children, match.leftOverUrl, existingChildren)
|
const children = recognizeMany(match.children, match.leftOverUrl, existingChildren);
|
||||||
.then(checkOutletNameUniqueness)
|
checkOutletNameUniqueness(children);
|
||||||
.then(children => [new TreeNode<ActivatedRoute>(activatedRoute, children)]);
|
return [new TreeNode<ActivatedRoute>(activatedRoute, children)];
|
||||||
} else {
|
} else {
|
||||||
return Promise.resolve([new TreeNode<ActivatedRoute>(activatedRoute, [])]);
|
return [new TreeNode<ActivatedRoute>(activatedRoute, [])];
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function recognizeMany(componentResolver: ComponentResolver, config: Route[], urls: TreeNode<UrlSegment>[],
|
function recognizeMany(config: Route[], urls: TreeNode<UrlSegment>[],
|
||||||
existingRoutes: TreeNode<ActivatedRoute>[]): Promise<TreeNode<ActivatedRoute>[]> {
|
existingRoutes: TreeNode<ActivatedRoute>[]): TreeNode<ActivatedRoute>[] {
|
||||||
const recognized = urls.map(url => recognizeOne(componentResolver, config, url, existingRoutes));
|
return flatten(urls.map(url => recognizeOne(config, url, existingRoutes)));
|
||||||
return Promise.all(<any>recognized).then(<any>flatten);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function createOrReuseRoute(match: MatchResult, factory: ComponentFactory<any>, existing: TreeNode<ActivatedRoute> | null): ActivatedRoute {
|
function createOrReuseRoute(match: MatchResult, existing: TreeNode<ActivatedRoute> | null): ActivatedRoute {
|
||||||
if (existing) {
|
if (existing) {
|
||||||
const v = existing.value;
|
const v = existing.value;
|
||||||
if (v.component === match.component && v.outlet === match.outlet) {
|
if (v.component === match.component && v.outlet === match.outlet) {
|
||||||
|
@ -49,26 +51,21 @@ function createOrReuseRoute(match: MatchResult, factory: ComponentFactory<any>,
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return new ActivatedRoute(new BehaviorSubject(match.consumedUrlSegments), new BehaviorSubject(match.parameters), match.outlet,
|
return new ActivatedRoute(new BehaviorSubject(match.consumedUrlSegments), new BehaviorSubject(match.parameters), match.outlet, match.component);
|
||||||
factory.componentType, factory);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function recognizeOne(componentResolver: ComponentResolver, config: Route[],
|
function recognizeOne(config: Route[], url: TreeNode<UrlSegment>,
|
||||||
url: TreeNode<UrlSegment>,
|
existingRoutes: TreeNode<ActivatedRoute>[]): TreeNode<ActivatedRoute>[] {
|
||||||
existingRoutes: TreeNode<ActivatedRoute>[]): Promise<TreeNode<ActivatedRoute>[]> {
|
let m = match(config, url);
|
||||||
let m;
|
|
||||||
try {
|
|
||||||
m = match(config, url);
|
|
||||||
} catch (e) {
|
|
||||||
return <any>Promise.reject(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
const routesWithRightOutlet = existingRoutes.filter(r => r.value.outlet == m.outlet);
|
const routesWithRightOutlet = existingRoutes.filter(r => r.value.outlet == m.outlet);
|
||||||
const routeWithRightOutlet = routesWithRightOutlet.length > 0 ? routesWithRightOutlet[0] : null;
|
const routeWithRightOutlet = routesWithRightOutlet.length > 0 ? routesWithRightOutlet[0] : null;
|
||||||
|
|
||||||
const primary = constructActivatedRoute(componentResolver, m, routeWithRightOutlet);
|
const primary = constructActivatedRoute(m, routeWithRightOutlet);
|
||||||
const secondary = recognizeMany(componentResolver, config, m.secondary, existingRoutes);
|
const secondary = recognizeMany(config, m.secondary, existingRoutes);
|
||||||
return Promise.all([primary, secondary]).then(flatten).then(checkOutletNameUniqueness);
|
const res = primary.concat(secondary);
|
||||||
|
checkOutletNameUniqueness(res);
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkOutletNameUniqueness(nodes: TreeNode<ActivatedRoute>[]): TreeNode<ActivatedRoute>[] {
|
function checkOutletNameUniqueness(nodes: TreeNode<ActivatedRoute>[]): TreeNode<ActivatedRoute>[] {
|
||||||
|
@ -92,7 +89,10 @@ function match(config: Route[], url: TreeNode<UrlSegment>): MatchResult {
|
||||||
const mIndex = matchIndex(config, url);
|
const mIndex = matchIndex(config, url);
|
||||||
if (mIndex) return mIndex;
|
if (mIndex) return mIndex;
|
||||||
|
|
||||||
const availableRoutes = config.map(r => `'${r.path}'`).join(", ");
|
const availableRoutes = config.map(r => {
|
||||||
|
const outlet = !r.outlet ? '' : `${r.outlet}:`;
|
||||||
|
return `'${outlet}${r.path}'`;
|
||||||
|
}).join(", ");
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Cannot match any routes. Current segment: '${url.value}'. Available routes: [${availableRoutes}].`);
|
`Cannot match any routes. Current segment: '${url.value}'. Available routes: [${availableRoutes}].`);
|
||||||
}
|
}
|
||||||
|
@ -118,6 +118,7 @@ function matchIndex(config: Route[], url: TreeNode<UrlSegment>): MatchResult | n
|
||||||
|
|
||||||
function matchWithParts(route: Route, url: TreeNode<UrlSegment>): MatchResult | null {
|
function matchWithParts(route: Route, url: TreeNode<UrlSegment>): MatchResult | null {
|
||||||
if (!route.path) return null;
|
if (!route.path) return null;
|
||||||
|
if ((route.outlet ? route.outlet : PRIMARY_OUTLET) !== url.value.outlet) return null;
|
||||||
|
|
||||||
const path = route.path.startsWith("/") ? route.path.substring(1) : route.path;
|
const path = route.path.startsWith("/") ? route.path.substring(1) : route.path;
|
||||||
if (path === "**") {
|
if (path === "**") {
|
||||||
|
|
|
@ -1,19 +1,9 @@
|
||||||
import { Tree, TreeNode } from './utils/tree';
|
import { Tree, TreeNode } from './utils/tree';
|
||||||
import { UrlSegment } from './url_tree';
|
import { UrlSegment } from './url_tree';
|
||||||
|
import { Params, PRIMARY_OUTLET } from './shared';
|
||||||
import { Observable } from 'rxjs/Observable';
|
import { Observable } from 'rxjs/Observable';
|
||||||
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
|
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
|
||||||
import { ComponentFactory, Type } from '@angular/core';
|
import { Type } from '@angular/core';
|
||||||
|
|
||||||
/**
|
|
||||||
* A collection of parameters.
|
|
||||||
*/
|
|
||||||
export type Params = { [key: string]: string };
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Name of the primary outlet.
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
export const PRIMARY_OUTLET: string = "PRIMARY_OUTLET";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The state of the router at a particular moment in time.
|
* The state of the router at a particular moment in time.
|
||||||
|
@ -37,11 +27,11 @@ export class RouterState extends Tree<ActivatedRoute> {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createEmptyState(rootComponent: Type): RouterState {
|
export function createEmptyState(rootComponent: Type): RouterState {
|
||||||
const emptyUrl = new BehaviorSubject([new UrlSegment("", {})]);
|
const emptyUrl = new BehaviorSubject([new UrlSegment("", {}, PRIMARY_OUTLET)]);
|
||||||
const emptyParams = new BehaviorSubject({});
|
const emptyParams = new BehaviorSubject({});
|
||||||
const emptyQueryParams = new BehaviorSubject({});
|
const emptyQueryParams = new BehaviorSubject({});
|
||||||
const fragment = new BehaviorSubject("");
|
const fragment = new BehaviorSubject("");
|
||||||
const activated = new ActivatedRoute(emptyUrl, emptyParams, PRIMARY_OUTLET, rootComponent, <any>null);
|
const activated = new ActivatedRoute(emptyUrl, emptyParams, PRIMARY_OUTLET, rootComponent);
|
||||||
return new RouterState(new TreeNode<ActivatedRoute>(activated, []), emptyQueryParams, fragment);
|
return new RouterState(new TreeNode<ActivatedRoute>(activated, []), emptyQueryParams, fragment);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,6 +52,5 @@ export class ActivatedRoute {
|
||||||
constructor(public urlSegments: Observable<UrlSegment[]>,
|
constructor(public urlSegments: Observable<UrlSegment[]>,
|
||||||
public params: Observable<Params>,
|
public params: Observable<Params>,
|
||||||
public outlet: string,
|
public outlet: string,
|
||||||
public component: Type,
|
public component: Type | string) {}
|
||||||
public factory: ComponentFactory<any>) {}
|
|
||||||
}
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
/**
|
||||||
|
* Name of the primary outlet.
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
|
export const PRIMARY_OUTLET: string = "PRIMARY_OUTLET";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A collection of parameters.
|
||||||
|
*/
|
||||||
|
export type Params = { [key: string]: string };
|
|
@ -1,228 +1,216 @@
|
||||||
import {DefaultUrlSerializer} from '../src/url_serializer';
|
import {DefaultUrlSerializer} from '../src/url_serializer';
|
||||||
import {UrlTree} from '../src/url_tree';
|
import {UrlTree} from '../src/url_tree';
|
||||||
import {createEmptyState, Params, ActivatedRoute, PRIMARY_OUTLET} from '../src/router_state';
|
import {Params, PRIMARY_OUTLET} from '../src/shared';
|
||||||
|
import {createEmptyState, ActivatedRoute} from '../src/router_state';
|
||||||
import {recognize} from '../src/recognize';
|
import {recognize} from '../src/recognize';
|
||||||
|
|
||||||
describe('recognize', () => {
|
describe('recognize', () => {
|
||||||
const empty = () => createEmptyState(RootComponent);
|
const empty = () => createEmptyState(RootComponent);
|
||||||
const fakeComponentResolver = {
|
|
||||||
resolveComponent(componentType:any):Promise<any> { return Promise.resolve({componentType}); },
|
|
||||||
clearCache() {}
|
|
||||||
};
|
|
||||||
|
|
||||||
it('should work', (done) => {
|
it('should work', (done) => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{
|
{
|
||||||
name: 'a',
|
|
||||||
path: 'a', component: ComponentA
|
path: 'a', component: ComponentA
|
||||||
}
|
}
|
||||||
], tree("a"), empty()).then(s => {
|
], tree("a"), empty()).forEach(s => {
|
||||||
checkActivatedRoute(s.root, "", {}, RootComponent);
|
checkActivatedRoute(s.root, "", {}, RootComponent);
|
||||||
checkActivatedRoute(s.firstChild(s.root), "a", {}, ComponentA);
|
checkActivatedRoute(s.firstChild(s.root), "a", {}, ComponentA);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should handle position args', (done) => {
|
it('should handle position args', () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{
|
{
|
||||||
name: 'a',
|
|
||||||
path: 'a/:id', component: ComponentA, children: [
|
path: 'a/:id', component: ComponentA, children: [
|
||||||
{ name: 'b', path: 'b/:id', component: ComponentB}
|
{ path: 'b/:id', component: ComponentB}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], tree("a/paramA/b/paramB"), empty()).then(s => {
|
], tree("a/paramA/b/paramB"), empty()).forEach(s => {
|
||||||
checkActivatedRoute(s.root, "", {}, RootComponent);
|
checkActivatedRoute(s.root, "", {}, RootComponent);
|
||||||
checkActivatedRoute(s.firstChild(s.root), "a/paramA", {id: 'paramA'}, ComponentA);
|
checkActivatedRoute(s.firstChild(s.root), "a/paramA", {id: 'paramA'}, ComponentA);
|
||||||
checkActivatedRoute(s.firstChild(<any>s.firstChild(s.root)), "b/paramB", {id: 'paramB'}, ComponentB);
|
checkActivatedRoute(s.firstChild(<any>s.firstChild(s.root)), "b/paramB", {id: 'paramB'}, ComponentB);
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should reuse activated routes', (done) => {
|
it('should reuse activated routes', () => {
|
||||||
const config = [{name: 'a', path: 'a/:id', component: ComponentA}];
|
const config = [{path: 'a/:id', component: ComponentA}];
|
||||||
recognize(fakeComponentResolver, config, tree("a/paramA"), empty()).then(s => {
|
recognize(config, tree("a/paramA"), empty()).forEach(s => {
|
||||||
const n1 = s.firstChild(s.root);
|
const n1 = s.firstChild(s.root);
|
||||||
const recorded = [];
|
const recorded = [];
|
||||||
n1!.params.forEach(r => recorded.push(r));
|
n1!.params.forEach(r => recorded.push(r));
|
||||||
|
|
||||||
recognize(fakeComponentResolver, config, tree("a/paramB"), s).then(s2 => {
|
recognize(config, tree("a/paramB"), s).forEach(s2 => {
|
||||||
const n2 = s2.firstChild(s2.root);
|
const n2 = s2.firstChild(s2.root);
|
||||||
expect(n1).toBe(n2);
|
expect(n1).toBe(n2);
|
||||||
expect(recorded).toEqual([{id: 'paramA'}, {id: 'paramB'}]);
|
expect(recorded).toEqual([{id: 'paramA'}, {id: 'paramB'}]);
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should support secondary routes', (done) => {
|
it('should support secondary routes', () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{ name: 'a', path: 'a', component: ComponentA },
|
{ path: 'a', component: ComponentA },
|
||||||
{ name: 'b', path: 'b', component: ComponentB, outlet: 'left' },
|
{ path: 'b', component: ComponentB, outlet: 'left' },
|
||||||
{ name: 'c', path: 'c', component: ComponentC, outlet: 'right' }
|
{ path: 'c', component: ComponentC, outlet: 'right' }
|
||||||
], tree("a(b//c)"), empty()).then(s => {
|
], tree("a(left:b//right:c)"), empty()).forEach(s => {
|
||||||
const c = s.children(s.root);
|
const c = s.children(s.root);
|
||||||
checkActivatedRoute(c[0], "a", {}, ComponentA);
|
checkActivatedRoute(c[0], "a", {}, ComponentA);
|
||||||
checkActivatedRoute(c[1], "b", {}, ComponentB, 'left');
|
checkActivatedRoute(c[1], "b", {}, ComponentB, 'left');
|
||||||
checkActivatedRoute(c[2], "c", {}, ComponentC, 'right');
|
checkActivatedRoute(c[2], "c", {}, ComponentC, 'right');
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should handle nested secondary routes', (done) => {
|
it('should use outlet name when matching secondary routes', () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{ name: 'a', path: 'a', component: ComponentA },
|
{ path: 'a', component: ComponentA },
|
||||||
{ name: 'b', path: 'b', component: ComponentB, outlet: 'left' },
|
{ path: 'b', component: ComponentB, outlet: 'left' },
|
||||||
{ name: 'c', path: 'c', component: ComponentC, outlet: 'right' }
|
{ path: 'b', component: ComponentC, outlet: 'right' }
|
||||||
], tree("a(b(c))"), empty()).then(s => {
|
], tree("a(right:b)"), empty()).forEach(s => {
|
||||||
|
const c = s.children(s.root);
|
||||||
|
checkActivatedRoute(c[0], "a", {}, ComponentA);
|
||||||
|
checkActivatedRoute(c[1], "b", {}, ComponentC, 'right');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle nested secondary routes', () => {
|
||||||
|
recognize([
|
||||||
|
{ path: 'a', component: ComponentA },
|
||||||
|
{ path: 'b', component: ComponentB, outlet: 'left' },
|
||||||
|
{ path: 'c', component: ComponentC, outlet: 'right' }
|
||||||
|
], tree("a(left:b(right:c))"), empty()).forEach(s => {
|
||||||
const c = s.children(s.root);
|
const c = s.children(s.root);
|
||||||
checkActivatedRoute(c[0], "a", {}, ComponentA);
|
checkActivatedRoute(c[0], "a", {}, ComponentA);
|
||||||
checkActivatedRoute(c[1], "b", {}, ComponentB, 'left');
|
checkActivatedRoute(c[1], "b", {}, ComponentB, 'left');
|
||||||
checkActivatedRoute(c[2], "c", {}, ComponentC, 'right');
|
checkActivatedRoute(c[2], "c", {}, ComponentC, 'right');
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should handle non top-level secondary routes', (done) => {
|
it('should handle non top-level secondary routes', () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{ name: 'a', path: 'a', component: ComponentA, children: [
|
{ path: 'a', component: ComponentA, children: [
|
||||||
{ name: 'b', path: 'b', component: ComponentB },
|
{ path: 'b', component: ComponentB },
|
||||||
{ name: 'c', path: 'c', component: ComponentC, outlet: 'left' }
|
{ path: 'c', component: ComponentC, outlet: 'left' }
|
||||||
] },
|
] },
|
||||||
], tree("a/b(c))"), empty()).then(s => {
|
], tree("a/b(left:c))"), empty()).forEach(s => {
|
||||||
const c = s.children(<any>s.firstChild(s.root));
|
const c = s.children(<any>s.firstChild(s.root));
|
||||||
checkActivatedRoute(c[0], "b", {}, ComponentB, PRIMARY_OUTLET);
|
checkActivatedRoute(c[0], "b", {}, ComponentB, PRIMARY_OUTLET);
|
||||||
checkActivatedRoute(c[1], "c", {}, ComponentC, 'left');
|
checkActivatedRoute(c[1], "c", {}, ComponentC, 'left');
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should support matrix parameters', (done) => {
|
it('should support matrix parameters', () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{
|
{
|
||||||
name: 'a',
|
|
||||||
path: 'a', component: ComponentA, children: [
|
path: 'a', component: ComponentA, children: [
|
||||||
{ name: 'b', path: 'b', component: ComponentB },
|
{ path: 'b', component: ComponentB },
|
||||||
{ name: 'c', path: 'c', component: ComponentC, outlet: 'left' }
|
{ path: 'c', component: ComponentC, outlet: 'left' }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], tree("a;a1=11;a2=22/b;b1=111;b2=222(c;c1=1111;c2=2222)"), empty()).then(s => {
|
], tree("a;a1=11;a2=22/b;b1=111;b2=222(left:c;c1=1111;c2=2222)"), empty()).forEach(s => {
|
||||||
checkActivatedRoute(s.firstChild(s.root), "a", {a1: '11', a2: '22'}, ComponentA);
|
checkActivatedRoute(s.firstChild(s.root), "a", {a1: '11', a2: '22'}, ComponentA);
|
||||||
const c = s.children(<any>s.firstChild(s.root));
|
const c = s.children(<any>s.firstChild(s.root));
|
||||||
checkActivatedRoute(c[0], "b", {b1: '111', b2: '222'}, ComponentB);
|
checkActivatedRoute(c[0], "b", {b1: '111', b2: '222'}, ComponentB);
|
||||||
checkActivatedRoute(c[1], "c", {c1: '1111', c2: '2222'}, ComponentC, 'left');
|
checkActivatedRoute(c[1], "c", {c1: '1111', c2: '2222'}, ComponentC, 'left');
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("index", () => {
|
describe("index", () => {
|
||||||
it("should support index routes", (done) => {
|
it("should support index routes", () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{
|
{index: true, component: ComponentA}
|
||||||
name: 'a', index: true, component: ComponentA
|
], tree(""), empty()).forEach(s => {
|
||||||
}
|
|
||||||
], tree(""), empty()).then(s => {
|
|
||||||
checkActivatedRoute(s.firstChild(s.root), "a", {}, ComponentA);
|
checkActivatedRoute(s.firstChild(s.root), "a", {}, ComponentA);
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should support index routes with children", (done) => {
|
it("should support index routes with children", () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{
|
{
|
||||||
name: 'a', index: true, component: ComponentA, children: [
|
index: true, component: ComponentA, children: [
|
||||||
{ name: 'b', index: true, component: ComponentB, children: [
|
{ index: true, component: ComponentB, children: [
|
||||||
{name: 'c', path: 'c/:id', component: ComponentC}
|
{path: 'c/:id', component: ComponentC}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
], tree("c/10"), empty()).then(s => {
|
], tree("c/10"), empty()).forEach(s => {
|
||||||
checkActivatedRoute(s.firstChild(s.root), "", {}, ComponentA);
|
checkActivatedRoute(s.firstChild(s.root), "", {}, ComponentA);
|
||||||
checkActivatedRoute(s.firstChild(<any>s.firstChild(s.root)), "", {}, ComponentB);
|
checkActivatedRoute(s.firstChild(<any>s.firstChild(s.root)), "", {}, ComponentB);
|
||||||
checkActivatedRoute(
|
checkActivatedRoute(
|
||||||
s.firstChild(<any>s.firstChild(<any>s.firstChild(s.root))), "c/10", {id: '10'}, ComponentC);
|
s.firstChild(<any>s.firstChild(<any>s.firstChild(s.root))), "c/10", {id: '10'}, ComponentC);
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("wildcards", () => {
|
describe("wildcards", () => {
|
||||||
it("should support simple wildcards", (done) => {
|
it("should support simple wildcards", () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{
|
{path: '**', component: ComponentA}
|
||||||
name: 'a', path: '**', component: ComponentA
|
], tree("a/b/c/d;a1=11"), empty()).forEach(s => {
|
||||||
}
|
|
||||||
], tree("a/b/c/d;a1=11"), empty()).then(s => {
|
|
||||||
checkActivatedRoute(s.firstChild(s.root), "a/b/c/d", {a1:'11'}, ComponentA);
|
checkActivatedRoute(s.firstChild(s.root), "a/b/c/d", {a1:'11'}, ComponentA);
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("query parameters", () => {
|
describe("query parameters", () => {
|
||||||
it("should support query params", (done) => {
|
it("should support query params", () => {
|
||||||
const config = [{name: 'a', path: 'a', component: ComponentA}];
|
const config = [{path: 'a', component: ComponentA}];
|
||||||
recognize(fakeComponentResolver, config, tree("a?q=11"), empty()).then(s => {
|
recognize(config, tree("a?q=11"), empty()).forEach(s => {
|
||||||
const q1 = s.queryParams;
|
const q1 = s.queryParams;
|
||||||
const recorded = [];
|
const recorded = [];
|
||||||
q1!.forEach(r => recorded.push(r));
|
q1!.forEach(r => recorded.push(r));
|
||||||
|
|
||||||
recognize(fakeComponentResolver, config, tree("a?q=22"), s).then(s2 => {
|
recognize(config, tree("a?q=22"), s).forEach(s2 => {
|
||||||
const q2 = s2.queryParams;
|
const q2 = s2.queryParams;
|
||||||
expect(q1).toBe(q2);
|
expect(q1).toBe(q2);
|
||||||
expect(recorded).toEqual([{q: '11'}, {q: '22'}]);
|
expect(recorded).toEqual([{q: '11'}, {q: '22'}]);
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("fragment", () => {
|
describe("fragment", () => {
|
||||||
it("should support fragment", (done) => {
|
it("should support fragment", () => {
|
||||||
const config = [{name: 'a', path: 'a', component: ComponentA}];
|
const config = [{path: 'a', component: ComponentA}];
|
||||||
recognize(fakeComponentResolver, config, tree("a#f1"), empty()).then(s => {
|
recognize(config, tree("a#f1"), empty()).forEach(s => {
|
||||||
const f1 = s.fragment;
|
const f1 = s.fragment;
|
||||||
const recorded = [];
|
const recorded = [];
|
||||||
f1!.forEach(r => recorded.push(r));
|
f1!.forEach(r => recorded.push(r));
|
||||||
|
|
||||||
recognize(fakeComponentResolver, config, tree("a#f2"), s).then(s2 => {
|
recognize(config, tree("a#f2"), s).forEach(s2 => {
|
||||||
const f2 = s2.fragment;
|
const f2 = s2.fragment;
|
||||||
expect(f1).toBe(f2);
|
expect(f1).toBe(f2);
|
||||||
expect(recorded).toEqual(["f1", "f2"]);
|
expect(recorded).toEqual(["f1", "f2"]);
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("error handling", () => {
|
describe("error handling", () => {
|
||||||
it('should error when two routes with the same outlet name got matched', (done) => {
|
it('should error when two routes with the same outlet name got matched', () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{ name: 'a', path: 'a', component: ComponentA },
|
{ path: 'a', component: ComponentA },
|
||||||
{ name: 'b', path: 'b', component: ComponentB, outlet: 'aux' },
|
{ path: 'b', component: ComponentB, outlet: 'aux' },
|
||||||
{ name: 'c', path: 'c', component: ComponentC, outlet: 'aux' }
|
{ path: 'c', component: ComponentC, outlet: 'aux' }
|
||||||
], tree("a(b//c)"), empty()).catch(s => {
|
], tree("a(aux:b//aux:c)"), empty()).subscribe(null, s => {
|
||||||
expect(s.toString()).toContain("Two segments cannot have the same outlet name: 'b' and 'c'.");
|
expect(s.toString()).toContain("Two segments cannot have the same outlet name: 'aux:b' and 'aux:c'.");
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should error when no matching routes", (done) => {
|
it("should error when no matching routes", () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{ name: 'a', path: 'a', component: ComponentA }
|
{ path: 'a', component: ComponentA }
|
||||||
], tree("invalid"), empty()).catch(s => {
|
], tree("invalid"), empty()).subscribe(null, s => {
|
||||||
expect(s.toString()).toContain("Cannot match any routes");
|
expect(s.toString()).toContain("Cannot match any routes");
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should error when no matching routes (too short)", (done) => {
|
it("should error when no matching routes (too short)", () => {
|
||||||
recognize(fakeComponentResolver, [
|
recognize([
|
||||||
{ name: 'a', path: 'a/:id', component: ComponentA }
|
{ path: 'a/:id', component: ComponentA }
|
||||||
], tree("a"), empty()).catch(s => {
|
], tree("a"), empty()).subscribe(null, s => {
|
||||||
expect(s.toString()).toContain("Cannot match any routes");
|
expect(s.toString()).toContain("Cannot match any routes");
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue