Skip to content

Commit 07100fc

Browse files
committed
fix(matcher): override records by name when adding
1 parent 8b0ea66 commit 07100fc

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

__tests__/matcher/addingRemoving.spec.ts

+10
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,16 @@ describe('Matcher: adding and removing records', () => {
360360
expect(matcher.getRecordMatcher('child')).toBe(undefined)
361361
})
362362

363+
it('removes existing record when adding with the same name', () => {
364+
const matcher = createRouterMatcher([], {})
365+
matcher.addRoute({ path: '/', component, name: 'home' })
366+
matcher.addRoute({ path: '/home', component, name: 'home' })
367+
expect(matcher.getRoutes()).toHaveLength(1)
368+
expect(matcher.resolve({ path: '/home' }, currentLocation)).toMatchObject({
369+
name: 'home',
370+
})
371+
})
372+
363373
describe('warnings', () => {
364374
mockWarn()
365375

src/matcher/index.ts

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ export function createRouterMatcher(
5353
parent?: RouteRecordMatcher,
5454
originalRecord?: RouteRecordMatcher
5555
) {
56+
// used later on to remove by name
57+
let isRootAdd = !originalRecord
5658
let mainNormalizedRecord = normalizeRouteRecord(record)
5759
// we might be the child of an alias
5860
mainNormalizedRecord.aliasOf = originalRecord && originalRecord.record
@@ -134,6 +136,9 @@ export function createRouterMatcher(
134136
// other alias (if any) need to reference this record when adding children
135137
originalRecord = originalRecord || matcher
136138

139+
// remove the route if named and only for the top record (avoid in nested calls)
140+
if (isRootAdd && record.name) removeRoute(record.name)
141+
137142
insertMatcher(matcher)
138143
}
139144

src/matcher/pathTokenizer.ts

+8
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,19 @@ const ROOT_TOKEN: Token = {
3838
}
3939

4040
const VALID_PARAM_RE = /[a-zA-Z0-9_]/
41+
// After some profiling, the cache seems to be unnecessary because tokenizePath
42+
// (the slowest part of adding a route) is very fast
43+
44+
// const tokenCache = new Map<string, Token[][]>()
4145

4246
export function tokenizePath(path: string): Array<Token[]> {
4347
if (!path) return [[]]
4448
if (path === '/') return [[ROOT_TOKEN]]
4549
// remove the leading slash
4650
if (path[0] !== '/') throw new Error('A non-empty path must start with "/"')
4751

52+
// if (tokenCache.has(path)) return tokenCache.get(path)!
53+
4854
function crash(message: string) {
4955
throw new Error(`ERR (${state})/"${buffer}": ${message}`)
5056
}
@@ -178,5 +184,7 @@ export function tokenizePath(path: string): Array<Token[]> {
178184
consumeBuffer()
179185
finalizeSegment()
180186

187+
// tokenCache.set(path, tokens)
188+
181189
return tokens
182190
}

0 commit comments

Comments
 (0)