Skip to content

Commit 04b50e5

Browse files
authored
fix: keep optional params coming from a parent record (#2031)
* keep optional params coming from a parent record when resolving a location * format code * improve code logic and add unit test for parent optional params * revert wrong commit of pnpm-lock.yaml
1 parent 2e1ad5d commit 04b50e5

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

packages/router/__tests__/matcher/resolve.spec.ts

+34
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,40 @@ describe('RouterMatcher.resolve', () => {
777777
)
778778
})
779779

780+
it('keep optional params from parent record', () => {
781+
const Child_A = { path: 'a', name: 'child_a', components }
782+
const Child_B = { path: 'b', name: 'child_b', components }
783+
const Parent = {
784+
path: '/:optional?/parent',
785+
name: 'parent',
786+
components,
787+
children: [Child_A, Child_B],
788+
}
789+
assertRecordMatch(
790+
Parent,
791+
{ name: 'child_b' },
792+
{
793+
name: 'child_b',
794+
path: '/foo/parent/b',
795+
params: { optional: 'foo' },
796+
matched: [
797+
Parent as any,
798+
{
799+
...Child_B,
800+
path: `${Parent.path}/${Child_B.path}`,
801+
},
802+
],
803+
},
804+
{
805+
params: { optional: 'foo' },
806+
path: '/foo/parent/a',
807+
matched: [],
808+
meta: {},
809+
name: undefined,
810+
}
811+
)
812+
})
813+
780814
it('discards non existent params', () => {
781815
assertRecordMatch(
782816
{ path: '/', name: 'home', components },

packages/router/src/matcher/index.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,13 @@ export function createRouterMatcher(
277277
paramsFromLocation(
278278
currentLocation.params,
279279
// only keep params that exist in the resolved location
280-
// TODO: only keep optional params coming from a parent record
281-
matcher.keys.filter(k => !k.optional).map(k => k.name)
280+
// only keep optional params coming from a parent record
281+
matcher.keys
282+
.filter(k => !k.optional)
283+
.concat(
284+
matcher.parent ? matcher.parent.keys.filter(k => k.optional) : []
285+
)
286+
.map(k => k.name)
282287
),
283288
// discard any existing params in the current location that do not exist here
284289
// #1497 this ensures better active/exact matching

0 commit comments

Comments
 (0)