mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
787a110b75
Just after a 404 page, if we created a page with no default exports. It'll throw an error. And it'll crash internal webpack state. So, once we have it we need to do a hard reload to recover it.
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
import webpackHotMiddlewareClient from 'webpack-hot-middleware/client?overlay=false&reload=true&path=/_next/webpack-hmr'
|
|
import Router from '../lib/router'
|
|
|
|
export default () => {
|
|
const handlers = {
|
|
reload (route) {
|
|
if (route === '/_error') {
|
|
for (const r of Object.keys(Router.components)) {
|
|
const { err } = Router.components[r]
|
|
if (err) {
|
|
// reload all error routes
|
|
// which are expected to be errors of '/_error' routes
|
|
Router.reload(r)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
if (route === '/_document') {
|
|
window.location.reload()
|
|
return
|
|
}
|
|
|
|
Router.reload(route)
|
|
},
|
|
|
|
change (route) {
|
|
if (route === '/_document') {
|
|
window.location.reload()
|
|
return
|
|
}
|
|
|
|
const { err, Component } = Router.components[route] || {}
|
|
|
|
if (!Component) {
|
|
// This only happens when we create a new page without a default export.
|
|
// If you removed a default export from a exising viewing page, this has no effect.
|
|
console.log(`Hard reloading due to no default component in page: ${route}`)
|
|
window.location.reload()
|
|
return
|
|
}
|
|
|
|
if (err) {
|
|
// reload to recover from runtime errors
|
|
Router.reload(route)
|
|
}
|
|
}
|
|
}
|
|
|
|
webpackHotMiddlewareClient.subscribe((obj) => {
|
|
const fn = handlers[obj.action]
|
|
if (fn) {
|
|
const data = obj.data || []
|
|
fn(...data)
|
|
} else {
|
|
throw new Error('Unexpected action ' + obj.action)
|
|
}
|
|
})
|
|
}
|