Skip to content

Commit 3284110

Browse files
committed
fix(link): navigate to the alias path
1 parent 392c295 commit 3284110

File tree

3 files changed

+57
-7
lines changed

3 files changed

+57
-7
lines changed

__tests__/matcher/resolve.spec.ts

+28-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ describe('Router Matcher', () => {
156156
)
157157
})
158158

159-
it('resolves an alias with children', () => {
159+
it('resolves an alias with children to the alias when using the path', () => {
160160
const children = [{ path: 'one', component, name: 'nested' }]
161161
assertRecordMatch(
162162
{
@@ -182,6 +182,33 @@ describe('Router Matcher', () => {
182182
}
183183
)
184184
})
185+
186+
it('resolves the original path of the named children of a route with an alias', () => {
187+
const children = [{ path: 'one', component, name: 'nested' }]
188+
assertRecordMatch(
189+
{
190+
path: '/parent',
191+
alias: '/p',
192+
component,
193+
children,
194+
},
195+
{ name: 'nested' },
196+
{
197+
path: '/parent/one',
198+
name: 'nested',
199+
params: {},
200+
matched: [
201+
{
202+
path: '/parent',
203+
children,
204+
components,
205+
aliasOf: undefined,
206+
},
207+
{ path: '/parent/one', name: 'nested', components },
208+
],
209+
}
210+
)
211+
})
185212
})
186213

187214
describe('LocationAsPath', () => {

src/matcher/index.ts

+14-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export function createRouterMatcher(
132132
// while (i < matchers.length && matcher.score <= matchers[i].score) i++
133133
matchers.splice(i, 0, matcher)
134134
// only add the original record to the name map
135-
if (matcher.record.name && !matcher.record.aliasOf)
135+
if (matcher.record.name && !isAliasRecord(matcher))
136136
matcherMap.set(matcher.record.name, matcher)
137137
}
138138

@@ -245,4 +245,17 @@ export function normalizeRouteRecord(
245245
}
246246
}
247247

248+
/**
249+
* Checks if a record or any of its parent is an alias
250+
* @param record
251+
*/
252+
function isAliasRecord(record: RouteRecordMatcher | undefined): boolean {
253+
while (record) {
254+
if (record.record.aliasOf) return true
255+
record = record.parent
256+
}
257+
258+
return false
259+
}
260+
248261
export { PathParserOptions }

src/router.ts

+15-5
Original file line numberDiff line numberDiff line change
@@ -184,15 +184,19 @@ export function createRouter({
184184
}
185185
}
186186

187-
function push(to: RouteLocation): Promise<RouteLocationNormalized> {
187+
function push(
188+
to: RouteLocation | RouteLocationNormalized
189+
): Promise<RouteLocationNormalized> {
188190
return pushWithRedirect(to, undefined)
189191
}
190192

191193
async function pushWithRedirect(
192-
to: RouteLocation,
194+
to: RouteLocation | RouteLocationNormalized,
193195
redirectedFrom: RouteLocationNormalized | undefined
194196
): Promise<RouteLocationNormalized> {
195-
const toLocation: RouteLocationNormalized = (pendingLocation = resolve(to))
197+
const toLocation: RouteLocationNormalized = (pendingLocation =
198+
// Some functions will pass a normalized location and we don't need to resolve it again
199+
typeof to === 'object' && 'matched' in to ? to : resolve(to))
196200
const from: RouteLocationNormalized = currentRoute.value
197201
// @ts-ignore: no need to check the string as force do not exist on a string
198202
const force: boolean | undefined = to.force
@@ -222,12 +226,18 @@ export function createRouter({
222226
triggerError(error)
223227
}
224228

225-
finalizeNavigation(toLocation, from, true, to.replace === true)
229+
finalizeNavigation(
230+
toLocation,
231+
from,
232+
true,
233+
// RouteLocationNormalized will give undefined
234+
(to as RouteLocation).replace === true
235+
)
226236

227237
return currentRoute.value
228238
}
229239

230-
function replace(to: RouteLocation) {
240+
function replace(to: RouteLocation | RouteLocationNormalized) {
231241
const location = typeof to === 'string' ? { path: to } : to
232242
return push({ ...location, replace: true })
233243
}

0 commit comments

Comments
 (0)