webpack/hot/dev-server.js

61 lines
1.7 KiB
JavaScript
Raw Normal View History

2015-03-12 06:48:00 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2015-05-22 04:58:22 +08:00
/*globals window __webpack_hash__ */
if(module.hot) {
2014-08-25 15:50:26 +08:00
var lastData;
var upToDate = function upToDate() {
2014-09-03 19:17:37 +08:00
return lastData.indexOf(__webpack_hash__) >= 0;
};
var check = function check() {
module.hot.check(true).then(function(updatedModules) {
if(!updatedModules) {
console.warn("[HMR] Cannot find update. Need to do a full reload!");
2015-05-22 04:58:22 +08:00
console.warn("[HMR] (Probably because of restarting the webpack-dev-server)");
window.location.reload();
return;
}
2014-09-03 19:17:37 +08:00
if(!upToDate()) {
2014-08-25 15:50:26 +08:00
check();
}
2015-03-12 06:48:00 +08:00
require("./log-apply-result")(updatedModules, updatedModules);
2014-09-03 19:17:37 +08:00
if(upToDate()) {
2014-08-25 15:50:26 +08:00
console.log("[HMR] App is up to date.");
}
}).catch(function(err) {
if(module.hot.status() in {
abort: 1,
fail: 1
}) {
console.warn("[HMR] Cannot apply update. Need to do a full reload!");
console.warn("[HMR] " + err.stack || err.message);
window.location.reload();
} else {
console.warn("[HMR] Update failed: " + err.stack || err.message);
}
});
};
2014-11-04 04:48:58 +08:00
var addEventListener = window.addEventListener ? function(eventName, listener) {
window.addEventListener(eventName, listener, false);
2015-07-16 06:27:37 +08:00
} : function(eventName, listener) {
2015-05-22 04:58:22 +08:00
window.attachEvent("on" + eventName, listener);
};
addEventListener("message", function(event) {
2014-08-25 19:38:33 +08:00
if(typeof event.data === "string" && event.data.indexOf("webpackHotUpdate") === 0) {
2014-08-25 15:50:26 +08:00
lastData = event.data;
2014-09-03 19:17:37 +08:00
if(!upToDate() && module.hot.status() === "idle") {
2014-08-25 19:38:33 +08:00
console.log("[HMR] Checking for updates on the server...");
check();
}
}
});
console.log("[HMR] Waiting for update signal from WDS...");
} else {
throw new Error("[HMR] Hot Module Replacement is disabled.");
2014-09-03 19:17:37 +08:00
}