2016-10-24 15:20:50 +00:00
|
|
|
import { join, relative, sep } from 'path'
|
2017-06-06 22:32:02 +00:00
|
|
|
import WebpackDevMiddleware from 'webpack-dev-middleware'
|
|
|
|
import WebpackHotMiddleware from 'webpack-hot-middleware'
|
2018-02-14 15:17:41 +00:00
|
|
|
import del from 'del'
|
2017-02-26 19:45:16 +00:00
|
|
|
import onDemandEntryHandler from './on-demand-entry-handler'
|
2018-01-30 15:40:52 +00:00
|
|
|
import webpack from 'webpack'
|
|
|
|
import getBaseWebpackConfig from './build/webpack'
|
2017-08-31 00:17:06 +00:00
|
|
|
import UUID from 'uuid'
|
2017-06-06 22:32:02 +00:00
|
|
|
import {
|
2018-01-30 15:40:52 +00:00
|
|
|
IS_BUNDLED_PAGE,
|
|
|
|
addCorsSupport
|
2017-06-06 22:32:02 +00:00
|
|
|
} from './utils'
|
2017-06-05 15:07:20 +00:00
|
|
|
|
2016-10-14 15:05:08 +00:00
|
|
|
export default class HotReloader {
|
2018-02-14 15:17:41 +00:00
|
|
|
constructor (dir, { quiet, config } = {}) {
|
2016-10-17 07:05:46 +00:00
|
|
|
this.dir = dir
|
2016-12-21 14:39:08 +00:00
|
|
|
this.quiet = quiet
|
2016-11-23 18:32:49 +00:00
|
|
|
this.middlewares = []
|
|
|
|
this.webpackDevMiddleware = null
|
|
|
|
this.webpackHotMiddleware = null
|
2016-10-31 10:51:03 +00:00
|
|
|
this.initialized = false
|
2016-10-19 12:41:45 +00:00
|
|
|
this.stats = null
|
|
|
|
this.compilationErrors = null
|
2016-10-24 07:22:15 +00:00
|
|
|
this.prevAssets = null
|
2016-10-31 10:51:03 +00:00
|
|
|
this.prevChunkNames = null
|
|
|
|
this.prevFailedChunkNames = null
|
2016-11-24 14:03:16 +00:00
|
|
|
this.prevChunkHashes = null
|
2017-08-31 00:17:06 +00:00
|
|
|
// Here buildId could be any value.
|
|
|
|
// Our router accepts any value in the dev mode.
|
|
|
|
// But for the webpack-compiler and for the webpack-dev-server
|
|
|
|
// it should be the same value.
|
|
|
|
this.buildId = UUID.v4()
|
2017-02-26 19:45:16 +00:00
|
|
|
|
2018-02-14 15:17:41 +00:00
|
|
|
this.config = config
|
2016-10-17 07:05:46 +00:00
|
|
|
}
|
|
|
|
|
2016-11-23 18:32:49 +00:00
|
|
|
async run (req, res) {
|
2018-01-30 15:40:52 +00:00
|
|
|
// Usually CORS support is not needed for the hot-reloader (this is dev only feature)
|
|
|
|
// With when the app runs for multi-zones support behind a proxy,
|
|
|
|
// the current page is trying to access this URL via assetPrefix.
|
|
|
|
// That's when the CORS support is needed.
|
|
|
|
const { preflight } = addCorsSupport(req, res)
|
|
|
|
if (preflight) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-23 18:32:49 +00:00
|
|
|
for (const fn of this.middlewares) {
|
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
fn(req, res, (err) => {
|
2017-01-08 02:02:29 +00:00
|
|
|
if (err) return reject(err)
|
2016-11-23 18:32:49 +00:00
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
2016-10-17 07:05:46 +00:00
|
|
|
}
|
|
|
|
|
2018-02-14 15:17:41 +00:00
|
|
|
async clean () {
|
|
|
|
return del(join(this.dir, this.config.distDir), { force: true })
|
|
|
|
}
|
|
|
|
|
2016-10-17 07:05:46 +00:00
|
|
|
async start () {
|
2018-02-14 15:17:41 +00:00
|
|
|
await this.clean()
|
2018-01-30 15:40:52 +00:00
|
|
|
|
|
|
|
const configs = await Promise.all([
|
|
|
|
getBaseWebpackConfig(this.dir, { dev: true, isServer: false, config: this.config }),
|
|
|
|
getBaseWebpackConfig(this.dir, { dev: true, isServer: true, config: this.config })
|
2016-12-16 20:33:08 +00:00
|
|
|
])
|
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
const compiler = webpack(configs)
|
|
|
|
|
2017-06-06 22:32:02 +00:00
|
|
|
const buildTools = await this.prepareBuildTools(compiler)
|
|
|
|
this.assignBuildTools(buildTools)
|
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
this.stats = (await this.waitUntilValid()).stats[0]
|
2016-10-17 07:05:46 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 22:32:02 +00:00
|
|
|
async stop (webpackDevMiddleware) {
|
|
|
|
const middleware = webpackDevMiddleware || this.webpackDevMiddleware
|
|
|
|
if (middleware) {
|
2016-12-17 04:04:40 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-06 22:32:02 +00:00
|
|
|
middleware.close((err) => {
|
2017-01-08 02:02:29 +00:00
|
|
|
if (err) return reject(err)
|
2016-12-17 04:04:40 +00:00
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:32:02 +00:00
|
|
|
async reload () {
|
|
|
|
this.stats = null
|
|
|
|
|
2018-02-14 15:17:41 +00:00
|
|
|
await this.clean()
|
2018-01-30 15:40:52 +00:00
|
|
|
|
|
|
|
const configs = await Promise.all([
|
|
|
|
getBaseWebpackConfig(this.dir, { dev: true, isServer: false, config: this.config }),
|
|
|
|
getBaseWebpackConfig(this.dir, { dev: true, isServer: true, config: this.config })
|
2017-06-06 22:32:02 +00:00
|
|
|
])
|
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
const compiler = webpack(configs)
|
|
|
|
|
2017-06-06 22:32:02 +00:00
|
|
|
const buildTools = await this.prepareBuildTools(compiler)
|
|
|
|
this.stats = await this.waitUntilValid(buildTools.webpackDevMiddleware)
|
|
|
|
|
|
|
|
const oldWebpackDevMiddleware = this.webpackDevMiddleware
|
|
|
|
|
|
|
|
this.assignBuildTools(buildTools)
|
|
|
|
await this.stop(oldWebpackDevMiddleware)
|
|
|
|
}
|
|
|
|
|
|
|
|
assignBuildTools ({ webpackDevMiddleware, webpackHotMiddleware, onDemandEntries }) {
|
|
|
|
this.webpackDevMiddleware = webpackDevMiddleware
|
|
|
|
this.webpackHotMiddleware = webpackHotMiddleware
|
|
|
|
this.onDemandEntries = onDemandEntries
|
|
|
|
this.middlewares = [
|
|
|
|
webpackDevMiddleware,
|
|
|
|
webpackHotMiddleware,
|
|
|
|
onDemandEntries.middleware()
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
async prepareBuildTools (compiler) {
|
2018-01-30 15:40:52 +00:00
|
|
|
// This flushes require.cache after emitting the files. Providing 'hot reloading' of server files.
|
|
|
|
compiler.compilers.forEach((singleCompiler) => {
|
|
|
|
singleCompiler.plugin('after-emit', (compilation, callback) => {
|
|
|
|
const { assets } = compilation
|
|
|
|
|
|
|
|
if (this.prevAssets) {
|
|
|
|
for (const f of Object.keys(assets)) {
|
|
|
|
deleteCache(assets[f].existsAt)
|
|
|
|
}
|
|
|
|
for (const f of Object.keys(this.prevAssets)) {
|
|
|
|
if (!assets[f]) {
|
|
|
|
deleteCache(this.prevAssets[f].existsAt)
|
|
|
|
}
|
2016-10-24 07:22:15 +00:00
|
|
|
}
|
2016-10-23 16:42:13 +00:00
|
|
|
}
|
2018-01-30 15:40:52 +00:00
|
|
|
this.prevAssets = assets
|
2016-10-24 07:22:15 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
callback()
|
|
|
|
})
|
2016-10-15 19:49:42 +00:00
|
|
|
})
|
2016-10-14 15:05:08 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
compiler.compilers[0].plugin('done', (stats) => {
|
2016-10-31 10:51:03 +00:00
|
|
|
const { compilation } = stats
|
2017-06-05 15:07:20 +00:00
|
|
|
const chunkNames = new Set(
|
|
|
|
compilation.chunks
|
|
|
|
.map((c) => c.name)
|
2017-06-06 22:32:02 +00:00
|
|
|
.filter(name => IS_BUNDLED_PAGE.test(name))
|
2017-06-05 15:07:20 +00:00
|
|
|
)
|
|
|
|
|
2016-10-31 10:51:03 +00:00
|
|
|
const failedChunkNames = new Set(compilation.errors
|
2018-03-27 18:11:03 +00:00
|
|
|
.map((e) => e.module.reasons)
|
|
|
|
.reduce((a, b) => a.concat(b), [])
|
|
|
|
.map((r) => r.module.chunks)
|
|
|
|
.reduce((a, b) => a.concat(b), [])
|
|
|
|
.map((c) => c.name))
|
2016-10-31 10:51:03 +00:00
|
|
|
|
2017-06-05 15:07:20 +00:00
|
|
|
const chunkHashes = new Map(
|
|
|
|
compilation.chunks
|
2017-06-06 22:32:02 +00:00
|
|
|
.filter(c => IS_BUNDLED_PAGE.test(c.name))
|
2017-06-05 15:07:20 +00:00
|
|
|
.map((c) => [c.name, c.hash])
|
|
|
|
)
|
2016-11-24 14:03:16 +00:00
|
|
|
|
2016-10-31 10:51:03 +00:00
|
|
|
if (this.initialized) {
|
|
|
|
// detect chunks which have to be replaced with a new template
|
|
|
|
// e.g, pages/index.js <-> pages/_error.js
|
|
|
|
const added = diff(chunkNames, this.prevChunkNames)
|
|
|
|
const removed = diff(this.prevChunkNames, chunkNames)
|
|
|
|
const succeeded = diff(this.prevFailedChunkNames, failedChunkNames)
|
|
|
|
|
|
|
|
// reload all failed chunks to replace the templace to the error ones,
|
|
|
|
// and to update error content
|
|
|
|
const failed = failedChunkNames
|
2016-10-24 15:20:50 +00:00
|
|
|
|
|
|
|
const rootDir = join('bundles', 'pages')
|
|
|
|
|
2016-10-31 10:51:03 +00:00
|
|
|
for (const n of new Set([...added, ...removed, ...failed, ...succeeded])) {
|
2016-10-24 15:20:50 +00:00
|
|
|
const route = toRoute(relative(rootDir, n))
|
|
|
|
this.send('reload', route)
|
2016-10-24 07:22:15 +00:00
|
|
|
}
|
2016-11-24 14:03:16 +00:00
|
|
|
|
2018-05-15 22:36:24 +00:00
|
|
|
let changedPageRoutes = []
|
|
|
|
|
2016-11-24 14:03:16 +00:00
|
|
|
for (const [n, hash] of chunkHashes) {
|
|
|
|
if (!this.prevChunkHashes.has(n)) continue
|
|
|
|
if (this.prevChunkHashes.get(n) === hash) continue
|
|
|
|
|
|
|
|
const route = toRoute(relative(rootDir, n))
|
|
|
|
|
2018-05-15 22:36:24 +00:00
|
|
|
changedPageRoutes.push(route)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This means `/_app` is most likely included in the list.
|
|
|
|
// We filter it out because `/_app` will be re-rendered with the page
|
|
|
|
if (changedPageRoutes.length > 1) {
|
2018-05-16 08:08:18 +00:00
|
|
|
changedPageRoutes = changedPageRoutes.filter((route) => route !== '/_app' && route !== '/_document')
|
2018-05-15 22:36:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (const changedPageRoute of changedPageRoutes) {
|
2016-11-24 14:03:16 +00:00
|
|
|
// notify change to recover from runtime errors
|
2018-05-15 22:36:24 +00:00
|
|
|
this.send('change', changedPageRoute)
|
2016-11-24 14:03:16 +00:00
|
|
|
}
|
2016-10-24 07:22:15 +00:00
|
|
|
}
|
2016-10-24 15:20:50 +00:00
|
|
|
|
2016-10-31 10:51:03 +00:00
|
|
|
this.initialized = true
|
|
|
|
this.stats = stats
|
|
|
|
this.compilationErrors = null
|
|
|
|
this.prevChunkNames = chunkNames
|
|
|
|
this.prevFailedChunkNames = failedChunkNames
|
2016-11-24 14:03:16 +00:00
|
|
|
this.prevChunkHashes = chunkHashes
|
2016-10-19 12:41:45 +00:00
|
|
|
})
|
|
|
|
|
2017-01-19 07:09:40 +00:00
|
|
|
const ignored = [
|
|
|
|
/(^|[/\\])\../, // .dotfiles
|
2017-02-28 08:46:11 +00:00
|
|
|
/node_modules/
|
2017-01-19 07:09:40 +00:00
|
|
|
]
|
2016-11-28 14:04:59 +00:00
|
|
|
|
2017-05-13 23:44:21 +00:00
|
|
|
let webpackDevMiddlewareConfig = {
|
2017-12-27 18:59:17 +00:00
|
|
|
publicPath: `/_next/webpack/`,
|
2016-10-17 07:05:46 +00:00
|
|
|
noInfo: true,
|
2016-11-16 02:46:58 +00:00
|
|
|
quiet: true,
|
2016-12-02 01:21:21 +00:00
|
|
|
clientLogLevel: 'warning',
|
2017-06-30 06:50:18 +00:00
|
|
|
watchOptions: { ignored }
|
2017-05-13 23:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.config.webpackDevMiddleware) {
|
2017-05-31 08:06:07 +00:00
|
|
|
console.log(`> Using "webpackDevMiddleware" config function defined in ${this.config.configOrigin}.`)
|
2017-05-13 23:44:21 +00:00
|
|
|
webpackDevMiddlewareConfig = this.config.webpackDevMiddleware(webpackDevMiddlewareConfig)
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:32:02 +00:00
|
|
|
const webpackDevMiddleware = WebpackDevMiddleware(compiler, webpackDevMiddlewareConfig)
|
2016-11-23 18:32:49 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
const webpackHotMiddleware = WebpackHotMiddleware(compiler.compilers[0], {
|
2017-04-07 17:58:35 +00:00
|
|
|
path: '/_next/webpack-hmr',
|
2017-06-05 09:02:13 +00:00
|
|
|
log: false,
|
|
|
|
heartbeat: 2500
|
2017-04-07 17:58:35 +00:00
|
|
|
})
|
2018-01-30 15:40:52 +00:00
|
|
|
|
|
|
|
const onDemandEntries = onDemandEntryHandler(webpackDevMiddleware, compiler.compilers, {
|
2017-02-26 19:45:16 +00:00
|
|
|
dir: this.dir,
|
|
|
|
dev: true,
|
2017-06-06 22:32:02 +00:00
|
|
|
reload: this.reload.bind(this),
|
2018-02-14 15:20:41 +00:00
|
|
|
pageExtensions: this.config.pageExtensions,
|
2017-02-26 19:45:16 +00:00
|
|
|
...this.config.onDemandEntries
|
|
|
|
})
|
2016-11-23 18:32:49 +00:00
|
|
|
|
2017-06-06 22:32:02 +00:00
|
|
|
return {
|
|
|
|
webpackDevMiddleware,
|
|
|
|
webpackHotMiddleware,
|
|
|
|
onDemandEntries
|
|
|
|
}
|
2016-10-14 15:05:08 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 22:32:02 +00:00
|
|
|
waitUntilValid (webpackDevMiddleware) {
|
|
|
|
const middleware = webpackDevMiddleware || this.webpackDevMiddleware
|
2016-10-19 12:41:45 +00:00
|
|
|
return new Promise((resolve) => {
|
2017-06-06 22:32:02 +00:00
|
|
|
middleware.waitUntilValid(resolve)
|
2016-10-14 15:05:08 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:32:02 +00:00
|
|
|
async getCompilationErrors () {
|
|
|
|
// When we are reloading, we need to wait until it's reloaded properly.
|
|
|
|
await this.onDemandEntries.waitUntilReloaded()
|
|
|
|
|
2016-10-19 12:41:45 +00:00
|
|
|
if (!this.compilationErrors) {
|
|
|
|
this.compilationErrors = new Map()
|
2016-10-24 15:20:50 +00:00
|
|
|
|
2016-10-19 12:41:45 +00:00
|
|
|
if (this.stats.hasErrors()) {
|
2016-10-24 15:20:50 +00:00
|
|
|
const { compiler, errors } = this.stats.compilation
|
|
|
|
|
|
|
|
for (const err of errors) {
|
|
|
|
for (const r of err.module.reasons) {
|
|
|
|
for (const c of r.module.chunks) {
|
|
|
|
// get the path of the bundle file
|
|
|
|
const path = join(compiler.outputPath, c.name)
|
|
|
|
const errors = this.compilationErrors.get(path) || []
|
|
|
|
this.compilationErrors.set(path, errors.concat([err]))
|
|
|
|
}
|
|
|
|
}
|
2016-10-19 12:41:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.compilationErrors
|
|
|
|
}
|
|
|
|
|
2016-11-23 18:32:49 +00:00
|
|
|
send (action, ...args) {
|
|
|
|
this.webpackHotMiddleware.publish({ action, data: args })
|
2016-10-24 07:22:15 +00:00
|
|
|
}
|
2017-02-26 19:45:16 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
async ensurePage (page) {
|
2018-05-15 22:36:24 +00:00
|
|
|
// Make sure we don't re-build or dispose prebuilt pages
|
|
|
|
if (page === '/_error' || page === '/_document' || page === '/_app') {
|
|
|
|
return
|
|
|
|
}
|
2018-01-30 15:40:52 +00:00
|
|
|
await this.onDemandEntries.ensurePage(page)
|
2017-02-26 19:45:16 +00:00
|
|
|
}
|
2016-10-14 15:05:08 +00:00
|
|
|
}
|
2016-10-19 12:41:45 +00:00
|
|
|
|
|
|
|
function deleteCache (path) {
|
|
|
|
delete require.cache[path]
|
|
|
|
}
|
2016-10-24 07:22:15 +00:00
|
|
|
|
|
|
|
function diff (a, b) {
|
|
|
|
return new Set([...a].filter((v) => !b.has(v)))
|
|
|
|
}
|
2016-10-24 15:20:50 +00:00
|
|
|
|
|
|
|
function toRoute (file) {
|
|
|
|
const f = sep === '\\' ? file.replace(/\\/g, '/') : file
|
|
|
|
return ('/' + f).replace(/(\/index)?\.js$/, '') || '/'
|
|
|
|
}
|