1
- import { RouteRecordRaw , MatcherLocationRaw , MatcherLocation } from '../types'
1
+ import {
2
+ RouteRecordRaw ,
3
+ MatcherLocationRaw ,
4
+ MatcherLocation ,
5
+ isRouteName ,
6
+ RouteRecordName ,
7
+ } from '../types'
2
8
import { createRouterError , ErrorTypes , MatcherError } from '../errors'
3
9
import { createRouteRecordMatcher , RouteRecordMatcher } from './path-matcher'
4
10
import { RouteRecordRedirect , RouteRecordNormalized } from './types'
@@ -14,12 +20,10 @@ interface RouterMatcher {
14
20
addRoute : ( record : RouteRecordRaw , parent ?: RouteRecordMatcher ) => ( ) => void
15
21
removeRoute : {
16
22
( matcher : RouteRecordMatcher ) : void
17
- ( name : Required < RouteRecordRaw > [ 'name' ] ) : void
23
+ ( name : RouteRecordName ) : void
18
24
}
19
25
getRoutes : ( ) => RouteRecordMatcher [ ]
20
- getRecordMatcher : (
21
- name : Required < RouteRecordRaw > [ 'name' ]
22
- ) => RouteRecordMatcher | undefined
26
+ getRecordMatcher : ( name : RouteRecordName ) => RouteRecordMatcher | undefined
23
27
resolve : (
24
28
location : MatcherLocationRaw ,
25
29
currentLocation : MatcherLocation
@@ -32,9 +36,9 @@ export function createRouterMatcher(
32
36
) : RouterMatcher {
33
37
// normalized ordered array of matchers
34
38
const matchers : RouteRecordMatcher [ ] = [ ]
35
- const matcherMap = new Map < string | symbol , RouteRecordMatcher > ( )
39
+ const matcherMap = new Map < RouteRecordName , RouteRecordMatcher > ( )
36
40
37
- function getRecordMatcher ( name : string ) {
41
+ function getRecordMatcher ( name : RouteRecordName ) {
38
42
return matcherMap . get ( name )
39
43
}
40
44
@@ -130,8 +134,8 @@ export function createRouterMatcher(
130
134
: noop
131
135
}
132
136
133
- function removeRoute ( matcherRef : string | RouteRecordMatcher ) {
134
- if ( typeof matcherRef === 'string' ) {
137
+ function removeRoute ( matcherRef : RouteRecordName | RouteRecordMatcher ) {
138
+ if ( isRouteName ( matcherRef ) ) {
135
139
const matcher = matcherMap . get ( matcherRef )
136
140
if ( matcher ) {
137
141
matcherMap . delete ( matcherRef )
0 commit comments