Skip to content

Commit f6db91a

Browse files
committed
feat: print errors from lazy loading
Close #497
1 parent 65c18db commit f6db91a

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

__tests__/lazyLoading.spec.ts

+22
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { RouterOptions } from '../src/router'
44
import { RouteComponent } from '../src/types'
55
import { ticks } from './utils'
66
import { FunctionalComponent, h } from 'vue'
7+
import { mockWarn } from 'jest-mock-warn'
78

89
function newRouter(options: Partial<RouterOptions> = {}) {
910
let history = createMemoryHistory()
@@ -24,6 +25,7 @@ function createLazyComponent() {
2425
}
2526

2627
describe('Lazy Loading', () => {
28+
mockWarn()
2729
it('works', async () => {
2830
const { component, resolve } = createLazyComponent()
2931
const { router } = newRouter({
@@ -240,6 +242,26 @@ describe('Lazy Loading', () => {
240242
expect(spy).toHaveBeenCalledTimes(1)
241243
})
242244

245+
it('prints the error when lazy load fails', async () => {
246+
const { component, reject } = createLazyComponent()
247+
const { router } = newRouter({
248+
routes: [{ path: '/foo', component }],
249+
})
250+
251+
const spy = jest.fn()
252+
253+
reject(new Error('fail'))
254+
await router.push('/foo').catch(spy)
255+
256+
expect(spy).toHaveBeenCalled()
257+
expect('fail').toHaveBeenWarned()
258+
259+
expect(router.currentRoute.value).toMatchObject({
260+
path: '/',
261+
matched: [],
262+
})
263+
})
264+
243265
it('aborts the navigation if async fails', async () => {
244266
const { component, reject } = createLazyComponent()
245267
const { router } = newRouter({

src/navigationGuards.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -245,25 +245,28 @@ export function extractComponentsGuards(
245245
guard && guards.push(guardToPromiseFn(guard, to, from, record, name))
246246
} else {
247247
// start requesting the chunk already
248-
let componentPromise: Promise<RouteComponent | null> = (rawComponent as Lazy<
249-
RouteComponent
250-
>)()
248+
let componentPromise: Promise<
249+
RouteComponent | null | undefined | void
250+
> = (rawComponent as Lazy<RouteComponent>)()
251251

252252
if (__DEV__ && !('catch' in componentPromise)) {
253253
warn(
254254
`Component "${name}" in record with path "${record.path}" is a function that does not return a Promise. If you were passing a functional component, make sure to add a "displayName" to the component. This will break in production if not fixed.`
255255
)
256256
componentPromise = Promise.resolve(componentPromise as RouteComponent)
257257
} else {
258-
componentPromise = componentPromise.catch(() => null)
258+
// display the error if any
259+
componentPromise = componentPromise.catch(
260+
__DEV__ ? err => err && warn(err) : console.error
261+
)
259262
}
260263

261264
guards.push(() =>
262265
componentPromise.then(resolved => {
263266
if (!resolved)
264267
return Promise.reject(
265268
new Error(
266-
`Couldn't resolve component "${name}" for the following record with path "${record.path}"`
269+
`Couldn't resolve component "${name}" at "${record.path}"`
267270
)
268271
)
269272
const resolvedComponent = isESModule(resolved)

0 commit comments

Comments
 (0)