mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
798fd3c1e8
* compile _document using webpack * don't emit the bundle file of _document.js * exclude _document.js from minChunks of CommonsChunkPlugin * handle creation/removal of pages/_document.js * improve path handlings
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
import webpackHotMiddlewareClient from 'webpack-hot-middleware/client?overlay=false&reload=true'
|
|
import Router from '../lib/router'
|
|
|
|
const handlers = {
|
|
reload (route) {
|
|
if (route === '/_error') {
|
|
for (const r of Object.keys(Router.components)) {
|
|
const { Component } = Router.components[r]
|
|
if (Component.__route === '/_error-debug') {
|
|
// reload all '/_error-debug'
|
|
// 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 { Component } = Router.components[route] || {}
|
|
if (Component && Component.__route === '/_error-debug') {
|
|
// 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)
|
|
}
|
|
})
|