Skip to content

Commit f42ab3f

Browse files
committed
feat: allow symbols as route record name
1 parent 874510b commit f42ab3f

File tree

4 files changed

+32
-19
lines changed

4 files changed

+32
-19
lines changed

src/matcher/index.ts

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
import { RouteRecordRaw, MatcherLocationRaw, MatcherLocation } from '../types'
1+
import {
2+
RouteRecordRaw,
3+
MatcherLocationRaw,
4+
MatcherLocation,
5+
isRouteName,
6+
RouteRecordName,
7+
} from '../types'
28
import { createRouterError, ErrorTypes, MatcherError } from '../errors'
39
import { createRouteRecordMatcher, RouteRecordMatcher } from './path-matcher'
410
import { RouteRecordRedirect, RouteRecordNormalized } from './types'
@@ -14,12 +20,10 @@ interface RouterMatcher {
1420
addRoute: (record: RouteRecordRaw, parent?: RouteRecordMatcher) => () => void
1521
removeRoute: {
1622
(matcher: RouteRecordMatcher): void
17-
(name: Required<RouteRecordRaw>['name']): void
23+
(name: RouteRecordName): void
1824
}
1925
getRoutes: () => RouteRecordMatcher[]
20-
getRecordMatcher: (
21-
name: Required<RouteRecordRaw>['name']
22-
) => RouteRecordMatcher | undefined
26+
getRecordMatcher: (name: RouteRecordName) => RouteRecordMatcher | undefined
2327
resolve: (
2428
location: MatcherLocationRaw,
2529
currentLocation: MatcherLocation
@@ -32,9 +36,9 @@ export function createRouterMatcher(
3236
): RouterMatcher {
3337
// normalized ordered array of matchers
3438
const matchers: RouteRecordMatcher[] = []
35-
const matcherMap = new Map<string | symbol, RouteRecordMatcher>()
39+
const matcherMap = new Map<RouteRecordName, RouteRecordMatcher>()
3640

37-
function getRecordMatcher(name: string) {
41+
function getRecordMatcher(name: RouteRecordName) {
3842
return matcherMap.get(name)
3943
}
4044

@@ -130,8 +134,8 @@ export function createRouterMatcher(
130134
: noop
131135
}
132136

133-
function removeRoute(matcherRef: string | RouteRecordMatcher) {
134-
if (typeof matcherRef === 'string') {
137+
function removeRoute(matcherRef: RouteRecordName | RouteRecordMatcher) {
138+
if (isRouteName(matcherRef)) {
135139
const matcher = matcherMap.get(matcherRef)
136140
if (matcher) {
137141
matcherMap.delete(matcherRef)

src/router.ts

+9-6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import {
1010
MatcherLocation,
1111
RouteLocationNormalizedLoaded,
1212
RouteLocation,
13+
RouteRecordName,
14+
isRouteName,
1315
} from './types'
1416
import { RouterHistory, HistoryState } from './history/common'
1517
import {
@@ -83,9 +85,10 @@ export interface Router {
8385
history: RouterHistory
8486
currentRoute: Ref<RouteLocationNormalizedLoaded>
8587

86-
addRoute(parentName: string, route: RouteRecordRaw): () => void
88+
addRoute(parentName: RouteRecordName, route: RouteRecordRaw): () => void
8789
addRoute(route: RouteRecordRaw): () => void
88-
removeRoute(name: string): void
90+
removeRoute(name: RouteRecordName): void
91+
// TODO: hasRoute()
8992
getRoutes(): RouteRecord[]
9093

9194
resolve(to: RouteLocationRaw): RouteLocation
@@ -132,12 +135,12 @@ export function createRouter({
132135
const decodeParams = applyToParams.bind(null, decode)
133136

134137
function addRoute(
135-
parentOrRoute: string | RouteRecordRaw,
138+
parentOrRoute: RouteRecordName | RouteRecordRaw,
136139
route?: RouteRecordRaw
137140
) {
138141
let parent: Parameters<typeof matcher['addRoute']>[1] | undefined
139142
let record: RouteRecordRaw
140-
if (typeof parentOrRoute === 'string') {
143+
if (isRouteName(parentOrRoute)) {
141144
parent = matcher.getRecordMatcher(parentOrRoute)
142145
record = route!
143146
} else {
@@ -147,13 +150,13 @@ export function createRouter({
147150
return matcher.addRoute(record, parent)
148151
}
149152

150-
function removeRoute(name: string) {
153+
function removeRoute(name: RouteRecordName) {
151154
let recordMatcher = matcher.getRecordMatcher(name)
152155
if (recordMatcher) {
153156
matcher.removeRoute(recordMatcher)
154157
} else if (__DEV__) {
155158
// TODO: adapt if we allow Symbol as a name
156-
warn(`Cannot remove non-existent route "${name}"`)
159+
warn(`Cannot remove non-existent route "${String(name)}"`)
157160
}
158161
}
159162

src/types/index.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export interface LocationAsPath {
4343
}
4444

4545
export interface LocationAsName {
46-
name: string
46+
name: RouteRecordName
4747
params?: RouteParamsRaw
4848
}
4949

@@ -90,7 +90,7 @@ export interface _RouteLocationBase {
9090
fullPath: string
9191
query: LocationQuery
9292
hash: string
93-
name: string | null | undefined
93+
name: RouteRecordName | null | undefined
9494
params: RouteParams
9595
// TODO: make it an array?
9696
redirectedFrom: RouteLocation | undefined
@@ -171,6 +171,8 @@ export interface RouteComponentInterface {
171171
export type RouteComponent = ComponentOptions & RouteComponentInterface
172172
export type RawRouteComponent = RouteComponent | Lazy<RouteComponent>
173173

174+
export type RouteRecordName = string | symbol
175+
174176
// TODO: could this be moved to matcher?
175177
/**
176178
* Common properties among all kind of {@link RouteRecordRaw}
@@ -190,7 +192,7 @@ export interface _RouteRecordBase {
190192
/**
191193
* Name for the route record.
192194
*/
193-
name?: string
195+
name?: RouteRecordName
194196
/**
195197
* Allow passing down params as props to the component rendered by `router-view`.
196198
*/

src/types/type-guards.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
import { RouteLocationRaw } from './index'
1+
import { RouteLocationRaw, RouteRecordName } from './index'
22

33
export function isRouteLocation(route: any): route is RouteLocationRaw {
44
return typeof route === 'string' || (route && typeof route === 'object')
55
}
6+
7+
export function isRouteName(name: any): name is RouteRecordName {
8+
return typeof name === 'string' || typeof name === 'symbol'
9+
}

0 commit comments

Comments
 (0)