Skip to content

Commit 91f4de9

Browse files
committed
feat(warn): warn for invalid path+params and redirect
1 parent 8a8ddf1 commit 91f4de9

File tree

3 files changed

+32
-14
lines changed

3 files changed

+32
-14
lines changed

__tests__/initialNavigation.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('Initial Navigation', () => {
5151
it('handles initial navigation with redirect', async () => {
5252
const { history, router } = newRouter('/home')
5353
expect(history.location.fullPath).toBe('/home')
54-
// this is done automatically on mount but there is no mount here
54+
// this is done automatically on install but there is none here
5555
await router.push(history.location.fullPath)
5656
expect(router.currentRoute.value).toMatchObject({ path: '/' })
5757
await router.push('/foo')

src/router.ts

+30-3
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,16 @@ export function createRouter(options: RouterOptions): Router {
251251

252252
// path could be relative in object as well
253253
if ('path' in rawLocation) {
254-
if (__DEV__ && 'params' in rawLocation) {
254+
if (
255+
__DEV__ &&
256+
'params' in rawLocation &&
257+
!('name' in rawLocation) &&
258+
Object.keys((rawLocation as any).params).length
259+
) {
255260
warn(
256-
// @ts-ignore
257-
`Path "${rawLocation.path}" was passed with params but they will be ignored. Use a named route instead or build the path yourself`
261+
`Path "${
262+
(rawLocation as any).path
263+
}" was passed with params but they will be ignored. Use a named route alongside params instead.`
258264
)
259265
}
260266
rawLocation = {
@@ -332,8 +338,29 @@ export function createRouter(options: RouterOptions): Router {
332338
let newTargetLocation = locationAsObject(
333339
typeof redirect === 'function' ? redirect(targetLocation) : redirect
334340
)
341+
342+
if (
343+
__DEV__ &&
344+
!('path' in newTargetLocation) &&
345+
!('name' in newTargetLocation)
346+
) {
347+
warn(
348+
`Invalid redirect found:\n${JSON.stringify(
349+
newTargetLocation,
350+
null,
351+
2
352+
)}\n when navigating to "${
353+
targetLocation.fullPath
354+
}". A redirect must contain a name or path.`
355+
)
356+
}
335357
return pushWithRedirect(
336358
{
359+
// having a path here would be a problem with relative locations but
360+
// at the same time it doesn't make sense for a redirect to be
361+
// relative (no name, no path) because it would create an infinite
362+
// loop. Since newTargetLocation must either have a `path` or a
363+
// `name`, this will never happen
337364
...targetLocation,
338365
...newTargetLocation,
339366
state: data,

src/warning.ts

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
import { warn as vueWarn } from 'vue'
2-
3-
const originalWarn = console.warn
4-
function customWarn(msg: string, ...args: any[]) {
5-
originalWarn(msg.replace('Vue warn', 'Vue Router warn'), ...args)
6-
}
7-
81
export function warn(msg: string, ...args: any[]) {
9-
console.warn = customWarn
10-
vueWarn(msg, ...args)
11-
console.warn = originalWarn
2+
console.warn('[Vue Router warn]: ' + msg, ...args)
123
}

0 commit comments

Comments
 (0)