Skip to content

Commit 4dab4d0

Browse files
posvaEating-Eating
andcommitted
feat: warn against named parent routes (#1396)
Co-authored-by: Eating-Eating <[email protected]>
1 parent 36631cf commit 4dab4d0

File tree

2 files changed

+127
-0
lines changed

2 files changed

+127
-0
lines changed

__tests__/matcher/addingRemoving.spec.ts

+100
Original file line numberDiff line numberDiff line change
@@ -441,5 +441,105 @@ describe('Matcher: adding and removing records', () => {
441441
)
442442
expect('same param named').not.toHaveBeenWarned()
443443
})
444+
445+
it('warns if a named route has an empty non-named child route', () => {
446+
createRouterMatcher(
447+
[
448+
{
449+
name: 'UserRoute',
450+
path: '/user/:id',
451+
component,
452+
children: [{ path: '', component }],
453+
},
454+
],
455+
{}
456+
)
457+
expect('has a child without a name').toHaveBeenWarned()
458+
})
459+
460+
it('no warn if both or just the child are named', () => {
461+
createRouterMatcher(
462+
[
463+
{
464+
name: 'UserRoute',
465+
path: '/user/:id',
466+
component,
467+
children: [{ path: '', name: 'UserHome', component }],
468+
},
469+
{
470+
path: '/',
471+
component,
472+
children: [{ path: '', name: 'child', component }],
473+
},
474+
],
475+
{}
476+
)
477+
expect('has a child without a name').not.toHaveBeenWarned()
478+
})
479+
480+
it('warns if nested child is missing a name', () => {
481+
createRouterMatcher(
482+
[
483+
{
484+
name: 'parent',
485+
path: '/a',
486+
component,
487+
children: [
488+
{
489+
path: 'b',
490+
name: 'b',
491+
component,
492+
children: [{ path: '', component }],
493+
},
494+
],
495+
},
496+
],
497+
{}
498+
)
499+
expect('has a child without a name').toHaveBeenWarned()
500+
})
501+
502+
it('warns if middle nested child is missing a name', () => {
503+
createRouterMatcher(
504+
[
505+
{
506+
path: '/a',
507+
component,
508+
children: [
509+
{
510+
path: '',
511+
name: 'parent',
512+
component,
513+
children: [{ path: '', component }],
514+
},
515+
],
516+
},
517+
],
518+
{}
519+
)
520+
expect('has a child without a name').toHaveBeenWarned()
521+
})
522+
523+
it('no warn if nested child is named', () => {
524+
createRouterMatcher(
525+
[
526+
{
527+
name: 'parent',
528+
path: '/a',
529+
component,
530+
children: [
531+
{
532+
path: 'b',
533+
name: 'b',
534+
component,
535+
children: [{ path: '', name: 'child', component }],
536+
},
537+
],
538+
},
539+
],
540+
{}
541+
)
542+
expect('has a child without a name').not.toHaveBeenWarned()
543+
})
444544
})
445545
})

src/matcher/index.ts

+27
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ export function createRouterMatcher(
7979
// used later on to remove by name
8080
const isRootAdd = !originalRecord
8181
const mainNormalizedRecord = normalizeRouteRecord(record)
82+
if (__DEV__) {
83+
checkChildMissingNameWithEmptyPath(mainNormalizedRecord, parent)
84+
}
8285
// we might be the child of an alias
8386
mainNormalizedRecord.aliasOf = originalRecord && originalRecord.record
8487
const options: PathParserOptions = mergeOptions(globalOptions, record)
@@ -452,6 +455,30 @@ function checkSameParams(a: RouteRecordMatcher, b: RouteRecordMatcher) {
452455
}
453456
}
454457

458+
/**
459+
* A route with a name and a child with an empty path without a name should warn when adding the route
460+
*
461+
* @param mainNormalizedRecord - RouteRecordNormalized
462+
* @param parent - RouteRecordMatcher
463+
*/
464+
function checkChildMissingNameWithEmptyPath(
465+
mainNormalizedRecord: RouteRecordNormalized,
466+
parent?: RouteRecordMatcher
467+
) {
468+
if (
469+
parent &&
470+
parent.record.name &&
471+
!mainNormalizedRecord.name &&
472+
!mainNormalizedRecord.path
473+
) {
474+
warn(
475+
`The route named "${String(
476+
parent.record.name
477+
)}" has a child without a name and an empty path. Using that name won't render the empty path child so you probably want to move the name to the child instead. If this is intentional, add a name to the child route to remove the warning.`
478+
)
479+
}
480+
}
481+
455482
function checkMissingParamsInAbsolutePath(
456483
record: RouteRecordMatcher,
457484
parent: RouteRecordMatcher

0 commit comments

Comments
 (0)