first commit
This commit is contained in:
320
app_vue/node_modules/webpack-dev-server/client/index.js
generated
vendored
Normal file
320
app_vue/node_modules/webpack-dev-server/client/index.js
generated
vendored
Normal file
@ -0,0 +1,320 @@
|
||||
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
||||
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
||||
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
||||
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
||||
/* global __resourceQuery, __webpack_hash__ */
|
||||
/// <reference types="webpack/module" />
|
||||
import webpackHotLog from "webpack/hot/log.js";
|
||||
import stripAnsi from "./utils/stripAnsi.js";
|
||||
import parseURL from "./utils/parseURL.js";
|
||||
import socket from "./socket.js";
|
||||
import { formatProblem, createOverlay } from "./overlay.js";
|
||||
import { log, logEnabledFeatures, setLogLevel } from "./utils/log.js";
|
||||
import sendMessage from "./utils/sendMessage.js";
|
||||
import reloadApp from "./utils/reloadApp.js";
|
||||
import createSocketURL from "./utils/createSocketURL.js";
|
||||
|
||||
/**
|
||||
* @typedef {Object} OverlayOptions
|
||||
* @property {boolean | (error: Error) => boolean} [warnings]
|
||||
* @property {boolean | (error: Error) => boolean} [errors]
|
||||
* @property {boolean | (error: Error) => boolean} [runtimeErrors]
|
||||
* @property {string} [trustedTypesPolicyName]
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef {Object} Options
|
||||
* @property {boolean} hot
|
||||
* @property {boolean} liveReload
|
||||
* @property {boolean} progress
|
||||
* @property {boolean | OverlayOptions} overlay
|
||||
* @property {string} [logging]
|
||||
* @property {number} [reconnect]
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef {Object} Status
|
||||
* @property {boolean} isUnloading
|
||||
* @property {string} currentHash
|
||||
* @property {string} [previousHash]
|
||||
*/
|
||||
|
||||
/**
|
||||
* @param {boolean | { warnings?: boolean | string; errors?: boolean | string; runtimeErrors?: boolean | string; }} overlayOptions
|
||||
*/
|
||||
var decodeOverlayOptions = function decodeOverlayOptions(overlayOptions) {
|
||||
if (typeof overlayOptions === "object") {
|
||||
["warnings", "errors", "runtimeErrors"].forEach(function (property) {
|
||||
if (typeof overlayOptions[property] === "string") {
|
||||
var overlayFilterFunctionString = decodeURIComponent(overlayOptions[property]);
|
||||
|
||||
// eslint-disable-next-line no-new-func
|
||||
var overlayFilterFunction = new Function("message", "var callback = ".concat(overlayFilterFunctionString, "\n return callback(message)"));
|
||||
overlayOptions[property] = overlayFilterFunction;
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @type {Status}
|
||||
*/
|
||||
var status = {
|
||||
isUnloading: false,
|
||||
// TODO Workaround for webpack v4, `__webpack_hash__` is not replaced without HotModuleReplacement
|
||||
// eslint-disable-next-line camelcase
|
||||
currentHash: typeof __webpack_hash__ !== "undefined" ? __webpack_hash__ : ""
|
||||
};
|
||||
|
||||
/** @type {Options} */
|
||||
var options = {
|
||||
hot: false,
|
||||
liveReload: false,
|
||||
progress: false,
|
||||
overlay: false
|
||||
};
|
||||
var parsedResourceQuery = parseURL(__resourceQuery);
|
||||
var enabledFeatures = {
|
||||
"Hot Module Replacement": false,
|
||||
"Live Reloading": false,
|
||||
Progress: false,
|
||||
Overlay: false
|
||||
};
|
||||
if (parsedResourceQuery.hot === "true") {
|
||||
options.hot = true;
|
||||
enabledFeatures["Hot Module Replacement"] = true;
|
||||
}
|
||||
if (parsedResourceQuery["live-reload"] === "true") {
|
||||
options.liveReload = true;
|
||||
enabledFeatures["Live Reloading"] = true;
|
||||
}
|
||||
if (parsedResourceQuery.progress === "true") {
|
||||
options.progress = true;
|
||||
enabledFeatures.Progress = true;
|
||||
}
|
||||
if (parsedResourceQuery.overlay) {
|
||||
try {
|
||||
options.overlay = JSON.parse(parsedResourceQuery.overlay);
|
||||
} catch (e) {
|
||||
log.error("Error parsing overlay options from resource query:", e);
|
||||
}
|
||||
|
||||
// Fill in default "true" params for partially-specified objects.
|
||||
if (typeof options.overlay === "object") {
|
||||
options.overlay = _objectSpread({
|
||||
errors: true,
|
||||
warnings: true,
|
||||
runtimeErrors: true
|
||||
}, options.overlay);
|
||||
decodeOverlayOptions(options.overlay);
|
||||
}
|
||||
enabledFeatures.Overlay = true;
|
||||
}
|
||||
if (parsedResourceQuery.logging) {
|
||||
options.logging = parsedResourceQuery.logging;
|
||||
}
|
||||
if (typeof parsedResourceQuery.reconnect !== "undefined") {
|
||||
options.reconnect = Number(parsedResourceQuery.reconnect);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} level
|
||||
*/
|
||||
function setAllLogLevel(level) {
|
||||
// This is needed because the HMR logger operate separately from dev server logger
|
||||
webpackHotLog.setLogLevel(level === "verbose" || level === "log" ? "info" : level);
|
||||
setLogLevel(level);
|
||||
}
|
||||
if (options.logging) {
|
||||
setAllLogLevel(options.logging);
|
||||
}
|
||||
logEnabledFeatures(enabledFeatures);
|
||||
self.addEventListener("beforeunload", function () {
|
||||
status.isUnloading = true;
|
||||
});
|
||||
var overlay = typeof window !== "undefined" ? createOverlay(typeof options.overlay === "object" ? {
|
||||
trustedTypesPolicyName: options.overlay.trustedTypesPolicyName,
|
||||
catchRuntimeError: options.overlay.runtimeErrors
|
||||
} : {
|
||||
trustedTypesPolicyName: false,
|
||||
catchRuntimeError: options.overlay
|
||||
}) : {
|
||||
send: function send() {}
|
||||
};
|
||||
var onSocketMessage = {
|
||||
hot: function hot() {
|
||||
if (parsedResourceQuery.hot === "false") {
|
||||
return;
|
||||
}
|
||||
options.hot = true;
|
||||
},
|
||||
liveReload: function liveReload() {
|
||||
if (parsedResourceQuery["live-reload"] === "false") {
|
||||
return;
|
||||
}
|
||||
options.liveReload = true;
|
||||
},
|
||||
invalid: function invalid() {
|
||||
log.info("App updated. Recompiling...");
|
||||
|
||||
// Fixes #1042. overlay doesn't clear if errors are fixed but warnings remain.
|
||||
if (options.overlay) {
|
||||
overlay.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
}
|
||||
sendMessage("Invalid");
|
||||
},
|
||||
/**
|
||||
* @param {string} hash
|
||||
*/
|
||||
hash: function hash(_hash) {
|
||||
status.previousHash = status.currentHash;
|
||||
status.currentHash = _hash;
|
||||
},
|
||||
logging: setAllLogLevel,
|
||||
/**
|
||||
* @param {boolean} value
|
||||
*/
|
||||
overlay: function overlay(value) {
|
||||
if (typeof document === "undefined") {
|
||||
return;
|
||||
}
|
||||
options.overlay = value;
|
||||
decodeOverlayOptions(options.overlay);
|
||||
},
|
||||
/**
|
||||
* @param {number} value
|
||||
*/
|
||||
reconnect: function reconnect(value) {
|
||||
if (parsedResourceQuery.reconnect === "false") {
|
||||
return;
|
||||
}
|
||||
options.reconnect = value;
|
||||
},
|
||||
/**
|
||||
* @param {boolean} value
|
||||
*/
|
||||
progress: function progress(value) {
|
||||
options.progress = value;
|
||||
},
|
||||
/**
|
||||
* @param {{ pluginName?: string, percent: number, msg: string }} data
|
||||
*/
|
||||
"progress-update": function progressUpdate(data) {
|
||||
if (options.progress) {
|
||||
log.info("".concat(data.pluginName ? "[".concat(data.pluginName, "] ") : "").concat(data.percent, "% - ").concat(data.msg, "."));
|
||||
}
|
||||
sendMessage("Progress", data);
|
||||
},
|
||||
"still-ok": function stillOk() {
|
||||
log.info("Nothing changed.");
|
||||
if (options.overlay) {
|
||||
overlay.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
}
|
||||
sendMessage("StillOk");
|
||||
},
|
||||
ok: function ok() {
|
||||
sendMessage("Ok");
|
||||
if (options.overlay) {
|
||||
overlay.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
}
|
||||
reloadApp(options, status);
|
||||
},
|
||||
// TODO: remove in v5 in favor of 'static-changed'
|
||||
/**
|
||||
* @param {string} file
|
||||
*/
|
||||
"content-changed": function contentChanged(file) {
|
||||
log.info("".concat(file ? "\"".concat(file, "\"") : "Content", " from static directory was changed. Reloading..."));
|
||||
self.location.reload();
|
||||
},
|
||||
/**
|
||||
* @param {string} file
|
||||
*/
|
||||
"static-changed": function staticChanged(file) {
|
||||
log.info("".concat(file ? "\"".concat(file, "\"") : "Content", " from static directory was changed. Reloading..."));
|
||||
self.location.reload();
|
||||
},
|
||||
/**
|
||||
* @param {Error[]} warnings
|
||||
* @param {any} params
|
||||
*/
|
||||
warnings: function warnings(_warnings, params) {
|
||||
log.warn("Warnings while compiling.");
|
||||
var printableWarnings = _warnings.map(function (error) {
|
||||
var _formatProblem = formatProblem("warning", error),
|
||||
header = _formatProblem.header,
|
||||
body = _formatProblem.body;
|
||||
return "".concat(header, "\n").concat(stripAnsi(body));
|
||||
});
|
||||
sendMessage("Warnings", printableWarnings);
|
||||
for (var i = 0; i < printableWarnings.length; i++) {
|
||||
log.warn(printableWarnings[i]);
|
||||
}
|
||||
var overlayWarningsSetting = typeof options.overlay === "boolean" ? options.overlay : options.overlay && options.overlay.warnings;
|
||||
if (overlayWarningsSetting) {
|
||||
var warningsToDisplay = typeof overlayWarningsSetting === "function" ? _warnings.filter(overlayWarningsSetting) : _warnings;
|
||||
if (warningsToDisplay.length) {
|
||||
overlay.send({
|
||||
type: "BUILD_ERROR",
|
||||
level: "warning",
|
||||
messages: _warnings
|
||||
});
|
||||
}
|
||||
}
|
||||
if (params && params.preventReloading) {
|
||||
return;
|
||||
}
|
||||
reloadApp(options, status);
|
||||
},
|
||||
/**
|
||||
* @param {Error[]} errors
|
||||
*/
|
||||
errors: function errors(_errors) {
|
||||
log.error("Errors while compiling. Reload prevented.");
|
||||
var printableErrors = _errors.map(function (error) {
|
||||
var _formatProblem2 = formatProblem("error", error),
|
||||
header = _formatProblem2.header,
|
||||
body = _formatProblem2.body;
|
||||
return "".concat(header, "\n").concat(stripAnsi(body));
|
||||
});
|
||||
sendMessage("Errors", printableErrors);
|
||||
for (var i = 0; i < printableErrors.length; i++) {
|
||||
log.error(printableErrors[i]);
|
||||
}
|
||||
var overlayErrorsSettings = typeof options.overlay === "boolean" ? options.overlay : options.overlay && options.overlay.errors;
|
||||
if (overlayErrorsSettings) {
|
||||
var errorsToDisplay = typeof overlayErrorsSettings === "function" ? _errors.filter(overlayErrorsSettings) : _errors;
|
||||
if (errorsToDisplay.length) {
|
||||
overlay.send({
|
||||
type: "BUILD_ERROR",
|
||||
level: "error",
|
||||
messages: _errors
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
/**
|
||||
* @param {Error} error
|
||||
*/
|
||||
error: function error(_error) {
|
||||
log.error(_error);
|
||||
},
|
||||
close: function close() {
|
||||
log.info("Disconnected!");
|
||||
if (options.overlay) {
|
||||
overlay.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
}
|
||||
sendMessage("Close");
|
||||
}
|
||||
};
|
||||
var socketURL = createSocketURL(parsedResourceQuery);
|
||||
socket(socketURL, onSocketMessage, options.reconnect);
|
Reference in New Issue
Block a user