Skip to content

Commit 92f8901

Browse files
committed
fix(warn): should not warn missing optional params in aliases
1 parent bfc0489 commit 92f8901

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

__tests__/matcher/addingRemoving.spec.ts

+18-3
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,25 @@ describe('Matcher: adding and removing records', () => {
391391
describe('warnings', () => {
392392
mockWarn()
393393

394-
// TODO: add warnings for invalid records
395-
it.skip('warns if alias is missing a required param', () => {
394+
it('warns if alias is missing a required param', () => {
396395
createRouterMatcher([{ path: '/:id', alias: '/no-id', component }], {})
397-
expect('TODO').toHaveBeenWarned()
396+
expect('same param named "id"').toHaveBeenWarned()
397+
})
398+
399+
it('does not warn for optional param on alias', () => {
400+
createRouterMatcher(
401+
[{ path: '/:id', alias: '/:id-:suffix?', component }],
402+
{}
403+
)
404+
expect('same param named').not.toHaveBeenWarned()
405+
})
406+
407+
it('does not warn for optional param on main record', () => {
408+
createRouterMatcher(
409+
[{ alias: '/:id', path: '/:id-:suffix?', component }],
410+
{}
411+
)
412+
expect('same param named').not.toHaveBeenWarned()
398413
})
399414
})
400415
})

src/matcher/index.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -425,15 +425,21 @@ function isSameParam(a: ParamKey, b: ParamKey): boolean {
425425
)
426426
}
427427

428+
/**
429+
* Check if a path and its alias have the same required params
430+
*
431+
* @param a - original record
432+
* @param b - alias record
433+
*/
428434
function checkSameParams(a: RouteRecordMatcher, b: RouteRecordMatcher) {
429435
for (let key of a.keys) {
430-
if (!b.keys.find(isSameParam.bind(null, key)))
436+
if (!key.optional && !b.keys.find(isSameParam.bind(null, key)))
431437
return warn(
432438
`Alias "${b.record.path}" and the original record: "${a.record.path}" should have the exact same param named "${key.name}"`
433439
)
434440
}
435441
for (let key of b.keys) {
436-
if (!a.keys.find(isSameParam.bind(null, key)))
442+
if (!key.optional && !a.keys.find(isSameParam.bind(null, key)))
437443
return warn(
438444
`Alias "${b.record.path}" and the original record: "${a.record.path}" should have the exact same param named "${key.name}"`
439445
)

0 commit comments

Comments
 (0)