Skip to content

Commit e887570

Browse files
committed
fix(matcher): remove unused params
Fix #1497 NOTES: if you were relying on passing `params` that were not defined as part of the `path`, eg: having a route defined as follows: ```js { path: '/somewhere', name: 'somewhere' } ``` And pushing with an _artificial_ param: ```js router.push({ name: 'somewhere', params: { oops: 'gets removed' }}) ``` This change will break your app. This behavior has worked in some scenarios but has been **advised against** for years as it's an antipattern in routing. You can still put the data in `query` or as an actual param.
1 parent 9e90d9d commit e887570

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

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

+13
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,19 @@ describe('RouterMatcher.resolve', () => {
775775
)
776776
})
777777

778+
it('drops non existent params', () => {
779+
assertRecordMatch(
780+
{ path: '/', name: 'home', components },
781+
{ name: 'home', params: { a: 'b' } },
782+
{ name: 'home', path: '/', params: {} }
783+
)
784+
assertRecordMatch(
785+
{ path: '/:b', name: 'a', components },
786+
{ name: 'a', params: { a: 'a', b: 'b' } },
787+
{ name: 'a', path: '/b', params: { b: 'b' } }
788+
)
789+
})
790+
778791
it('drops optional params', () => {
779792
assertRecordMatch(
780793
{ path: '/:a/:b?', name: 'p', components },

packages/router/src/matcher/index.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,13 @@ export function createRouterMatcher(
256256
// TODO: only keep optional params coming from a parent record
257257
matcher.keys.filter(k => !k.optional).map(k => k.name)
258258
),
259-
location.params
259+
// discard any existing params in the current location that do not exist here
260+
// #1497 this ensures better active/exact matching
261+
location.params &&
262+
paramsFromLocation(
263+
location.params,
264+
matcher.keys.map(k => k.name)
265+
)
260266
)
261267
// throws if cannot be stringified
262268
path = matcher.stringify(params)
@@ -275,7 +281,6 @@ export function createRouterMatcher(
275281
// matcher should have a value after the loop
276282

277283
if (matcher) {
278-
// TODO: dev warning of unused params if provided
279284
// we know the matcher works because we tested the regexp
280285
params = matcher.parse(path)!
281286
name = matcher.record.name

0 commit comments

Comments
 (0)