Skip to content

Commit cc6e255

Browse files
committed
fix(location): correctly parse url ending with .
Fix #1620
1 parent 39675eb commit cc6e255

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

packages/router/__tests__/location.spec.ts

+12
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,18 @@ describe('resolveRelativePath', () => {
353353
expect(resolveRelativePath('/add', '/users/posva')).toBe('/add')
354354
})
355355

356+
it('works without anything after the .', () => {
357+
expect(resolveRelativePath('./', '/users/posva')).toBe('/users/')
358+
expect(resolveRelativePath('.', '/users/posva')).toBe('/users/')
359+
})
360+
361+
it('works without anything after the ..', () => {
362+
expect(resolveRelativePath('../', '/users/posva/new')).toBe('/users/')
363+
expect(resolveRelativePath('../../', '/users/posva/a/b')).toBe('/users/')
364+
expect(resolveRelativePath('..', '/users/posva/new')).toBe('/users/')
365+
expect(resolveRelativePath('../..', '/users/posva/a/b')).toBe('/users/')
366+
})
367+
356368
it('resolves empty path', () => {
357369
expect(resolveRelativePath('', '/users/posva')).toBe('/users/posva')
358370
expect(resolveRelativePath('', '/users')).toBe('/users')

packages/router/src/location.ts

+7
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,13 @@ export function resolveRelativePath(to: string, from: string): string {
212212

213213
const fromSegments = from.split('/')
214214
const toSegments = to.split('/')
215+
const lastToSegment = toSegments[toSegments.length - 1]
216+
217+
// make . and ./ the same (../ === .., ../../ === ../..)
218+
// this is the same behavior as new URL()
219+
if (lastToSegment === '..' || lastToSegment === '.') {
220+
toSegments.push('')
221+
}
215222

216223
let position = fromSegments.length - 1
217224
let toPosition: number

0 commit comments

Comments
 (0)