feat(router): empty-path routes should inherit matrix params
This commit is contained in:
parent
34b3c534e7
commit
a77db44129
|
@ -24,8 +24,8 @@ class NoMatch {
|
||||||
|
|
||||||
class InheritedFromParent {
|
class InheritedFromParent {
|
||||||
constructor(
|
constructor(
|
||||||
public parent: InheritedFromParent, public params: Params, public data: Data,
|
public parent: InheritedFromParent, public snapshot: ActivatedRouteSnapshot,
|
||||||
public resolve: InheritedResolve) {}
|
public params: Params, public data: Data, public resolve: InheritedResolve) {}
|
||||||
|
|
||||||
get allParams(): Params {
|
get allParams(): Params {
|
||||||
return this.parent ? merge(this.parent.allParams, this.params) : this.params;
|
return this.parent ? merge(this.parent.allParams, this.params) : this.params;
|
||||||
|
@ -33,8 +33,8 @@ class InheritedFromParent {
|
||||||
|
|
||||||
get allData(): Data { return this.parent ? merge(this.parent.allData, this.data) : this.data; }
|
get allData(): Data { return this.parent ? merge(this.parent.allData, this.data) : this.data; }
|
||||||
|
|
||||||
static get empty(): InheritedFromParent {
|
static empty(snapshot: ActivatedRouteSnapshot): InheritedFromParent {
|
||||||
return new InheritedFromParent(null, {}, {}, new InheritedResolve(null, {}));
|
return new InheritedFromParent(null, snapshot, {}, {}, new InheritedResolve(null, {}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ export function recognize(rootComponentType: Type, config: Routes, urlTree: UrlT
|
||||||
Observable<RouterStateSnapshot> {
|
Observable<RouterStateSnapshot> {
|
||||||
try {
|
try {
|
||||||
const children =
|
const children =
|
||||||
processSegment(config, urlTree.root, InheritedFromParent.empty, PRIMARY_OUTLET);
|
processSegment(config, urlTree.root, InheritedFromParent.empty(null), PRIMARY_OUTLET);
|
||||||
const root = new ActivatedRouteSnapshot(
|
const root = new ActivatedRouteSnapshot(
|
||||||
[], {}, {}, PRIMARY_OUTLET, rootComponentType, null, urlTree.root, -1,
|
[], {}, {}, PRIMARY_OUTLET, rootComponentType, null, urlTree.root, -1,
|
||||||
InheritedResolve.empty);
|
InheritedResolve.empty);
|
||||||
|
@ -119,12 +119,10 @@ function processPathsWithParamsAgainstRoute(
|
||||||
return [new TreeNode<ActivatedRouteSnapshot>(snapshot, [])];
|
return [new TreeNode<ActivatedRouteSnapshot>(snapshot, [])];
|
||||||
}
|
}
|
||||||
|
|
||||||
const {consumedPaths, parameters, lastChild} = match(rawSegment, route, paths);
|
const {consumedPaths, parameters, lastChild} =
|
||||||
|
match(rawSegment, route, paths, inherited.snapshot);
|
||||||
const rawSlicedPath = paths.slice(lastChild);
|
const rawSlicedPath = paths.slice(lastChild);
|
||||||
const childConfig = getChildConfig(route);
|
const childConfig = getChildConfig(route);
|
||||||
const newInherited = route.component ?
|
|
||||||
InheritedFromParent.empty :
|
|
||||||
new InheritedFromParent(inherited, parameters, getData(route), newInheritedResolve);
|
|
||||||
|
|
||||||
const {segment, slicedPath} = split(rawSegment, consumedPaths, rawSlicedPath, childConfig);
|
const {segment, slicedPath} = split(rawSegment, consumedPaths, rawSlicedPath, childConfig);
|
||||||
|
|
||||||
|
@ -134,6 +132,10 @@ function processPathsWithParamsAgainstRoute(
|
||||||
getSourceSegment(rawSegment), getPathIndexShift(rawSegment) + pathIndex + lastChild - 1,
|
getSourceSegment(rawSegment), getPathIndexShift(rawSegment) + pathIndex + lastChild - 1,
|
||||||
newInheritedResolve);
|
newInheritedResolve);
|
||||||
|
|
||||||
|
const newInherited = route.component ?
|
||||||
|
InheritedFromParent.empty(snapshot) :
|
||||||
|
new InheritedFromParent(inherited, snapshot, parameters, getData(route), newInheritedResolve);
|
||||||
|
|
||||||
if (slicedPath.length === 0 && segment.hasChildren()) {
|
if (slicedPath.length === 0 && segment.hasChildren()) {
|
||||||
const children = processSegmentChildren(childConfig, segment, newInherited);
|
const children = processSegmentChildren(childConfig, segment, newInherited);
|
||||||
return [new TreeNode<ActivatedRouteSnapshot>(snapshot, children)];
|
return [new TreeNode<ActivatedRouteSnapshot>(snapshot, children)];
|
||||||
|
@ -158,13 +160,15 @@ function getChildConfig(route: Route): Route[] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function match(segment: UrlSegment, route: Route, paths: UrlPathWithParams[]) {
|
function match(
|
||||||
|
segment: UrlSegment, route: Route, paths: UrlPathWithParams[], parent: ActivatedRouteSnapshot) {
|
||||||
if (route.path === '') {
|
if (route.path === '') {
|
||||||
if ((route.terminal || route.pathMatch === 'full') &&
|
if ((route.terminal || route.pathMatch === 'full') &&
|
||||||
(segment.hasChildren() || paths.length > 0)) {
|
(segment.hasChildren() || paths.length > 0)) {
|
||||||
throw new NoMatch();
|
throw new NoMatch();
|
||||||
} else {
|
} else {
|
||||||
return {consumedPaths: [], lastChild: 0, parameters: {}};
|
const params = parent ? parent.params : {};
|
||||||
|
return {consumedPaths: [], lastChild: 0, parameters: params};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -262,6 +262,23 @@ describe('recognize', () => {
|
||||||
expect(c2._lastPathIndex).toBe(-1);
|
expect(c2._lastPathIndex).toBe(-1);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should inherit params', () => {
|
||||||
|
checkRecognize(
|
||||||
|
[{
|
||||||
|
path: 'a',
|
||||||
|
component: ComponentA,
|
||||||
|
children: [
|
||||||
|
{path: '', component: ComponentB, children: [{path: '', component: ComponentC}]}
|
||||||
|
]
|
||||||
|
}],
|
||||||
|
'/a;p=1', (s: RouterStateSnapshot) => {
|
||||||
|
checkActivatedRoute(s.firstChild(s.root), 'a', {p: '1'}, ComponentA);
|
||||||
|
checkActivatedRoute(s.firstChild(s.firstChild(s.root)), '', {p: '1'}, ComponentB);
|
||||||
|
checkActivatedRoute(
|
||||||
|
s.firstChild(s.firstChild(s.firstChild(s.root))), '', {p: '1'}, ComponentC);
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('aux split is in the middle', () => {
|
describe('aux split is in the middle', () => {
|
||||||
|
|
Loading…
Reference in New Issue