Skip to content

Commit 4d5182a

Browse files
committed
fix(matcher): correctly resolve empty paths with optional params
Fix #1475
1 parent 9030279 commit 4d5182a

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

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

+5
Original file line numberDiff line numberDiff line change
@@ -797,6 +797,11 @@ describe('RouterMatcher.resolve', () => {
797797
{ name: 'h' },
798798
{ name: 'h', path: '/', params: {} }
799799
)
800+
assertRecordMatch(
801+
{ path: '/:tab?/:other?', name: 'h', components },
802+
{ name: 'h' },
803+
{ name: 'h', path: '/', params: {} }
804+
)
800805
})
801806
})
802807

packages/router/src/matcher/pathParserRanker.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,8 @@ export function tokensToParser(
255255
: (param as string)
256256
if (!text) {
257257
if (optional) {
258-
// if we have more than one optional param like /:a?-static and there are more segments, we don't need to
259-
// care about the optional param
260-
if (segment.length < 2 && segments.length > 1) {
258+
// if we have more than one optional param like /:a?-static we don't need to care about the optional param
259+
if (segment.length < 2) {
261260
// remove the last slash as we could be at the end
262261
if (path.endsWith('/')) path = path.slice(0, -1)
263262
// do not append a slash on the next iteration
@@ -270,7 +269,8 @@ export function tokensToParser(
270269
}
271270
}
272271

273-
return path
272+
// avoid empty path when we have multiple optional params
273+
return path || '/'
274274
}
275275

276276
return {

0 commit comments

Comments
 (0)