You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8232 lines
301 KiB
8232 lines
301 KiB
(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["common/vendor"],{
|
|
|
|
/***/ 1:
|
|
/*!***************************************!*\
|
|
!*** D:/files/uniapp-demo/pages.json ***!
|
|
\***************************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports) {
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 10:
|
|
/*!******************************************************************!*\
|
|
!*** ./node_modules/@dcloudio/uni-mp-weixin/dist/uni.api.esm.js ***!
|
|
\******************************************************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
"use strict";
|
|
/* WEBPACK VAR INJECTION */(function(global) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _shared = __webpack_require__(/*! @vue/shared */ 12);
|
|
var _vue = __webpack_require__(/*! vue */ 9);function _toConsumableArray(arr) {return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();}function _nonIterableSpread() {throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}function _unsupportedIterableToArray(o, minLen) {if (!o) return;if (typeof o === "string") return _arrayLikeToArray(o, minLen);var n = Object.prototype.toString.call(o).slice(8, -1);if (n === "Object" && o.constructor) n = o.constructor.name;if (n === "Map" || n === "Set") return Array.from(o);if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);}function _iterableToArray(iter) {if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);}function _arrayWithoutHoles(arr) {if (Array.isArray(arr)) return _arrayLikeToArray(arr);}function _arrayLikeToArray(arr, len) {if (len == null || len > arr.length) len = arr.length;for (var i = 0, arr2 = new Array(len); i < len; i++) {arr2[i] = arr[i];}return arr2;}function _defineProperty(obj, key, value) {if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}
|
|
|
|
//App
|
|
var ON_LAUNCH = 'onLaunch';
|
|
|
|
wx.appLaunchHooks = [];
|
|
function onAppLaunch(hook) {
|
|
var app = getApp({ allowDefault: true });
|
|
if (app && app.$vm) {
|
|
return (0, _vue.injectHook)(ON_LAUNCH, hook, app.$vm.$);
|
|
}
|
|
wx.appLaunchHooks.push(hook);
|
|
}
|
|
|
|
function getBaseSystemInfo() {
|
|
return wx.getSystemInfoSync();
|
|
}
|
|
|
|
function validateProtocolFail(name, msg) {
|
|
console.warn("".concat(name, ": ").concat(msg));
|
|
}
|
|
function validateProtocol(name, data, protocol, onFail) {
|
|
if (!onFail) {
|
|
onFail = validateProtocolFail;
|
|
}
|
|
for (var key in protocol) {
|
|
var errMsg = validateProp(key, data[key], protocol[key], !(0, _shared.hasOwn)(data, key));
|
|
if ((0, _shared.isString)(errMsg)) {
|
|
onFail(name, errMsg);
|
|
}
|
|
}
|
|
}
|
|
function validateProtocols(name, args, protocol, onFail) {
|
|
if (!protocol) {
|
|
return;
|
|
}
|
|
if (!(0, _shared.isArray)(protocol)) {
|
|
return validateProtocol(name, args[0] || Object.create(null), protocol, onFail);
|
|
}
|
|
var len = protocol.length;
|
|
var argsLen = args.length;
|
|
for (var i = 0; i < len; i++) {
|
|
var opts = protocol[i];
|
|
var data = Object.create(null);
|
|
if (argsLen > i) {
|
|
data[opts.name] = args[i];
|
|
}
|
|
validateProtocol(name, data, _defineProperty({}, opts.name, opts), onFail);
|
|
}
|
|
}
|
|
function validateProp(name, value, prop, isAbsent) {
|
|
if (!(0, _shared.isPlainObject)(prop)) {
|
|
prop = { type: prop };
|
|
}var _prop =
|
|
prop,type = _prop.type,required = _prop.required,validator = _prop.validator;
|
|
// required!
|
|
if (required && isAbsent) {
|
|
return 'Missing required args: "' + name + '"';
|
|
}
|
|
// missing but optional
|
|
if (value == null && !required) {
|
|
return;
|
|
}
|
|
// type check
|
|
if (type != null) {
|
|
var isValid = false;
|
|
var types = (0, _shared.isArray)(type) ? type : [type];
|
|
var expectedTypes = [];
|
|
// value is valid as long as one of the specified types match
|
|
for (var i = 0; i < types.length && !isValid; i++) {var _assertType =
|
|
assertType(value, types[i]),valid = _assertType.valid,expectedType = _assertType.expectedType;
|
|
expectedTypes.push(expectedType || '');
|
|
isValid = valid;
|
|
}
|
|
if (!isValid) {
|
|
return getInvalidTypeMessage(name, value, expectedTypes);
|
|
}
|
|
}
|
|
// custom validator
|
|
if (validator) {
|
|
return validator(value);
|
|
}
|
|
}
|
|
var isSimpleType = /*#__PURE__*/(0, _shared.makeMap)('String,Number,Boolean,Function,Symbol');
|
|
function assertType(value, type) {
|
|
var valid;
|
|
var expectedType = getType(type);
|
|
if (isSimpleType(expectedType)) {
|
|
var t = typeof value;
|
|
valid = t === expectedType.toLowerCase();
|
|
// for primitive wrapper objects
|
|
if (!valid && t === 'object') {
|
|
valid = value instanceof type;
|
|
}
|
|
} else
|
|
if (expectedType === 'Object') {
|
|
valid = (0, _shared.isObject)(value);
|
|
} else
|
|
if (expectedType === 'Array') {
|
|
valid = (0, _shared.isArray)(value);
|
|
} else
|
|
{
|
|
{
|
|
valid = value instanceof type;
|
|
}
|
|
}
|
|
return {
|
|
valid: valid,
|
|
expectedType: expectedType };
|
|
|
|
}
|
|
function getInvalidTypeMessage(name, value, expectedTypes) {
|
|
var message = "Invalid args: type check failed for args \"".concat(name, "\".") + " Expected ".concat(
|
|
expectedTypes.map(_shared.capitalize).join(', '));
|
|
var expectedType = expectedTypes[0];
|
|
var receivedType = (0, _shared.toRawType)(value);
|
|
var expectedValue = styleValue(value, expectedType);
|
|
var receivedValue = styleValue(value, receivedType);
|
|
// check if we need to specify expected value
|
|
if (expectedTypes.length === 1 &&
|
|
isExplicable(expectedType) &&
|
|
!isBoolean(expectedType, receivedType)) {
|
|
message += " with value ".concat(expectedValue);
|
|
}
|
|
message += ", got ".concat(receivedType, " ");
|
|
// check if we need to specify received value
|
|
if (isExplicable(receivedType)) {
|
|
message += "with value ".concat(receivedValue, ".");
|
|
}
|
|
return message;
|
|
}
|
|
function getType(ctor) {
|
|
var match = ctor && ctor.toString().match(/^\s*function (\w+)/);
|
|
return match ? match[1] : '';
|
|
}
|
|
function styleValue(value, type) {
|
|
if (type === 'String') {
|
|
return "\"".concat(value, "\"");
|
|
} else
|
|
if (type === 'Number') {
|
|
return "".concat(Number(value));
|
|
} else
|
|
{
|
|
return "".concat(value);
|
|
}
|
|
}
|
|
function isExplicable(type) {
|
|
var explicitTypes = ['string', 'number', 'boolean'];
|
|
return explicitTypes.some(function (elem) {return type.toLowerCase() === elem;});
|
|
}
|
|
function isBoolean() {for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {args[_key] = arguments[_key];}
|
|
return args.some(function (elem) {return elem.toLowerCase() === 'boolean';});
|
|
}
|
|
|
|
var HOOK_SUCCESS = 'success';
|
|
var HOOK_FAIL = 'fail';
|
|
var HOOK_COMPLETE = 'complete';
|
|
var globalInterceptors = {};
|
|
var scopedInterceptors = {};
|
|
function wrapperHook(hook) {
|
|
return function (data) {
|
|
return hook(data) || data;
|
|
};
|
|
}
|
|
function queue(hooks, data) {
|
|
var promise = false;
|
|
for (var i = 0; i < hooks.length; i++) {
|
|
var hook = hooks[i];
|
|
if (promise) {
|
|
promise = Promise.resolve(wrapperHook(hook));
|
|
} else
|
|
{
|
|
var res = hook(data);
|
|
if ((0, _shared.isPromise)(res)) {
|
|
promise = Promise.resolve(res);
|
|
}
|
|
if (res === false) {
|
|
return {
|
|
then: function then() {},
|
|
catch: function _catch() {} };
|
|
|
|
}
|
|
}
|
|
}
|
|
return promise || {
|
|
then: function then(callback) {
|
|
return callback(data);
|
|
},
|
|
catch: function _catch() {} };
|
|
|
|
}
|
|
function wrapperOptions(interceptors) {var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
[HOOK_SUCCESS, HOOK_FAIL, HOOK_COMPLETE].forEach(function (name) {
|
|
var hooks = interceptors[name];
|
|
if (!(0, _shared.isArray)(hooks)) {
|
|
return;
|
|
}
|
|
var oldCallback = options[name];
|
|
options[name] = function callbackInterceptor(res) {
|
|
queue(hooks, res).then(function (res) {
|
|
return (0, _shared.isFunction)(oldCallback) && oldCallback(res) || res;
|
|
});
|
|
};
|
|
});
|
|
return options;
|
|
}
|
|
function wrapperReturnValue(method, returnValue) {
|
|
var returnValueHooks = [];
|
|
if ((0, _shared.isArray)(globalInterceptors.returnValue)) {
|
|
returnValueHooks.push.apply(returnValueHooks, _toConsumableArray(globalInterceptors.returnValue));
|
|
}
|
|
var interceptor = scopedInterceptors[method];
|
|
if (interceptor && (0, _shared.isArray)(interceptor.returnValue)) {
|
|
returnValueHooks.push.apply(returnValueHooks, _toConsumableArray(interceptor.returnValue));
|
|
}
|
|
returnValueHooks.forEach(function (hook) {
|
|
returnValue = hook(returnValue) || returnValue;
|
|
});
|
|
return returnValue;
|
|
}
|
|
function getApiInterceptorHooks(method) {
|
|
var interceptor = Object.create(null);
|
|
Object.keys(globalInterceptors).forEach(function (hook) {
|
|
if (hook !== 'returnValue') {
|
|
interceptor[hook] = globalInterceptors[hook].slice();
|
|
}
|
|
});
|
|
var scopedInterceptor = scopedInterceptors[method];
|
|
if (scopedInterceptor) {
|
|
Object.keys(scopedInterceptor).forEach(function (hook) {
|
|
if (hook !== 'returnValue') {
|
|
interceptor[hook] = (interceptor[hook] || []).concat(scopedInterceptor[hook]);
|
|
}
|
|
});
|
|
}
|
|
return interceptor;
|
|
}
|
|
function invokeApi(method, api, options) {for (var _len2 = arguments.length, params = new Array(_len2 > 3 ? _len2 - 3 : 0), _key2 = 3; _key2 < _len2; _key2++) {params[_key2 - 3] = arguments[_key2];}
|
|
var interceptor = getApiInterceptorHooks(method);
|
|
if (interceptor && Object.keys(interceptor).length) {
|
|
if ((0, _shared.isArray)(interceptor.invoke)) {
|
|
var res = queue(interceptor.invoke, options);
|
|
return res.then(function (options) {
|
|
return api.apply(void 0, [wrapperOptions(interceptor, options)].concat(params));
|
|
});
|
|
} else
|
|
{
|
|
return api.apply(void 0, [wrapperOptions(interceptor, options)].concat(params));
|
|
}
|
|
}
|
|
return api.apply(void 0, [options].concat(params));
|
|
}
|
|
|
|
function handlePromise(promise) {
|
|
if (false) {}
|
|
return promise;
|
|
}
|
|
|
|
function formatApiArgs(args, options) {
|
|
var params = args[0];
|
|
if (!options ||
|
|
!(0, _shared.isPlainObject)(options.formatArgs) && (0, _shared.isPlainObject)(params)) {
|
|
return;
|
|
}
|
|
var formatArgs = options.formatArgs;
|
|
var keys = Object.keys(formatArgs);
|
|
for (var i = 0; i < keys.length; i++) {
|
|
var name = keys[i];
|
|
var formatterOrDefaultValue = formatArgs[name];
|
|
if ((0, _shared.isFunction)(formatterOrDefaultValue)) {
|
|
var errMsg = formatterOrDefaultValue(args[0][name], params);
|
|
if ((0, _shared.isString)(errMsg)) {
|
|
return errMsg;
|
|
}
|
|
} else
|
|
{
|
|
// defaultValue
|
|
if (!(0, _shared.hasOwn)(params, name)) {
|
|
params[name] = formatterOrDefaultValue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function beforeInvokeApi(name, args, protocol, options) {
|
|
if (true) {
|
|
validateProtocols(name, args, protocol);
|
|
}
|
|
if (options && options.beforeInvoke) {
|
|
var _errMsg = options.beforeInvoke(args);
|
|
if ((0, _shared.isString)(_errMsg)) {
|
|
return _errMsg;
|
|
}
|
|
}
|
|
var errMsg = formatApiArgs(args, options);
|
|
if (errMsg) {
|
|
return errMsg;
|
|
}
|
|
}
|
|
function wrapperSyncApi(name, fn, protocol, options) {
|
|
return function () {for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {args[_key3] = arguments[_key3];}
|
|
var errMsg = beforeInvokeApi(name, args, protocol, options);
|
|
if (errMsg) {
|
|
throw new Error(errMsg);
|
|
}
|
|
return fn.apply(null, args);
|
|
};
|
|
}
|
|
function defineSyncApi(name, fn, protocol, options) {
|
|
return wrapperSyncApi(name, fn, true ? protocol : undefined, options);
|
|
}
|
|
|
|
var API_UPX2PX = 'upx2px';
|
|
var Upx2pxProtocol = [
|
|
{
|
|
name: 'upx',
|
|
type: [Number, String],
|
|
required: true }];
|
|
|
|
|
|
|
|
var EPS = 1e-4;
|
|
var BASE_DEVICE_WIDTH = 750;
|
|
var isIOS = false;
|
|
var deviceWidth = 0;
|
|
var deviceDPR = 0;
|
|
function checkDeviceWidth() {var _getBaseSystemInfo =
|
|
getBaseSystemInfo(),platform = _getBaseSystemInfo.platform,pixelRatio = _getBaseSystemInfo.pixelRatio,windowWidth = _getBaseSystemInfo.windowWidth;
|
|
deviceWidth = windowWidth;
|
|
deviceDPR = pixelRatio;
|
|
isIOS = platform === 'ios';
|
|
}
|
|
var upx2px = defineSyncApi(API_UPX2PX, function (number, newDeviceWidth) {
|
|
if (deviceWidth === 0) {
|
|
checkDeviceWidth();
|
|
}
|
|
number = Number(number);
|
|
if (number === 0) {
|
|
return 0;
|
|
}
|
|
var width = newDeviceWidth || deviceWidth;
|
|
var result = number / BASE_DEVICE_WIDTH * width;
|
|
if (result < 0) {
|
|
result = -result;
|
|
}
|
|
result = Math.floor(result + EPS);
|
|
if (result === 0) {
|
|
if (deviceDPR === 1 || !isIOS) {
|
|
result = 1;
|
|
} else
|
|
{
|
|
result = 0.5;
|
|
}
|
|
}
|
|
return number < 0 ? -result : result;
|
|
}, Upx2pxProtocol);
|
|
|
|
var API_ADD_INTERCEPTOR = 'addInterceptor';
|
|
var API_REMOVE_INTERCEPTOR = 'removeInterceptor';
|
|
var AddInterceptorProtocol = [
|
|
{
|
|
name: 'method',
|
|
type: [String, Object],
|
|
required: true }];
|
|
|
|
|
|
var RemoveInterceptorProtocol = AddInterceptorProtocol;
|
|
|
|
function mergeInterceptorHook(interceptors, interceptor) {
|
|
Object.keys(interceptor).forEach(function (hook) {
|
|
if ((0, _shared.isFunction)(interceptor[hook])) {
|
|
interceptors[hook] = mergeHook(interceptors[hook], interceptor[hook]);
|
|
}
|
|
});
|
|
}
|
|
function removeInterceptorHook(interceptors, interceptor) {
|
|
if (!interceptors || !interceptor) {
|
|
return;
|
|
}
|
|
Object.keys(interceptor).forEach(function (hook) {
|
|
if ((0, _shared.isFunction)(interceptor[hook])) {
|
|
removeHook(interceptors[hook], interceptor[hook]);
|
|
}
|
|
});
|
|
}
|
|
function mergeHook(parentVal, childVal) {
|
|
var res = childVal ?
|
|
parentVal ?
|
|
parentVal.concat(childVal) :
|
|
(0, _shared.isArray)(childVal) ?
|
|
childVal :
|
|
[childVal] :
|
|
parentVal;
|
|
return res ? dedupeHooks(res) : res;
|
|
}
|
|
function dedupeHooks(hooks) {
|
|
var res = [];
|
|
for (var i = 0; i < hooks.length; i++) {
|
|
if (res.indexOf(hooks[i]) === -1) {
|
|
res.push(hooks[i]);
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
function removeHook(hooks, hook) {
|
|
if (!hooks) {
|
|
return;
|
|
}
|
|
var index = hooks.indexOf(hook);
|
|
if (index !== -1) {
|
|
hooks.splice(index, 1);
|
|
}
|
|
}
|
|
var addInterceptor = defineSyncApi(API_ADD_INTERCEPTOR, function (method, interceptor) {
|
|
if (typeof method === 'string' && (0, _shared.isPlainObject)(interceptor)) {
|
|
mergeInterceptorHook(scopedInterceptors[method] || (scopedInterceptors[method] = {}), interceptor);
|
|
} else
|
|
if ((0, _shared.isPlainObject)(method)) {
|
|
mergeInterceptorHook(globalInterceptors, method);
|
|
}
|
|
}, AddInterceptorProtocol);
|
|
var removeInterceptor = defineSyncApi(API_REMOVE_INTERCEPTOR, function (method, interceptor) {
|
|
if (typeof method === 'string') {
|
|
if ((0, _shared.isPlainObject)(interceptor)) {
|
|
removeInterceptorHook(scopedInterceptors[method], interceptor);
|
|
} else
|
|
{
|
|
delete scopedInterceptors[method];
|
|
}
|
|
} else
|
|
if ((0, _shared.isPlainObject)(method)) {
|
|
removeInterceptorHook(globalInterceptors, method);
|
|
}
|
|
}, RemoveInterceptorProtocol);
|
|
var interceptors = {};
|
|
|
|
var API_ON = '$on';
|
|
var OnProtocol = [
|
|
{
|
|
name: 'event',
|
|
type: String,
|
|
required: true },
|
|
|
|
{
|
|
name: 'callback',
|
|
type: Function,
|
|
required: true }];
|
|
|
|
|
|
var API_ONCE = '$once';
|
|
var OnceProtocol = OnProtocol;
|
|
var API_OFF = '$off';
|
|
var OffProtocol = [
|
|
{
|
|
name: 'event',
|
|
type: [String, Array] },
|
|
|
|
{
|
|
name: 'callback',
|
|
type: Function }];
|
|
|
|
|
|
var API_EMIT = '$emit';
|
|
var EmitProtocol = [
|
|
{
|
|
name: 'event',
|
|
type: String,
|
|
required: true }];
|
|
|
|
|
|
|
|
var E = function E() {
|
|
// Keep this empty so it's easier to inherit from
|
|
// (via https://github.com/lipsmack from https://github.com/scottcorgan/tiny-emitter/issues/3)
|
|
};
|
|
E.prototype = {
|
|
on: function on(name, callback, ctx) {
|
|
var e = this.e || (this.e = {});
|
|
(e[name] || (e[name] = [])).push({
|
|
fn: callback,
|
|
ctx: ctx });
|
|
|
|
return this;
|
|
},
|
|
once: function once(name, callback, ctx) {
|
|
var self = this;
|
|
function listener() {
|
|
self.off(name, listener);
|
|
callback.apply(ctx, arguments);
|
|
}
|
|
listener._ = callback;
|
|
return this.on(name, listener, ctx);
|
|
},
|
|
emit: function emit(name) {
|
|
var data = [].slice.call(arguments, 1);
|
|
var evtArr = ((this.e || (this.e = {}))[name] || []).slice();
|
|
var i = 0;
|
|
var len = evtArr.length;
|
|
for (i; i < len; i++) {
|
|
evtArr[i].fn.apply(evtArr[i].ctx, data);
|
|
}
|
|
return this;
|
|
},
|
|
off: function off(name, callback) {
|
|
var e = this.e || (this.e = {});
|
|
var evts = e[name];
|
|
var liveEvents = [];
|
|
if (evts && callback) {
|
|
for (var i = 0, len = evts.length; i < len; i++) {
|
|
if (evts[i].fn !== callback && evts[i].fn._ !== callback)
|
|
liveEvents.push(evts[i]);
|
|
}
|
|
}
|
|
// Remove event from queue to prevent memory leak
|
|
// Suggested by https://github.com/lazd
|
|
// Ref: https://github.com/scottcorgan/tiny-emitter/commit/c6ebfaa9bc973b33d110a84a307742b7cf94c953#commitcomment-5024910
|
|
liveEvents.length ? e[name] = liveEvents : delete e[name];
|
|
return this;
|
|
} };
|
|
|
|
var Emitter = E;
|
|
|
|
var emitter = new Emitter();
|
|
var $on = defineSyncApi(API_ON, function (name, callback) {
|
|
emitter.on(name, callback);
|
|
return function () {return emitter.off(name, callback);};
|
|
}, OnProtocol);
|
|
var $once = defineSyncApi(API_ONCE, function (name, callback) {
|
|
emitter.once(name, callback);
|
|
return function () {return emitter.off(name, callback);};
|
|
}, OnceProtocol);
|
|
var $off = defineSyncApi(API_OFF, function (name, callback) {
|
|
if (!name) {
|
|
emitter.e = {};
|
|
return;
|
|
}
|
|
if (!Array.isArray(name))
|
|
name = [name];
|
|
name.forEach(function (n) {return emitter.off(n, callback);});
|
|
}, OffProtocol);
|
|
var $emit = defineSyncApi(API_EMIT, function (name) {for (var _len4 = arguments.length, args = new Array(_len4 > 1 ? _len4 - 1 : 0), _key4 = 1; _key4 < _len4; _key4++) {args[_key4 - 1] = arguments[_key4];}
|
|
emitter.emit.apply(emitter, [name].concat(args));
|
|
}, EmitProtocol);
|
|
|
|
var SYNC_API_RE = /^\$|getLocale|setLocale|sendNativeEvent|restoreGlobal|getCurrentSubNVue|getMenuButtonBoundingClientRect|^report|interceptors|Interceptor$|getSubNVueById|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/;
|
|
var CONTEXT_API_RE = /^create|Manager$/;
|
|
// Context例外情况
|
|
var CONTEXT_API_RE_EXC = ['createBLEConnection'];
|
|
// 同步例外情况
|
|
var ASYNC_API = ['createBLEConnection'];
|
|
var CALLBACK_API_RE = /^on|^off/;
|
|
function isContextApi(name) {
|
|
return CONTEXT_API_RE.test(name) && CONTEXT_API_RE_EXC.indexOf(name) === -1;
|
|
}
|
|
function isSyncApi(name) {
|
|
return SYNC_API_RE.test(name) && ASYNC_API.indexOf(name) === -1;
|
|
}
|
|
function isCallbackApi(name) {
|
|
return CALLBACK_API_RE.test(name) && name !== 'onPush';
|
|
}
|
|
function shouldPromise(name) {
|
|
if (isContextApi(name) || isSyncApi(name) || isCallbackApi(name)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
/* eslint-disable no-extend-native */
|
|
if (!Promise.prototype.finally) {
|
|
Promise.prototype.finally = function (onfinally) {
|
|
var promise = this.constructor;
|
|
return this.then(function (value) {return promise.resolve(onfinally && onfinally()).then(function () {return value;});}, function (reason) {return promise.resolve(onfinally && onfinally()).then(function () {
|
|
throw reason;
|
|
});});
|
|
};
|
|
}
|
|
function promisify(name, api) {
|
|
if (!shouldPromise(name)) {
|
|
return api;
|
|
}
|
|
if (!(0, _shared.isFunction)(api)) {
|
|
return api;
|
|
}
|
|
return function promiseApi() {var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
if ((0, _shared.isFunction)(options.success) ||
|
|
(0, _shared.isFunction)(options.fail) ||
|
|
(0, _shared.isFunction)(options.complete)) {
|
|
return wrapperReturnValue(name, invokeApi(name, api, options));
|
|
}
|
|
return wrapperReturnValue(name, handlePromise(new Promise(function (resolve, reject) {
|
|
invokeApi(name, api, (0, _shared.extend)({}, options, {
|
|
success: resolve,
|
|
fail: reject }));
|
|
|
|
})));
|
|
};
|
|
}
|
|
|
|
var CALLBACKS = ['success', 'fail', 'cancel', 'complete'];
|
|
function initWrapper(protocols) {
|
|
function processCallback(methodName, method, returnValue) {
|
|
return function (res) {
|
|
return method(processReturnValue(methodName, res, returnValue));
|
|
};
|
|
}
|
|
function processArgs(methodName, fromArgs) {var argsOption = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};var returnValue = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};var keepFromArgs = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
|
|
if ((0, _shared.isPlainObject)(fromArgs)) {
|
|
// 一般 api 的参数解析
|
|
var toArgs = keepFromArgs === true ? fromArgs : {}; // returnValue 为 false 时,说明是格式化返回值,直接在返回值对象上修改赋值
|
|
if ((0, _shared.isFunction)(argsOption)) {
|
|
argsOption = argsOption(fromArgs, toArgs) || {};
|
|
}
|
|
for (var key in fromArgs) {
|
|
if ((0, _shared.hasOwn)(argsOption, key)) {
|
|
var keyOption = argsOption[key];
|
|
if ((0, _shared.isFunction)(keyOption)) {
|
|
keyOption = keyOption(fromArgs[key], fromArgs, toArgs);
|
|
}
|
|
if (!keyOption) {
|
|
// 不支持的参数
|
|
console.warn("\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F ".concat(methodName, " \u6682\u4E0D\u652F\u6301 ").concat(key));
|
|
} else
|
|
if ((0, _shared.isString)(keyOption)) {
|
|
// 重写参数 key
|
|
toArgs[keyOption] = fromArgs[key];
|
|
} else
|
|
if ((0, _shared.isPlainObject)(keyOption)) {
|
|
// {name:newName,value:value}可重新指定参数 key:value
|
|
toArgs[keyOption.name ? keyOption.name : key] = keyOption.value;
|
|
}
|
|
} else
|
|
if (CALLBACKS.indexOf(key) !== -1) {
|
|
var callback = fromArgs[key];
|
|
if ((0, _shared.isFunction)(callback)) {
|
|
toArgs[key] = processCallback(methodName, callback, returnValue);
|
|
}
|
|
} else
|
|
{
|
|
if (!keepFromArgs && !(0, _shared.hasOwn)(toArgs, key)) {
|
|
toArgs[key] = fromArgs[key];
|
|
}
|
|
}
|
|
}
|
|
return toArgs;
|
|
} else
|
|
if ((0, _shared.isFunction)(fromArgs)) {
|
|
fromArgs = processCallback(methodName, fromArgs, returnValue);
|
|
}
|
|
return fromArgs;
|
|
}
|
|
function processReturnValue(methodName, res, returnValue) {var keepReturnValue = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
|
|
if ((0, _shared.isFunction)(protocols.returnValue)) {
|
|
// 处理通用 returnValue
|
|
res = protocols.returnValue(methodName, res);
|
|
}
|
|
return processArgs(methodName, res, returnValue, {}, keepReturnValue);
|
|
}
|
|
return function wrapper(methodName, method) {
|
|
if (!(0, _shared.hasOwn)(protocols, methodName)) {
|
|
return method;
|
|
}
|
|
var protocol = protocols[methodName];
|
|
if (!protocol) {
|
|
// 暂不支持的 api
|
|
return function () {
|
|
console.error("\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F \u6682\u4E0D\u652F\u6301".concat(methodName));
|
|
};
|
|
}
|
|
return function (arg1, arg2) {
|
|
// 目前 api 最多两个参数
|
|
var options = protocol;
|
|
if ((0, _shared.isFunction)(protocol)) {
|
|
options = protocol(arg1);
|
|
}
|
|
arg1 = processArgs(methodName, arg1, options.args, options.returnValue);
|
|
var args = [arg1];
|
|
if (typeof arg2 !== 'undefined') {
|
|
args.push(arg2);
|
|
}
|
|
var returnValue = wx[options.name || methodName].apply(wx, args);
|
|
if (isSyncApi(methodName)) {
|
|
// 同步 api
|
|
return processReturnValue(methodName, returnValue, options.returnValue, isContextApi(methodName));
|
|
}
|
|
return returnValue;
|
|
};
|
|
};
|
|
}
|
|
|
|
var getLocale = function getLocale() {
|
|
// 优先使用 $locale
|
|
var app = getApp({ allowDefault: true });
|
|
if (app && app.$vm) {
|
|
return app.$vm.$locale;
|
|
}
|
|
return wx.getSystemInfoSync().language || 'zh-Hans';
|
|
};
|
|
var setLocale = function setLocale(locale) {
|
|
var app = getApp();
|
|
if (!app) {
|
|
return false;
|
|
}
|
|
var oldLocale = app.$vm.$locale;
|
|
if (oldLocale !== locale) {
|
|
app.$vm.$locale = locale;
|
|
onLocaleChangeCallbacks.forEach(function (fn) {return fn({ locale: locale });});
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
var onLocaleChangeCallbacks = [];
|
|
var onLocaleChange = function onLocaleChange(fn) {
|
|
if (onLocaleChangeCallbacks.indexOf(fn) === -1) {
|
|
onLocaleChangeCallbacks.push(fn);
|
|
}
|
|
};
|
|
if (typeof global !== 'undefined') {
|
|
global.getLocale = getLocale;
|
|
}
|
|
|
|
var baseApis = {
|
|
$on: $on,
|
|
$off: $off,
|
|
$once: $once,
|
|
$emit: $emit,
|
|
upx2px: upx2px,
|
|
interceptors: interceptors,
|
|
addInterceptor: addInterceptor,
|
|
removeInterceptor: removeInterceptor,
|
|
onAppLaunch: onAppLaunch,
|
|
getLocale: getLocale,
|
|
setLocale: setLocale,
|
|
onLocaleChange: onLocaleChange };
|
|
|
|
function initUni(api, protocols) {
|
|
var wrapper = initWrapper(protocols);
|
|
var UniProxyHandlers = {
|
|
get: function get(target, key) {
|
|
if ((0, _shared.hasOwn)(target, key)) {
|
|
return target[key];
|
|
}
|
|
if ((0, _shared.hasOwn)(api, key)) {
|
|
return promisify(key, api[key]);
|
|
}
|
|
if ((0, _shared.hasOwn)(baseApis, key)) {
|
|
return promisify(key, baseApis[key]);
|
|
}
|
|
// event-api
|
|
// provider-api?
|
|
return promisify(key, wrapper(key, wx[key]));
|
|
} };
|
|
|
|
return new Proxy({}, UniProxyHandlers);
|
|
}
|
|
|
|
function initGetProvider(providers) {
|
|
return function getProvider(_ref) {var service = _ref.service,success = _ref.success,fail = _ref.fail,complete = _ref.complete;
|
|
var res;
|
|
if (providers[service]) {
|
|
res = {
|
|
errMsg: 'getProvider:ok',
|
|
service: service,
|
|
provider: providers[service] };
|
|
|
|
(0, _shared.isFunction)(success) && success(res);
|
|
} else
|
|
{
|
|
res = {
|
|
errMsg: 'getProvider:fail:服务[' + service + ']不存在' };
|
|
|
|
(0, _shared.isFunction)(fail) && fail(res);
|
|
}
|
|
(0, _shared.isFunction)(complete) && complete(res);
|
|
};
|
|
}
|
|
|
|
function addSafeAreaInsets(fromRes, toRes) {
|
|
if (fromRes.safeArea) {
|
|
var safeArea = fromRes.safeArea;
|
|
toRes.safeAreaInsets = {
|
|
top: safeArea.top,
|
|
left: safeArea.left,
|
|
right: fromRes.windowWidth - safeArea.right,
|
|
bottom: fromRes.windowHeight - safeArea.bottom };
|
|
|
|
}
|
|
}
|
|
|
|
var getSystemInfo = {
|
|
returnValue: addSafeAreaInsets };
|
|
|
|
|
|
var getSystemInfoSync = getSystemInfo;
|
|
|
|
var redirectTo = {};
|
|
|
|
var previewImage = {
|
|
args: function args(fromArgs, toArgs) {
|
|
var currentIndex = parseInt(fromArgs.current);
|
|
if (isNaN(currentIndex)) {
|
|
return;
|
|
}
|
|
var urls = fromArgs.urls;
|
|
if (!(0, _shared.isArray)(urls)) {
|
|
return;
|
|
}
|
|
var len = urls.length;
|
|
if (!len) {
|
|
return;
|
|
}
|
|
if (currentIndex < 0) {
|
|
currentIndex = 0;
|
|
} else
|
|
if (currentIndex >= len) {
|
|
currentIndex = len - 1;
|
|
}
|
|
if (currentIndex > 0) {
|
|
toArgs.current = urls[currentIndex];
|
|
toArgs.urls = urls.filter(function (item, index) {return index < currentIndex ? item !== urls[currentIndex] : true;});
|
|
} else
|
|
{
|
|
toArgs.current = urls[0];
|
|
}
|
|
return {
|
|
indicator: false,
|
|
loop: false };
|
|
|
|
} };
|
|
|
|
|
|
var getProvider = initGetProvider({
|
|
oauth: ['weixin'],
|
|
share: ['weixin'],
|
|
payment: ['wxpay'],
|
|
push: ['weixin'] });
|
|
|
|
|
|
var shims = /*#__PURE__*/Object.freeze({
|
|
__proto__: null,
|
|
getProvider: getProvider });
|
|
|
|
|
|
var protocols = /*#__PURE__*/Object.freeze({
|
|
__proto__: null,
|
|
redirectTo: redirectTo,
|
|
previewImage: previewImage,
|
|
getSystemInfo: getSystemInfo,
|
|
getSystemInfoSync: getSystemInfoSync });
|
|
|
|
|
|
var index = initUni(shims, protocols);exports.default = index;
|
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../webpack/buildin/global.js */ 11)))
|
|
|
|
/***/ }),
|
|
|
|
/***/ 11:
|
|
/*!***********************************!*\
|
|
!*** (webpack)/buildin/global.js ***!
|
|
\***********************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports) {
|
|
|
|
var g;
|
|
|
|
// This works in non-strict mode
|
|
g = (function() {
|
|
return this;
|
|
})();
|
|
|
|
try {
|
|
// This works if eval is allowed (see CSP)
|
|
g = g || new Function("return this")();
|
|
} catch (e) {
|
|
// This works if the window reference is available
|
|
if (typeof window === "object") g = window;
|
|
}
|
|
|
|
// g can still be undefined, but nothing to do about it...
|
|
// We return undefined, instead of nothing here, so it's
|
|
// easier to handle this case. if(!global) { ...}
|
|
|
|
module.exports = g;
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 12:
|
|
/*!*************************************************************!*\
|
|
!*** ./node_modules/@vue/shared/dist/shared.esm-bundler.js ***!
|
|
\*************************************************************/
|
|
/*! exports provided: EMPTY_ARR, EMPTY_OBJ, NO, NOOP, PatchFlagNames, babelParserDefaultPlugins, camelize, capitalize, def, escapeHtml, escapeHtmlComment, extend, generateCodeFrame, getGlobalThis, hasChanged, hasOwn, hyphenate, includeBooleanAttr, invokeArrayFns, isArray, isBooleanAttr, isDate, isFunction, isGloballyWhitelisted, isHTMLTag, isIntegerKey, isKnownHtmlAttr, isKnownSvgAttr, isMap, isModelListener, isNoUnitNumericStyleProp, isObject, isOn, isPlainObject, isPromise, isReservedProp, isSSRSafeAttrName, isSVGTag, isSet, isSpecialBooleanAttr, isString, isSymbol, isVoidTag, looseEqual, looseIndexOf, makeMap, normalizeClass, normalizeProps, normalizeStyle, objectToString, parseStringStyle, propsToAttrMap, remove, slotFlagsText, stringifyStyle, toDisplayString, toHandlerKey, toNumber, toRawType, toTypeString */
|
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
|
|
"use strict";
|
|
__webpack_require__.r(__webpack_exports__);
|
|
/* WEBPACK VAR INJECTION */(function(global) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EMPTY_ARR", function() { return EMPTY_ARR; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EMPTY_OBJ", function() { return EMPTY_OBJ; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NO", function() { return NO; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NOOP", function() { return NOOP; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PatchFlagNames", function() { return PatchFlagNames; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "babelParserDefaultPlugins", function() { return babelParserDefaultPlugins; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "camelize", function() { return camelize; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "capitalize", function() { return capitalize; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "def", function() { return def; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "escapeHtml", function() { return escapeHtml; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "escapeHtmlComment", function() { return escapeHtmlComment; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "extend", function() { return extend; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "generateCodeFrame", function() { return generateCodeFrame; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getGlobalThis", function() { return getGlobalThis; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hasChanged", function() { return hasChanged; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hasOwn", function() { return hasOwn; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hyphenate", function() { return hyphenate; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "includeBooleanAttr", function() { return includeBooleanAttr; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "invokeArrayFns", function() { return invokeArrayFns; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isArray", function() { return isArray; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isBooleanAttr", function() { return isBooleanAttr; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isDate", function() { return isDate; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isFunction", function() { return isFunction; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isGloballyWhitelisted", function() { return isGloballyWhitelisted; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isHTMLTag", function() { return isHTMLTag; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isIntegerKey", function() { return isIntegerKey; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isKnownHtmlAttr", function() { return isKnownHtmlAttr; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isKnownSvgAttr", function() { return isKnownSvgAttr; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isMap", function() { return isMap; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isModelListener", function() { return isModelListener; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isNoUnitNumericStyleProp", function() { return isNoUnitNumericStyleProp; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isObject", function() { return isObject; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isOn", function() { return isOn; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isPlainObject", function() { return isPlainObject; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isPromise", function() { return isPromise; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isReservedProp", function() { return isReservedProp; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isSSRSafeAttrName", function() { return isSSRSafeAttrName; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isSVGTag", function() { return isSVGTag; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isSet", function() { return isSet; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isSpecialBooleanAttr", function() { return isSpecialBooleanAttr; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isString", function() { return isString; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isSymbol", function() { return isSymbol; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isVoidTag", function() { return isVoidTag; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "looseEqual", function() { return looseEqual; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "looseIndexOf", function() { return looseIndexOf; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "makeMap", function() { return makeMap; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "normalizeClass", function() { return normalizeClass; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "normalizeProps", function() { return normalizeProps; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "normalizeStyle", function() { return normalizeStyle; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "objectToString", function() { return objectToString; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parseStringStyle", function() { return parseStringStyle; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "propsToAttrMap", function() { return propsToAttrMap; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "remove", function() { return remove; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "slotFlagsText", function() { return slotFlagsText; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "stringifyStyle", function() { return stringifyStyle; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toDisplayString", function() { return toDisplayString; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toHandlerKey", function() { return toHandlerKey; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toNumber", function() { return toNumber; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toRawType", function() { return toRawType; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toTypeString", function() { return toTypeString; });
|
|
/**
|
|
* Make a map and return a function for checking if a key
|
|
* is in that map.
|
|
* IMPORTANT: all calls of this function must be prefixed with
|
|
* \/\*#\_\_PURE\_\_\*\/
|
|
* So that rollup can tree-shake them if necessary.
|
|
*/
|
|
function makeMap(str, expectsLowerCase) {
|
|
const map = Object.create(null);
|
|
const list = str.split(',');
|
|
for (let i = 0; i < list.length; i++) {
|
|
map[list[i]] = true;
|
|
}
|
|
return expectsLowerCase ? val => !!map[val.toLowerCase()] : val => !!map[val];
|
|
}
|
|
|
|
/**
|
|
* dev only flag -> name mapping
|
|
*/
|
|
const PatchFlagNames = {
|
|
[1 /* TEXT */]: `TEXT`,
|
|
[2 /* CLASS */]: `CLASS`,
|
|
[4 /* STYLE */]: `STYLE`,
|
|
[8 /* PROPS */]: `PROPS`,
|
|
[16 /* FULL_PROPS */]: `FULL_PROPS`,
|
|
[32 /* HYDRATE_EVENTS */]: `HYDRATE_EVENTS`,
|
|
[64 /* STABLE_FRAGMENT */]: `STABLE_FRAGMENT`,
|
|
[128 /* KEYED_FRAGMENT */]: `KEYED_FRAGMENT`,
|
|
[256 /* UNKEYED_FRAGMENT */]: `UNKEYED_FRAGMENT`,
|
|
[512 /* NEED_PATCH */]: `NEED_PATCH`,
|
|
[1024 /* DYNAMIC_SLOTS */]: `DYNAMIC_SLOTS`,
|
|
[2048 /* DEV_ROOT_FRAGMENT */]: `DEV_ROOT_FRAGMENT`,
|
|
[-1 /* HOISTED */]: `HOISTED`,
|
|
[-2 /* BAIL */]: `BAIL`
|
|
};
|
|
|
|
/**
|
|
* Dev only
|
|
*/
|
|
const slotFlagsText = {
|
|
[1 /* STABLE */]: 'STABLE',
|
|
[2 /* DYNAMIC */]: 'DYNAMIC',
|
|
[3 /* FORWARDED */]: 'FORWARDED'
|
|
};
|
|
|
|
const GLOBALS_WHITE_LISTED = 'Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,' +
|
|
'decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,' +
|
|
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt';
|
|
const isGloballyWhitelisted = /*#__PURE__*/ makeMap(GLOBALS_WHITE_LISTED);
|
|
|
|
const range = 2;
|
|
function generateCodeFrame(source, start = 0, end = source.length) {
|
|
// Split the content into individual lines but capture the newline sequence
|
|
// that separated each line. This is important because the actual sequence is
|
|
// needed to properly take into account the full line length for offset
|
|
// comparison
|
|
let lines = source.split(/(\r?\n)/);
|
|
// Separate the lines and newline sequences into separate arrays for easier referencing
|
|
const newlineSequences = lines.filter((_, idx) => idx % 2 === 1);
|
|
lines = lines.filter((_, idx) => idx % 2 === 0);
|
|
let count = 0;
|
|
const res = [];
|
|
for (let i = 0; i < lines.length; i++) {
|
|
count +=
|
|
lines[i].length +
|
|
((newlineSequences[i] && newlineSequences[i].length) || 0);
|
|
if (count >= start) {
|
|
for (let j = i - range; j <= i + range || end > count; j++) {
|
|
if (j < 0 || j >= lines.length)
|
|
continue;
|
|
const line = j + 1;
|
|
res.push(`${line}${' '.repeat(Math.max(3 - String(line).length, 0))}| ${lines[j]}`);
|
|
const lineLength = lines[j].length;
|
|
const newLineSeqLength = (newlineSequences[j] && newlineSequences[j].length) || 0;
|
|
if (j === i) {
|
|
// push underline
|
|
const pad = start - (count - (lineLength + newLineSeqLength));
|
|
const length = Math.max(1, end > count ? lineLength - pad : end - start);
|
|
res.push(` | ` + ' '.repeat(pad) + '^'.repeat(length));
|
|
}
|
|
else if (j > i) {
|
|
if (end > count) {
|
|
const length = Math.max(Math.min(end - count, lineLength), 1);
|
|
res.push(` | ` + '^'.repeat(length));
|
|
}
|
|
count += lineLength + newLineSeqLength;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return res.join('\n');
|
|
}
|
|
|
|
/**
|
|
* On the client we only need to offer special cases for boolean attributes that
|
|
* have different names from their corresponding dom properties:
|
|
* - itemscope -> N/A
|
|
* - allowfullscreen -> allowFullscreen
|
|
* - formnovalidate -> formNoValidate
|
|
* - ismap -> isMap
|
|
* - nomodule -> noModule
|
|
* - novalidate -> noValidate
|
|
* - readonly -> readOnly
|
|
*/
|
|
const specialBooleanAttrs = `itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly`;
|
|
const isSpecialBooleanAttr = /*#__PURE__*/ makeMap(specialBooleanAttrs);
|
|
/**
|
|
* The full list is needed during SSR to produce the correct initial markup.
|
|
*/
|
|
const isBooleanAttr = /*#__PURE__*/ makeMap(specialBooleanAttrs +
|
|
`,async,autofocus,autoplay,controls,default,defer,disabled,hidden,` +
|
|
`loop,open,required,reversed,scoped,seamless,` +
|
|
`checked,muted,multiple,selected`);
|
|
/**
|
|
* Boolean attributes should be included if the value is truthy or ''.
|
|
* e.g. <select multiple> compiles to { multiple: '' }
|
|
*/
|
|
function includeBooleanAttr(value) {
|
|
return !!value || value === '';
|
|
}
|
|
const unsafeAttrCharRE = /[>/="'\u0009\u000a\u000c\u0020]/;
|
|
const attrValidationCache = {};
|
|
function isSSRSafeAttrName(name) {
|
|
if (attrValidationCache.hasOwnProperty(name)) {
|
|
return attrValidationCache[name];
|
|
}
|
|
const isUnsafe = unsafeAttrCharRE.test(name);
|
|
if (isUnsafe) {
|
|
console.error(`unsafe attribute name: ${name}`);
|
|
}
|
|
return (attrValidationCache[name] = !isUnsafe);
|
|
}
|
|
const propsToAttrMap = {
|
|
acceptCharset: 'accept-charset',
|
|
className: 'class',
|
|
htmlFor: 'for',
|
|
httpEquiv: 'http-equiv'
|
|
};
|
|
/**
|
|
* CSS properties that accept plain numbers
|
|
*/
|
|
const isNoUnitNumericStyleProp = /*#__PURE__*/ makeMap(`animation-iteration-count,border-image-outset,border-image-slice,` +
|
|
`border-image-width,box-flex,box-flex-group,box-ordinal-group,column-count,` +
|
|
`columns,flex,flex-grow,flex-positive,flex-shrink,flex-negative,flex-order,` +
|
|
`grid-row,grid-row-end,grid-row-span,grid-row-start,grid-column,` +
|
|
`grid-column-end,grid-column-span,grid-column-start,font-weight,line-clamp,` +
|
|
`line-height,opacity,order,orphans,tab-size,widows,z-index,zoom,` +
|
|
// SVG
|
|
`fill-opacity,flood-opacity,stop-opacity,stroke-dasharray,stroke-dashoffset,` +
|
|
`stroke-miterlimit,stroke-opacity,stroke-width`);
|
|
/**
|
|
* Known attributes, this is used for stringification of runtime static nodes
|
|
* so that we don't stringify bindings that cannot be set from HTML.
|
|
* Don't also forget to allow `data-*` and `aria-*`!
|
|
* Generated from https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes
|
|
*/
|
|
const isKnownHtmlAttr = /*#__PURE__*/ makeMap(`accept,accept-charset,accesskey,action,align,allow,alt,async,` +
|
|
`autocapitalize,autocomplete,autofocus,autoplay,background,bgcolor,` +
|
|
`border,buffered,capture,challenge,charset,checked,cite,class,code,` +
|
|
`codebase,color,cols,colspan,content,contenteditable,contextmenu,controls,` +
|
|
`coords,crossorigin,csp,data,datetime,decoding,default,defer,dir,dirname,` +
|
|
`disabled,download,draggable,dropzone,enctype,enterkeyhint,for,form,` +
|
|
`formaction,formenctype,formmethod,formnovalidate,formtarget,headers,` +
|
|
`height,hidden,high,href,hreflang,http-equiv,icon,id,importance,integrity,` +
|
|
`ismap,itemprop,keytype,kind,label,lang,language,loading,list,loop,low,` +
|
|
`manifest,max,maxlength,minlength,media,min,multiple,muted,name,novalidate,` +
|
|
`open,optimum,pattern,ping,placeholder,poster,preload,radiogroup,readonly,` +
|
|
`referrerpolicy,rel,required,reversed,rows,rowspan,sandbox,scope,scoped,` +
|
|
`selected,shape,size,sizes,slot,span,spellcheck,src,srcdoc,srclang,srcset,` +
|
|
`start,step,style,summary,tabindex,target,title,translate,type,usemap,` +
|
|
`value,width,wrap`);
|
|
/**
|
|
* Generated from https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute
|
|
*/
|
|
const isKnownSvgAttr = /*#__PURE__*/ makeMap(`xmlns,accent-height,accumulate,additive,alignment-baseline,alphabetic,amplitude,` +
|
|
`arabic-form,ascent,attributeName,attributeType,azimuth,baseFrequency,` +
|
|
`baseline-shift,baseProfile,bbox,begin,bias,by,calcMode,cap-height,class,` +
|
|
`clip,clipPathUnits,clip-path,clip-rule,color,color-interpolation,` +
|
|
`color-interpolation-filters,color-profile,color-rendering,` +
|
|
`contentScriptType,contentStyleType,crossorigin,cursor,cx,cy,d,decelerate,` +
|
|
`descent,diffuseConstant,direction,display,divisor,dominant-baseline,dur,dx,` +
|
|
`dy,edgeMode,elevation,enable-background,end,exponent,fill,fill-opacity,` +
|
|
`fill-rule,filter,filterRes,filterUnits,flood-color,flood-opacity,` +
|
|
`font-family,font-size,font-size-adjust,font-stretch,font-style,` +
|
|
`font-variant,font-weight,format,from,fr,fx,fy,g1,g2,glyph-name,` +
|
|
`glyph-orientation-horizontal,glyph-orientation-vertical,glyphRef,` +
|
|
`gradientTransform,gradientUnits,hanging,height,href,hreflang,horiz-adv-x,` +
|
|
`horiz-origin-x,id,ideographic,image-rendering,in,in2,intercept,k,k1,k2,k3,` +
|
|
`k4,kernelMatrix,kernelUnitLength,kerning,keyPoints,keySplines,keyTimes,` +
|
|
`lang,lengthAdjust,letter-spacing,lighting-color,limitingConeAngle,local,` +
|
|
`marker-end,marker-mid,marker-start,markerHeight,markerUnits,markerWidth,` +
|
|
`mask,maskContentUnits,maskUnits,mathematical,max,media,method,min,mode,` +
|
|
`name,numOctaves,offset,opacity,operator,order,orient,orientation,origin,` +
|
|
`overflow,overline-position,overline-thickness,panose-1,paint-order,path,` +
|
|
`pathLength,patternContentUnits,patternTransform,patternUnits,ping,` +
|
|
`pointer-events,points,pointsAtX,pointsAtY,pointsAtZ,preserveAlpha,` +
|
|
`preserveAspectRatio,primitiveUnits,r,radius,referrerPolicy,refX,refY,rel,` +
|
|
`rendering-intent,repeatCount,repeatDur,requiredExtensions,requiredFeatures,` +
|
|
`restart,result,rotate,rx,ry,scale,seed,shape-rendering,slope,spacing,` +
|
|
`specularConstant,specularExponent,speed,spreadMethod,startOffset,` +
|
|
`stdDeviation,stemh,stemv,stitchTiles,stop-color,stop-opacity,` +
|
|
`strikethrough-position,strikethrough-thickness,string,stroke,` +
|
|
`stroke-dasharray,stroke-dashoffset,stroke-linecap,stroke-linejoin,` +
|
|
`stroke-miterlimit,stroke-opacity,stroke-width,style,surfaceScale,` +
|
|
`systemLanguage,tabindex,tableValues,target,targetX,targetY,text-anchor,` +
|
|
`text-decoration,text-rendering,textLength,to,transform,transform-origin,` +
|
|
`type,u1,u2,underline-position,underline-thickness,unicode,unicode-bidi,` +
|
|
`unicode-range,units-per-em,v-alphabetic,v-hanging,v-ideographic,` +
|
|
`v-mathematical,values,vector-effect,version,vert-adv-y,vert-origin-x,` +
|
|
`vert-origin-y,viewBox,viewTarget,visibility,width,widths,word-spacing,` +
|
|
`writing-mode,x,x-height,x1,x2,xChannelSelector,xlink:actuate,xlink:arcrole,` +
|
|
`xlink:href,xlink:role,xlink:show,xlink:title,xlink:type,xml:base,xml:lang,` +
|
|
`xml:space,y,y1,y2,yChannelSelector,z,zoomAndPan`);
|
|
|
|
function normalizeStyle(value) {
|
|
if (isArray(value)) {
|
|
const res = {};
|
|
for (let i = 0; i < value.length; i++) {
|
|
const item = value[i];
|
|
const normalized = isString(item)
|
|
? parseStringStyle(item)
|
|
: normalizeStyle(item);
|
|
if (normalized) {
|
|
for (const key in normalized) {
|
|
res[key] = normalized[key];
|
|
}
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
else if (isString(value)) {
|
|
return value;
|
|
}
|
|
else if (isObject(value)) {
|
|
return value;
|
|
}
|
|
}
|
|
const listDelimiterRE = /;(?![^(]*\))/g;
|
|
const propertyDelimiterRE = /:(.+)/;
|
|
function parseStringStyle(cssText) {
|
|
const ret = {};
|
|
cssText.split(listDelimiterRE).forEach(item => {
|
|
if (item) {
|
|
const tmp = item.split(propertyDelimiterRE);
|
|
tmp.length > 1 && (ret[tmp[0].trim()] = tmp[1].trim());
|
|
}
|
|
});
|
|
return ret;
|
|
}
|
|
function stringifyStyle(styles) {
|
|
let ret = '';
|
|
if (!styles || isString(styles)) {
|
|
return ret;
|
|
}
|
|
for (const key in styles) {
|
|
const value = styles[key];
|
|
const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
|
|
if (isString(value) ||
|
|
(typeof value === 'number' && isNoUnitNumericStyleProp(normalizedKey))) {
|
|
// only render valid values
|
|
ret += `${normalizedKey}:${value};`;
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
function normalizeClass(value) {
|
|
let res = '';
|
|
if (isString(value)) {
|
|
res = value;
|
|
}
|
|
else if (isArray(value)) {
|
|
for (let i = 0; i < value.length; i++) {
|
|
const normalized = normalizeClass(value[i]);
|
|
if (normalized) {
|
|
res += normalized + ' ';
|
|
}
|
|
}
|
|
}
|
|
else if (isObject(value)) {
|
|
for (const name in value) {
|
|
if (value[name]) {
|
|
res += name + ' ';
|
|
}
|
|
}
|
|
}
|
|
return res.trim();
|
|
}
|
|
function normalizeProps(props) {
|
|
if (!props)
|
|
return null;
|
|
let { class: klass, style } = props;
|
|
if (klass && !isString(klass)) {
|
|
props.class = normalizeClass(klass);
|
|
}
|
|
if (style) {
|
|
props.style = normalizeStyle(style);
|
|
}
|
|
return props;
|
|
}
|
|
|
|
// These tag configs are shared between compiler-dom and runtime-dom, so they
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element
|
|
const HTML_TAGS = 'html,body,base,head,link,meta,style,title,address,article,aside,footer,' +
|
|
'header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,' +
|
|
'figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,' +
|
|
'data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,' +
|
|
'time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,' +
|
|
'canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,' +
|
|
'th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,' +
|
|
'option,output,progress,select,textarea,details,dialog,menu,' +
|
|
'summary,template,blockquote,iframe,tfoot';
|
|
// https://developer.mozilla.org/en-US/docs/Web/SVG/Element
|
|
const SVG_TAGS = 'svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,' +
|
|
'defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,' +
|
|
'feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,' +
|
|
'feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,' +
|
|
'feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,' +
|
|
'fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,' +
|
|
'foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,' +
|
|
'mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,' +
|
|
'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' +
|
|
'text,textPath,title,tspan,unknown,use,view';
|
|
const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';
|
|
const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS);
|
|
const isSVGTag = /*#__PURE__*/ makeMap(SVG_TAGS);
|
|
const isVoidTag = /*#__PURE__*/ makeMap(VOID_TAGS);
|
|
|
|
const escapeRE = /["'&<>]/;
|
|
function escapeHtml(string) {
|
|
const str = '' + string;
|
|
const match = escapeRE.exec(str);
|
|
if (!match) {
|
|
return str;
|
|
}
|
|
let html = '';
|
|
let escaped;
|
|
let index;
|
|
let lastIndex = 0;
|
|
for (index = match.index; index < str.length; index++) {
|
|
switch (str.charCodeAt(index)) {
|
|
case 34: // "
|
|
escaped = '"';
|
|
break;
|
|
case 38: // &
|
|
escaped = '&';
|
|
break;
|
|
case 39: // '
|
|
escaped = ''';
|
|
break;
|
|
case 60: // <
|
|
escaped = '<';
|
|
break;
|
|
case 62: // >
|
|
escaped = '>';
|
|
break;
|
|
default:
|
|
continue;
|
|
}
|
|
if (lastIndex !== index) {
|
|
html += str.substring(lastIndex, index);
|
|
}
|
|
lastIndex = index + 1;
|
|
html += escaped;
|
|
}
|
|
return lastIndex !== index ? html + str.substring(lastIndex, index) : html;
|
|
}
|
|
// https://www.w3.org/TR/html52/syntax.html#comments
|
|
const commentStripRE = /^-?>|<!--|-->|--!>|<!-$/g;
|
|
function escapeHtmlComment(src) {
|
|
return src.replace(commentStripRE, '');
|
|
}
|
|
|
|
function looseCompareArrays(a, b) {
|
|
if (a.length !== b.length)
|
|
return false;
|
|
let equal = true;
|
|
for (let i = 0; equal && i < a.length; i++) {
|
|
equal = looseEqual(a[i], b[i]);
|
|
}
|
|
return equal;
|
|
}
|
|
function looseEqual(a, b) {
|
|
if (a === b)
|
|
return true;
|
|
let aValidType = isDate(a);
|
|
let bValidType = isDate(b);
|
|
if (aValidType || bValidType) {
|
|
return aValidType && bValidType ? a.getTime() === b.getTime() : false;
|
|
}
|
|
aValidType = isArray(a);
|
|
bValidType = isArray(b);
|
|
if (aValidType || bValidType) {
|
|
return aValidType && bValidType ? looseCompareArrays(a, b) : false;
|
|
}
|
|
aValidType = isObject(a);
|
|
bValidType = isObject(b);
|
|
if (aValidType || bValidType) {
|
|
/* istanbul ignore if: this if will probably never be called */
|
|
if (!aValidType || !bValidType) {
|
|
return false;
|
|
}
|
|
const aKeysCount = Object.keys(a).length;
|
|
const bKeysCount = Object.keys(b).length;
|
|
if (aKeysCount !== bKeysCount) {
|
|
return false;
|
|
}
|
|
for (const key in a) {
|
|
const aHasKey = a.hasOwnProperty(key);
|
|
const bHasKey = b.hasOwnProperty(key);
|
|
if ((aHasKey && !bHasKey) ||
|
|
(!aHasKey && bHasKey) ||
|
|
!looseEqual(a[key], b[key])) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return String(a) === String(b);
|
|
}
|
|
function looseIndexOf(arr, val) {
|
|
return arr.findIndex(item => looseEqual(item, val));
|
|
}
|
|
|
|
/**
|
|
* For converting {{ interpolation }} values to displayed strings.
|
|
* @private
|
|
*/
|
|
const toDisplayString = (val) => {
|
|
return val == null
|
|
? ''
|
|
: isArray(val) ||
|
|
(isObject(val) &&
|
|
(val.toString === objectToString || !isFunction(val.toString)))
|
|
? JSON.stringify(val, replacer, 2)
|
|
: String(val);
|
|
};
|
|
const replacer = (_key, val) => {
|
|
// can't use isRef here since @vue/shared has no deps
|
|
if (val && val.__v_isRef) {
|
|
return replacer(_key, val.value);
|
|
}
|
|
else if (isMap(val)) {
|
|
return {
|
|
[`Map(${val.size})`]: [...val.entries()].reduce((entries, [key, val]) => {
|
|
entries[`${key} =>`] = val;
|
|
return entries;
|
|
}, {})
|
|
};
|
|
}
|
|
else if (isSet(val)) {
|
|
return {
|
|
[`Set(${val.size})`]: [...val.values()]
|
|
};
|
|
}
|
|
else if (isObject(val) && !isArray(val) && !isPlainObject(val)) {
|
|
return String(val);
|
|
}
|
|
return val;
|
|
};
|
|
|
|
/**
|
|
* List of @babel/parser plugins that are used for template expression
|
|
* transforms and SFC script transforms. By default we enable proposals slated
|
|
* for ES2020. This will need to be updated as the spec moves forward.
|
|
* Full list at https://babeljs.io/docs/en/next/babel-parser#plugins
|
|
*/
|
|
const babelParserDefaultPlugins = [
|
|
'bigInt',
|
|
'optionalChaining',
|
|
'nullishCoalescingOperator'
|
|
];
|
|
const EMPTY_OBJ = ( true)
|
|
? Object.freeze({})
|
|
: undefined;
|
|
const EMPTY_ARR = ( true) ? Object.freeze([]) : undefined;
|
|
const NOOP = () => { };
|
|
/**
|
|
* Always return false.
|
|
*/
|
|
const NO = () => false;
|
|
const onRE = /^on[^a-z]/;
|
|
const isOn = (key) => onRE.test(key);
|
|
const isModelListener = (key) => key.startsWith('onUpdate:');
|
|
const extend = Object.assign;
|
|
const remove = (arr, el) => {
|
|
const i = arr.indexOf(el);
|
|
if (i > -1) {
|
|
arr.splice(i, 1);
|
|
}
|
|
};
|
|
const hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
const hasOwn = (val, key) => hasOwnProperty.call(val, key);
|
|
const isArray = Array.isArray;
|
|
const isMap = (val) => toTypeString(val) === '[object Map]';
|
|
const isSet = (val) => toTypeString(val) === '[object Set]';
|
|
const isDate = (val) => val instanceof Date;
|
|
const isFunction = (val) => typeof val === 'function';
|
|
const isString = (val) => typeof val === 'string';
|
|
const isSymbol = (val) => typeof val === 'symbol';
|
|
const isObject = (val) => val !== null && typeof val === 'object';
|
|
const isPromise = (val) => {
|
|
return isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
|
};
|
|
const objectToString = Object.prototype.toString;
|
|
const toTypeString = (value) => objectToString.call(value);
|
|
const toRawType = (value) => {
|
|
// extract "RawType" from strings like "[object RawType]"
|
|
return toTypeString(value).slice(8, -1);
|
|
};
|
|
const isPlainObject = (val) => toTypeString(val) === '[object Object]';
|
|
const isIntegerKey = (key) => isString(key) &&
|
|
key !== 'NaN' &&
|
|
key[0] !== '-' &&
|
|
'' + parseInt(key, 10) === key;
|
|
const isReservedProp = /*#__PURE__*/ makeMap(
|
|
// the leading comma is intentional so empty string "" is also included
|
|
',key,ref,' +
|
|
'onVnodeBeforeMount,onVnodeMounted,' +
|
|
'onVnodeBeforeUpdate,onVnodeUpdated,' +
|
|
'onVnodeBeforeUnmount,onVnodeUnmounted');
|
|
const cacheStringFunction = (fn) => {
|
|
const cache = Object.create(null);
|
|
return ((str) => {
|
|
const hit = cache[str];
|
|
return hit || (cache[str] = fn(str));
|
|
});
|
|
};
|
|
const camelizeRE = /-(\w)/g;
|
|
/**
|
|
* @private
|
|
*/
|
|
const camelize = cacheStringFunction((str) => {
|
|
return str.replace(camelizeRE, (_, c) => (c ? c.toUpperCase() : ''));
|
|
});
|
|
const hyphenateRE = /\B([A-Z])/g;
|
|
/**
|
|
* @private
|
|
*/
|
|
const hyphenate = cacheStringFunction((str) => str.replace(hyphenateRE, '-$1').toLowerCase());
|
|
/**
|
|
* @private
|
|
*/
|
|
const capitalize = cacheStringFunction((str) => str.charAt(0).toUpperCase() + str.slice(1));
|
|
/**
|
|
* @private
|
|
*/
|
|
const toHandlerKey = cacheStringFunction((str) => str ? `on${capitalize(str)}` : ``);
|
|
// compare whether a value has changed, accounting for NaN.
|
|
const hasChanged = (value, oldValue) => !Object.is(value, oldValue);
|
|
const invokeArrayFns = (fns, arg) => {
|
|
for (let i = 0; i < fns.length; i++) {
|
|
fns[i](arg);
|
|
}
|
|
};
|
|
const def = (obj, key, value) => {
|
|
Object.defineProperty(obj, key, {
|
|
configurable: true,
|
|
enumerable: false,
|
|
value
|
|
});
|
|
};
|
|
const toNumber = (val) => {
|
|
const n = parseFloat(val);
|
|
return isNaN(n) ? val : n;
|
|
};
|
|
let _globalThis;
|
|
const getGlobalThis = () => {
|
|
return (_globalThis ||
|
|
(_globalThis =
|
|
typeof globalThis !== 'undefined'
|
|
? globalThis
|
|
: typeof self !== 'undefined'
|
|
? self
|
|
: typeof window !== 'undefined'
|
|
? window
|
|
: typeof global !== 'undefined'
|
|
? global
|
|
: {}));
|
|
};
|
|
|
|
|
|
|
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../webpack/buildin/global.js */ 11)))
|
|
|
|
/***/ }),
|
|
|
|
/***/ 13:
|
|
/*!*****************************************************************!*\
|
|
!*** ./node_modules/@dcloudio/uni-mp-weixin/dist/uni.mp.esm.js ***!
|
|
\*****************************************************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });exports.createPage = exports.createComponent = exports.createApp = void 0;var _shared = __webpack_require__(/*! @vue/shared */ 12);
|
|
var _vue = __webpack_require__(/*! vue */ 9);
|
|
|
|
var encode = encodeURIComponent;
|
|
function stringifyQuery(obj) {var encodeStr = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : encode;
|
|
var res = obj ?
|
|
Object.keys(obj).
|
|
map(function (key) {
|
|
var val = obj[key];
|
|
if (typeof val === undefined || val === null) {
|
|
val = '';
|
|
} else
|
|
if ((0, _shared.isPlainObject)(val)) {
|
|
val = JSON.stringify(val);
|
|
}
|
|
return encodeStr(key) + '=' + encodeStr(val);
|
|
}).
|
|
filter(function (x) {return x.length > 0;}).
|
|
join('&') :
|
|
null;
|
|
return res ? "?".concat(res) : '';
|
|
}
|
|
|
|
function cache(fn) {
|
|
var cache = Object.create(null);
|
|
return function (str) {
|
|
var hit = cache[str];
|
|
return hit || (cache[str] = fn(str));
|
|
};
|
|
}
|
|
var invokeArrayFns = function invokeArrayFns(fns, arg) {
|
|
var ret;
|
|
for (var i = 0; i < fns.length; i++) {
|
|
ret = fns[i](arg);
|
|
}
|
|
return ret;
|
|
};
|
|
// lifecycle
|
|
// App and Page
|
|
var ON_SHOW = 'onShow';
|
|
var ON_HIDE = 'onHide';
|
|
//App
|
|
var ON_LAUNCH = 'onLaunch';
|
|
var ON_ERROR = 'onError';
|
|
var ON_THEME_CHANGE = 'onThemeChange';
|
|
var ON_PAGE_NOT_FOUND = 'onPageNotFound';
|
|
var ON_UNHANDLE_REJECTION = 'onUnhandledRejection';
|
|
//Page
|
|
var ON_LOAD = 'onLoad';
|
|
var ON_READY = 'onReady';
|
|
var ON_UNLOAD = 'onUnload';
|
|
var ON_RESIZE = 'onResize';
|
|
var ON_TAB_ITEM_TAP = 'onTabItemTap';
|
|
var ON_REACH_BOTTOM = 'onReachBottom';
|
|
var ON_PULL_DOWN_REFRESH = 'onPullDownRefresh';
|
|
var ON_ADD_TO_FAVORITES = 'onAddToFavorites';
|
|
|
|
var eventChannels = {};
|
|
var eventChannelStack = [];
|
|
function getEventChannel(id) {
|
|
if (id) {
|
|
var eventChannel = eventChannels[id];
|
|
delete eventChannels[id];
|
|
return eventChannel;
|
|
}
|
|
return eventChannelStack.shift();
|
|
}
|
|
|
|
function initBehavior(options) {
|
|
return Behavior(options);
|
|
}
|
|
function initVueIds(vueIds, mpInstance) {
|
|
if (!vueIds) {
|
|
return;
|
|
}
|
|
var ids = vueIds.split(',');
|
|
var len = ids.length;
|
|
if (len === 1) {
|
|
mpInstance._$vueId = ids[0];
|
|
} else
|
|
if (len === 2) {
|
|
mpInstance._$vueId = ids[0];
|
|
mpInstance._$vuePid = ids[1];
|
|
}
|
|
}
|
|
var EXTRAS = ['externalClasses'];
|
|
function initExtraOptions(miniProgramComponentOptions, vueOptions) {
|
|
EXTRAS.forEach(function (name) {
|
|
if ((0, _shared.hasOwn)(vueOptions, name)) {
|
|
miniProgramComponentOptions[name] = vueOptions[name];
|
|
}
|
|
});
|
|
}
|
|
function initWxsCallMethods(methods, wxsCallMethods) {
|
|
if (!(0, _shared.isArray)(wxsCallMethods)) {
|
|
return;
|
|
}
|
|
wxsCallMethods.forEach(function (callMethod) {
|
|
methods[callMethod] = function (args) {
|
|
return this.$vm[callMethod](args);
|
|
};
|
|
});
|
|
}
|
|
function selectAllComponents(mpInstance, selector, $refs) {
|
|
var components = mpInstance.selectAllComponents(selector);
|
|
components.forEach(function (component) {
|
|
var ref = component.dataset.ref;
|
|
$refs[ref] = component.$vm || component;
|
|
{
|
|
if (component.dataset.vueGeneric === 'scoped') {
|
|
component.
|
|
selectAllComponents('.scoped-ref').
|
|
forEach(function (scopedComponent) {
|
|
selectAllComponents(scopedComponent, selector, $refs);
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
function initRefs(instance, mpInstance) {
|
|
Object.defineProperty(instance, 'refs', {
|
|
get: function get() {
|
|
var $refs = {};
|
|
selectAllComponents(mpInstance, '.vue-ref', $refs);
|
|
var forComponents = mpInstance.selectAllComponents('.vue-ref-in-for');
|
|
forComponents.forEach(function (component) {
|
|
var ref = component.dataset.ref;
|
|
if (!$refs[ref]) {
|
|
$refs[ref] = [];
|
|
}
|
|
$refs[ref].push(component.$vm || component);
|
|
});
|
|
return $refs;
|
|
} });
|
|
|
|
}
|
|
function findVmByVueId(instance, vuePid) {
|
|
// 标准 vue3 中 没有 $children,定制了内核
|
|
var $children = instance.$children;
|
|
// 优先查找直属(反向查找:https://github.com/dcloudio/uni-app/issues/1200)
|
|
for (var i = $children.length - 1; i >= 0; i--) {
|
|
var childVm = $children[i];
|
|
if (childVm.$scope._$vueId === vuePid) {
|
|
return childVm;
|
|
}
|
|
}
|
|
// 反向递归查找
|
|
var parentVm;
|
|
for (var _i = $children.length - 1; _i >= 0; _i--) {
|
|
parentVm = findVmByVueId($children[_i], vuePid);
|
|
if (parentVm) {
|
|
return parentVm;
|
|
}
|
|
}
|
|
}
|
|
function getTarget(obj, path) {
|
|
var parts = path.split('.');
|
|
var key = parts[0];
|
|
if (key.indexOf('__$n') === 0) {
|
|
//number index
|
|
key = parseInt(key.replace('__$n', ''));
|
|
}
|
|
if (!obj) {
|
|
obj = {};
|
|
}
|
|
if (parts.length === 1) {
|
|
return obj[key];
|
|
}
|
|
return getTarget(obj[key], parts.slice(1).join('.'));
|
|
}
|
|
|
|
function getValue(dataPath, target) {
|
|
return getTarget(target || this, dataPath);
|
|
}
|
|
function getClass(dynamicClass, staticClass) {
|
|
return renderClass(staticClass, dynamicClass);
|
|
}
|
|
function getStyle(dynamicStyle, staticStyle) {
|
|
if (!dynamicStyle && !staticStyle) {
|
|
return '';
|
|
}
|
|
var dynamicStyleObj = normalizeStyleBinding(dynamicStyle);
|
|
var styleObj = staticStyle ?
|
|
(0, _shared.extend)(staticStyle, dynamicStyleObj) :
|
|
dynamicStyleObj;
|
|
return Object.keys(styleObj).
|
|
map(function (name) {
|
|
return (0, _shared.hyphenate)(name) + ':' + styleObj[name];
|
|
}).
|
|
join(';');
|
|
}
|
|
function toObject(arr) {
|
|
var res = {};
|
|
for (var i = 0; i < arr.length; i++) {
|
|
if (arr[i]) {
|
|
(0, _shared.extend)(res, arr[i]);
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
function normalizeStyleBinding(bindingStyle) {
|
|
if (Array.isArray(bindingStyle)) {
|
|
return toObject(bindingStyle);
|
|
}
|
|
if (typeof bindingStyle === 'string') {
|
|
return parseStyleText(bindingStyle);
|
|
}
|
|
return bindingStyle;
|
|
}
|
|
var parseStyleText = cache(function parseStyleText(cssText) {
|
|
var res = {};
|
|
var listDelimiter = /;(?![^(]*\))/g;
|
|
var propertyDelimiter = /:(.+)/;
|
|
cssText.split(listDelimiter).forEach(function (item) {
|
|
if (item) {
|
|
var tmp = item.split(propertyDelimiter);
|
|
tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());
|
|
}
|
|
});
|
|
return res;
|
|
});
|
|
function isDef(v) {
|
|
return v !== undefined && v !== null;
|
|
}
|
|
function renderClass(staticClass, dynamicClass) {
|
|
if (isDef(staticClass) || isDef(dynamicClass)) {
|
|
return concat(staticClass, stringifyClass(dynamicClass));
|
|
}
|
|
/* istanbul ignore next */
|
|
return '';
|
|
}
|
|
function concat(a, b) {
|
|
return a ? b ? a + ' ' + b : a : b || '';
|
|
}
|
|
function stringifyClass(value) {
|
|
if (Array.isArray(value)) {
|
|
return stringifyArray(value);
|
|
}
|
|
if ((0, _shared.isObject)(value)) {
|
|
return stringifyObject(value);
|
|
}
|
|
if (typeof value === 'string') {
|
|
return value;
|
|
}
|
|
/* istanbul ignore next */
|
|
return '';
|
|
}
|
|
function stringifyArray(value) {
|
|
var res = '';
|
|
var stringified;
|
|
for (var i = 0, l = value.length; i < l; i++) {
|
|
if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {
|
|
if (res) {
|
|
res += ' ';
|
|
}
|
|
res += stringified;
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
function stringifyObject(value) {
|
|
var res = '';
|
|
for (var key in value) {
|
|
if (value[key]) {
|
|
if (res) {
|
|
res += ' ';
|
|
}
|
|
res += key;
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
function setModel(target, key, value, modifiers) {
|
|
if ((0, _shared.isArray)(modifiers)) {
|
|
if (modifiers.indexOf('trim') !== -1) {
|
|
value = value.trim();
|
|
}
|
|
if (modifiers.indexOf('number') !== -1) {
|
|
value = (0, _shared.toNumber)(value);
|
|
}
|
|
}
|
|
if (!target) {
|
|
target = this;
|
|
}
|
|
target[key] = value;
|
|
}
|
|
function setSync(target, key, value) {
|
|
if (!target) {
|
|
target = this;
|
|
}
|
|
target[key] = value;
|
|
}
|
|
function getOrig(data) {
|
|
if ((0, _shared.isPlainObject)(data)) {
|
|
return data.$orig || data;
|
|
}
|
|
return data;
|
|
}
|
|
function map(val, iteratee) {
|
|
var ret, i, l, keys, key;
|
|
if ((0, _shared.isArray)(val)) {
|
|
ret = new Array(val.length);
|
|
for (i = 0, l = val.length; i < l; i++) {
|
|
ret[i] = iteratee(val[i], i);
|
|
}
|
|
return ret;
|
|
} else
|
|
if ((0, _shared.isObject)(val)) {
|
|
keys = Object.keys(val);
|
|
ret = Object.create(null);
|
|
for (i = 0, l = keys.length; i < l; i++) {
|
|
key = keys[i];
|
|
ret[key] = iteratee(val[key], key, i);
|
|
}
|
|
return ret;
|
|
}
|
|
return [];
|
|
}
|
|
var MP_METHODS = [
|
|
'createSelectorQuery',
|
|
'createIntersectionObserver',
|
|
'selectAllComponents',
|
|
'selectComponent'];
|
|
|
|
function createEmitFn(oldEmit, ctx) {
|
|
return function emit(event) {for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {args[_key - 1] = arguments[_key];}
|
|
if (ctx.$scope && event) {
|
|
ctx.$scope.triggerEvent(event, { __args__: args });
|
|
}
|
|
return oldEmit.apply(this, [event].concat(args));
|
|
};
|
|
}
|
|
function initBaseInstance(instance, options) {
|
|
var ctx = instance.ctx;
|
|
// mp
|
|
ctx.mpType = options.mpType; // @deprecated
|
|
ctx.$mpType = options.mpType;
|
|
ctx.$scope = options.mpInstance;
|
|
// TODO @deprecated
|
|
ctx.$mp = {};
|
|
if (true) {
|
|
ctx._self = {};
|
|
}
|
|
// $vm
|
|
ctx.$scope.$vm = instance.proxy;
|
|
// slots
|
|
{
|
|
instance.slots = {};
|
|
if ((0, _shared.isArray)(options.slots) && options.slots.length) {
|
|
options.slots.forEach(function (name) {
|
|
instance.slots[name] = true;
|
|
});
|
|
}
|
|
}
|
|
ctx.getOpenerEventChannel = function () {
|
|
// 微信小程序使用自身getOpenerEventChannel
|
|
{
|
|
return options.mpInstance.getOpenerEventChannel();
|
|
}
|
|
};
|
|
ctx.$hasHook = hasHook;
|
|
ctx.$callHook = callHook;
|
|
// $emit
|
|
instance.emit = createEmitFn(instance.emit, ctx);
|
|
}
|
|
function initComponentInstance(instance, options) {
|
|
initBaseInstance(instance, options);
|
|
{
|
|
initScopedSlotsParams(instance);
|
|
}
|
|
var ctx = instance.ctx;
|
|
MP_METHODS.forEach(function (method) {
|
|
ctx[method] = function () {
|
|
var mpInstance = ctx.$scope;
|
|
if (mpInstance && mpInstance[method]) {for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {args[_key2] = arguments[_key2];}
|
|
return mpInstance[method].apply(mpInstance, args);
|
|
}
|
|
};
|
|
});
|
|
// TODO other
|
|
ctx.__set_model = setModel;
|
|
ctx.__set_sync = setSync;
|
|
ctx.__get_orig = getOrig;
|
|
// TODO
|
|
ctx.__get_value = getValue;
|
|
ctx.__get_class = getClass;
|
|
ctx.__get_style = getStyle;
|
|
ctx.__map = map;
|
|
}
|
|
function initMocks(instance, mpInstance, mocks) {
|
|
var ctx = instance.ctx;
|
|
mocks.forEach(function (mock) {
|
|
if ((0, _shared.hasOwn)(mpInstance, mock)) {
|
|
ctx[mock] = mpInstance[mock];
|
|
}
|
|
});
|
|
}
|
|
function hasHook(name) {
|
|
var hooks = this.$[name];
|
|
if (hooks && hooks.length) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
function callHook(name, args) {
|
|
if (name === 'mounted') {
|
|
callHook.call(this, 'bm'); // beforeMount
|
|
this.$.isMounted = true;
|
|
name = 'm';
|
|
} else
|
|
if (name === 'onLoad' && args && args.__id__) {
|
|
this.__eventChannel__ = getEventChannel(args.__id__);
|
|
delete args.__id__;
|
|
}
|
|
var hooks = this.$[name];
|
|
return hooks && invokeArrayFns(hooks, args);
|
|
}
|
|
var center = {};
|
|
var parents = {};
|
|
function initScopedSlotsParams(instance) {
|
|
var ctx = instance.ctx;
|
|
ctx.$hasScopedSlotsParams = function (vueId) {
|
|
var has = center[vueId];
|
|
if (!has) {
|
|
parents[vueId] = this;
|
|
(0, _vue.onUnmounted)(function () {
|
|
delete parents[vueId];
|
|
}, instance);
|
|
}
|
|
return has;
|
|
};
|
|
ctx.$getScopedSlotsParams = function (vueId, name, key) {
|
|
var data = center[vueId];
|
|
if (data) {
|
|
var object = data[name] || {};
|
|
return key ? object[key] : object;
|
|
} else
|
|
{
|
|
parents[vueId] = this;
|
|
(0, _vue.onUnmounted)(function () {
|
|
delete parents[vueId];
|
|
}, instance);
|
|
}
|
|
};
|
|
ctx.$setScopedSlotsParams = function (name, value) {
|
|
var vueIds = instance.attrs.vueId;
|
|
if (vueIds) {
|
|
var vueId = vueIds.split(',')[0];
|
|
var object = center[vueId] = center[vueId] || {};
|
|
object[name] = value;
|
|
if (parents[vueId]) {
|
|
parents[vueId].$forceUpdate();
|
|
}
|
|
}
|
|
};
|
|
(0, _vue.onUnmounted)(function () {
|
|
var propsData = instance.attrs;
|
|
var vueId = propsData && propsData.vueId;
|
|
if (vueId) {
|
|
delete center[vueId];
|
|
delete parents[vueId];
|
|
}
|
|
}, instance);
|
|
}
|
|
|
|
var PAGE_HOOKS = [
|
|
ON_LOAD,
|
|
ON_SHOW,
|
|
ON_HIDE,
|
|
ON_UNLOAD,
|
|
ON_RESIZE,
|
|
ON_TAB_ITEM_TAP,
|
|
ON_REACH_BOTTOM,
|
|
ON_PULL_DOWN_REFRESH,
|
|
ON_ADD_TO_FAVORITES
|
|
// 'onReady', // lifetimes.ready
|
|
// 'onPageScroll', // 影响性能,开发者手动注册
|
|
// 'onShareTimeline', // 右上角菜单,开发者手动注册
|
|
// 'onShareAppMessage' // 右上角菜单,开发者手动注册
|
|
];
|
|
function findHooks(vueOptions) {var hooks = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : new Set();
|
|
if (vueOptions) {
|
|
Object.keys(vueOptions).forEach(function (name) {
|
|
if (name.indexOf('on') === 0 && (0, _shared.isFunction)(vueOptions[name])) {
|
|
hooks.add(name);
|
|
}
|
|
});
|
|
if (true) {var
|
|
extendsOptions = vueOptions.extends,mixins = vueOptions.mixins;
|
|
if (mixins) {
|
|
mixins.forEach(function (mixin) {return findHooks(mixin, hooks);});
|
|
}
|
|
if (extendsOptions) {
|
|
findHooks(extendsOptions, hooks);
|
|
}
|
|
}
|
|
}
|
|
return hooks;
|
|
}
|
|
function initHook$1(mpOptions, hook, excludes) {
|
|
if (excludes.indexOf(hook) === -1 && !(0, _shared.hasOwn)(mpOptions, hook)) {
|
|
mpOptions[hook] = function (args) {
|
|
return this.$vm && this.$vm.$callHook(hook, args);
|
|
};
|
|
}
|
|
}
|
|
var EXCLUDE_HOOKS = [ON_READY];
|
|
function initHooks(mpOptions, hooks) {var excludes = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : EXCLUDE_HOOKS;
|
|
hooks.forEach(function (hook) {return initHook$1(mpOptions, hook, excludes);});
|
|
}
|
|
function initUnknownHooks(mpOptions, vueOptions) {var excludes = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : EXCLUDE_HOOKS;
|
|
findHooks(vueOptions).forEach(function (hook) {return initHook$1(mpOptions, hook, excludes);});
|
|
}
|
|
|
|
wx.appLaunchHooks = [];
|
|
function injectAppLaunchHooks(appInstance) {
|
|
wx.appLaunchHooks.forEach(function (hook) {
|
|
(0, _vue.injectHook)(ON_LAUNCH, hook, appInstance);
|
|
});
|
|
}
|
|
|
|
var HOOKS = [
|
|
ON_SHOW,
|
|
ON_HIDE,
|
|
ON_ERROR,
|
|
ON_THEME_CHANGE,
|
|
ON_PAGE_NOT_FOUND,
|
|
ON_UNHANDLE_REJECTION];
|
|
|
|
function parseApp(instance, parseAppOptions) {
|
|
var internalInstance = instance.$;
|
|
var appOptions = {
|
|
globalData: instance.$options && instance.$options.globalData || {},
|
|
$vm: instance,
|
|
onLaunch: function onLaunch(options) {
|
|
var ctx = internalInstance.ctx;
|
|
if (this.$vm && ctx.$scope) {
|
|
// 已经初始化过了,主要是为了百度,百度 onShow 在 onLaunch 之前
|
|
return;
|
|
}
|
|
initBaseInstance(internalInstance, {
|
|
mpType: 'app',
|
|
mpInstance: this,
|
|
slots: [] });
|
|
|
|
injectAppLaunchHooks(internalInstance);
|
|
ctx.globalData = this.globalData;
|
|
instance.$callHook(ON_LAUNCH, (0, _shared.extend)({ app: this }, options));
|
|
} };
|
|
|
|
initLocale(instance);
|
|
var vueOptions = instance.$.type;
|
|
initHooks(appOptions, HOOKS);
|
|
initUnknownHooks(appOptions, vueOptions);
|
|
if (true) {
|
|
var methods = vueOptions.methods;
|
|
methods && (0, _shared.extend)(appOptions, methods);
|
|
}
|
|
if (parseAppOptions) {
|
|
parseAppOptions.parse(appOptions);
|
|
}
|
|
return appOptions;
|
|
}
|
|
function initCreateApp(parseAppOptions) {
|
|
return function createApp(vm) {
|
|
return App(parseApp(vm, parseAppOptions));
|
|
};
|
|
}
|
|
function initLocale(appVm) {
|
|
var locale = (0, _vue.ref)(wx.getSystemInfoSync().language || 'zh-Hans');
|
|
Object.defineProperty(appVm, '$locale', {
|
|
get: function get() {
|
|
return locale.value;
|
|
},
|
|
set: function set(v) {
|
|
locale.value = v;
|
|
} });
|
|
|
|
}
|
|
|
|
var PROP_TYPES = [String, Number, Boolean, Object, Array, null];
|
|
function createObserver(name) {
|
|
return function observer(newVal) {
|
|
if (this.$vm) {
|
|
this.$vm.$.props[name] = newVal; // 为了触发其他非 render watcher
|
|
}
|
|
};
|
|
}
|
|
function parsePropType(key, type, defaultValue) {
|
|
// [String]=>String
|
|
if ((0, _shared.isArray)(type) && type.length === 1) {
|
|
return type[0];
|
|
}
|
|
return type;
|
|
}
|
|
function initDefaultProps() {var isBehavior = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
|
var properties = {};
|
|
if (!isBehavior) {
|
|
properties.vueId = {
|
|
type: String,
|
|
value: '' };
|
|
|
|
// 小程序不能直接定义 $slots 的 props,所以通过 vueSlots 转换到 $slots
|
|
properties.vueSlots = {
|
|
type: null,
|
|
value: [],
|
|
observer: function observer(newVal) {
|
|
var $slots = Object.create(null);
|
|
newVal.forEach(function (slotName) {
|
|
$slots[slotName] = true;
|
|
});
|
|
this.setData({
|
|
$slots: $slots });
|
|
|
|
} };
|
|
|
|
}
|
|
return properties;
|
|
}
|
|
function createProperty(key, prop) {
|
|
prop.observer = createObserver(key);
|
|
return prop;
|
|
}
|
|
function initProps(mpComponentOptions, rawProps) {var isBehavior = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
var properties = initDefaultProps(isBehavior);
|
|
if ((0, _shared.isArray)(rawProps)) {
|
|
rawProps.forEach(function (key) {
|
|
properties[key] = createProperty(key, {
|
|
type: null });
|
|
|
|
});
|
|
} else
|
|
if ((0, _shared.isPlainObject)(rawProps)) {
|
|
Object.keys(rawProps).forEach(function (key) {
|
|
var opts = rawProps[key];
|
|
if ((0, _shared.isPlainObject)(opts)) {
|
|
// title:{type:String,default:''}
|
|
var value = opts.default;
|
|
if ((0, _shared.isFunction)(value)) {
|
|
value = value();
|
|
}
|
|
var type = opts.type;
|
|
opts.type = parsePropType(key, type);
|
|
properties[key] = createProperty(key, {
|
|
type: PROP_TYPES.indexOf(type) !== -1 ? type : null,
|
|
value: value });
|
|
|
|
} else
|
|
{
|
|
// content:String
|
|
var _type = parsePropType(key, opts);
|
|
properties[key] = createProperty(key, {
|
|
type: PROP_TYPES.indexOf(_type) !== -1 ? _type : null });
|
|
|
|
}
|
|
});
|
|
}
|
|
mpComponentOptions.properties = properties;
|
|
}
|
|
|
|
function initData(vueOptions) {
|
|
var data = vueOptions.data || {};
|
|
if (typeof data === 'function') {
|
|
try {
|
|
var appConfig = getApp().$vm.$.appContext.config;
|
|
data = data.call(appConfig.globalProperties);
|
|
}
|
|
catch (e) {
|
|
if (Object({"VUE_APP_NAME":"uniapp-demo","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
console.warn('根据 Vue 的 data 函数初始化小程序 data 失败,请尽量确保 data 函数中不访问 vm 对象,否则可能影响首次数据渲染速度。', data, e);
|
|
}
|
|
}
|
|
} else
|
|
{
|
|
try {
|
|
// 对 data 格式化
|
|
data = JSON.parse(JSON.stringify(data));
|
|
}
|
|
catch (e) {}
|
|
}
|
|
if (!(0, _shared.isPlainObject)(data)) {
|
|
data = {};
|
|
}
|
|
return data;
|
|
}
|
|
function initBehaviors(vueOptions, initBehavior) {
|
|
var vueBehaviors = vueOptions.behaviors;
|
|
var vueExtends = vueOptions.extends;
|
|
var vueMixins = vueOptions.mixins;
|
|
var vueProps = vueOptions.props;
|
|
if (!vueProps) {
|
|
vueOptions.props = vueProps = [];
|
|
}
|
|
var behaviors = [];
|
|
if ((0, _shared.isArray)(vueBehaviors)) {
|
|
vueBehaviors.forEach(function (behavior) {
|
|
behaviors.push(behavior.replace('uni://', "".concat(__PLATFORM_PREFIX__, "://")));
|
|
if (behavior === 'uni://form-field') {
|
|
if ((0, _shared.isArray)(vueProps)) {
|
|
vueProps.push('name');
|
|
vueProps.push('value');
|
|
} else
|
|
{
|
|
vueProps.name = {
|
|
type: String,
|
|
default: '' };
|
|
|
|
vueProps.value = {
|
|
type: [String, Number, Boolean, Array, Object, Date],
|
|
default: '' };
|
|
|
|
}
|
|
}
|
|
});
|
|
}
|
|
if (vueExtends && vueExtends.props) {
|
|
var behavior = {};
|
|
initProps(behavior, vueExtends.props, true);
|
|
behaviors.push(initBehavior(behavior));
|
|
}
|
|
if ((0, _shared.isArray)(vueMixins)) {
|
|
vueMixins.forEach(function (vueMixin) {
|
|
if (vueMixin.props) {
|
|
var _behavior = {};
|
|
initProps(_behavior, vueMixin.props, true);
|
|
behaviors.push(initBehavior(_behavior));
|
|
}
|
|
});
|
|
}
|
|
return behaviors;
|
|
}
|
|
function applyOptions(componentOptions, vueOptions, initBehavior) {
|
|
componentOptions.data = initData(vueOptions);
|
|
componentOptions.behaviors = initBehaviors(vueOptions, initBehavior);
|
|
}
|
|
|
|
function getExtraValue(instance, dataPathsArray) {
|
|
var context = instance;
|
|
dataPathsArray.forEach(function (dataPathArray) {
|
|
var dataPath = dataPathArray[0];
|
|
var value = dataPathArray[2];
|
|
if (dataPath || typeof value !== 'undefined') {
|
|
// ['','',index,'disable']
|
|
var propPath = dataPathArray[1];
|
|
var valuePath = dataPathArray[3];
|
|
var vFor;
|
|
if (Number.isInteger(dataPath)) {
|
|
vFor = dataPath;
|
|
} else
|
|
if (!dataPath) {
|
|
vFor = context;
|
|
} else
|
|
if (typeof dataPath === 'string' && dataPath) {
|
|
if (dataPath.indexOf('#s#') === 0) {
|
|
vFor = dataPath.substr(3);
|
|
} else
|
|
{
|
|
vFor = getTarget(context, dataPath);
|
|
}
|
|
}
|
|
if (Number.isInteger(vFor)) {
|
|
context = value;
|
|
} else
|
|
if (!propPath) {
|
|
context = vFor[value];
|
|
} else
|
|
{
|
|
if ((0, _shared.isArray)(vFor)) {
|
|
context = vFor.find(function (vForItem) {
|
|
return getTarget(vForItem, propPath) === value;
|
|
});
|
|
} else
|
|
if ((0, _shared.isPlainObject)(vFor)) {
|
|
context = Object.keys(vFor).find(function (vForKey) {
|
|
return getTarget(vFor[vForKey], propPath) === value;
|
|
});
|
|
} else
|
|
{
|
|
console.error('v-for 暂不支持循环数据:', vFor);
|
|
}
|
|
}
|
|
if (valuePath) {
|
|
context = getTarget(context, valuePath);
|
|
}
|
|
}
|
|
});
|
|
return context;
|
|
}
|
|
function processEventExtra(instance, extra, event) {
|
|
var extraObj = {};
|
|
if ((0, _shared.isArray)(extra) && extra.length) {
|
|
/**
|
|
*[
|
|
* ['data.items', 'data.id', item.data.id],
|
|
* ['metas', 'id', meta.id]
|
|
*],
|
|
*[
|
|
* ['data.items', 'data.id', item.data.id],
|
|
* ['metas', 'id', meta.id]
|
|
*],
|
|
*'test'
|
|
*/
|
|
extra.forEach(function (dataPath, index) {
|
|
if (typeof dataPath === 'string') {
|
|
if (!dataPath) {
|
|
// model,prop.sync
|
|
extraObj['$' + index] = instance;
|
|
} else
|
|
{
|
|
if (dataPath === '$event') {
|
|
// $event
|
|
extraObj['$' + index] = event;
|
|
} else
|
|
if (dataPath === 'arguments') {
|
|
if (event.detail && event.detail.__args__) {
|
|
extraObj['$' + index] = event.detail.__args__;
|
|
} else
|
|
{
|
|
extraObj['$' + index] = [event];
|
|
}
|
|
} else
|
|
if (dataPath.indexOf('$event.') === 0) {
|
|
// $event.target.value
|
|
extraObj['$' + index] = getTarget(event, dataPath.replace('$event.', ''));
|
|
} else
|
|
{
|
|
extraObj['$' + index] = getTarget(instance, dataPath);
|
|
}
|
|
}
|
|
} else
|
|
{
|
|
extraObj['$' + index] = getExtraValue(instance, dataPath);
|
|
}
|
|
});
|
|
}
|
|
return extraObj;
|
|
}
|
|
function getObjByArray(arr) {
|
|
var obj = {};
|
|
for (var i = 1; i < arr.length; i++) {
|
|
var element = arr[i];
|
|
obj[element[0]] = element[1];
|
|
}
|
|
return obj;
|
|
}
|
|
function processEventArgs(instance, event) {var args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];var extra = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];var isCustom = arguments.length > 4 ? arguments[4] : undefined;var methodName = arguments.length > 5 ? arguments[5] : undefined;
|
|
var isCustomMPEvent = false; // wxcomponent 组件,传递原始 event 对象
|
|
if (isCustom) {
|
|
// 自定义事件
|
|
isCustomMPEvent =
|
|
event.currentTarget &&
|
|
event.currentTarget.dataset &&
|
|
event.currentTarget.dataset.comType === 'wx';
|
|
if (!args.length) {
|
|
// 无参数,直接传入 event 或 detail 数组
|
|
if (isCustomMPEvent) {
|
|
return [event];
|
|
}
|
|
return event.detail.__args__ || event.detail;
|
|
}
|
|
}
|
|
var extraObj = processEventExtra(instance, extra, event);
|
|
var ret = [];
|
|
args.forEach(function (arg) {
|
|
if (arg === '$event') {
|
|
if (methodName === '__set_model' && !isCustom) {
|
|
// input v-model value
|
|
ret.push(event.target.value);
|
|
} else
|
|
{
|
|
if (isCustom && !isCustomMPEvent) {
|
|
ret.push(event.detail.__args__[0]);
|
|
} else
|
|
{
|
|
// wxcomponent 组件或内置组件
|
|
ret.push(event);
|
|
}
|
|
}
|
|
} else
|
|
{
|
|
if ((0, _shared.isArray)(arg) && arg[0] === 'o') {
|
|
ret.push(getObjByArray(arg));
|
|
} else
|
|
if (typeof arg === 'string' && (0, _shared.hasOwn)(extraObj, arg)) {
|
|
ret.push(extraObj[arg]);
|
|
} else
|
|
{
|
|
ret.push(arg);
|
|
}
|
|
}
|
|
});
|
|
return ret;
|
|
}
|
|
function wrapper(event) {
|
|
event.stopPropagation = _shared.NOOP;
|
|
event.preventDefault = _shared.NOOP;
|
|
event.target = event.target || {};
|
|
if (!(0, _shared.hasOwn)(event, 'detail')) {
|
|
event.detail = {};
|
|
}
|
|
if ((0, _shared.hasOwn)(event, 'markerId')) {
|
|
event.detail = typeof event.detail === 'object' ? event.detail : {};
|
|
event.detail.markerId = event.markerId;
|
|
}
|
|
if ((0, _shared.isPlainObject)(event.detail)) {
|
|
event.target = (0, _shared.extend)({}, event.target, event.detail);
|
|
}
|
|
return event;
|
|
}
|
|
var ONCE = '~';
|
|
var CUSTOM = '^';
|
|
function matchEventType(eventType, optType) {
|
|
return eventType === optType ||
|
|
optType === 'regionchange' && (
|
|
eventType === 'begin' || eventType === 'end');
|
|
}
|
|
function handleEvent(event) {var _this = this;
|
|
event = wrapper(event);
|
|
// [['tap',[['handle',[1,2,a]],['handle1',[1,2,a]]]]]
|
|
var dataset = (event.currentTarget || event.target).dataset;
|
|
if (!dataset) {
|
|
return console.warn('事件信息不存在');
|
|
}
|
|
var eventOpts = dataset.eventOpts ||
|
|
dataset['event-opts']; // 支付宝 web-view 组件 dataset 非驼峰
|
|
if (!eventOpts) {
|
|
return console.warn('事件信息不存在');
|
|
}
|
|
// [['handle',[1,2,a]],['handle1',[1,2,a]]]
|
|
var eventType = event.type;
|
|
var ret = [];
|
|
eventOpts.forEach(function (eventOpt) {
|
|
var type = eventOpt[0];
|
|
var eventsArray = eventOpt[1];
|
|
var isCustom = type.charAt(0) === CUSTOM;
|
|
type = isCustom ? type.slice(1) : type;
|
|
var isOnce = type.charAt(0) === ONCE;
|
|
type = isOnce ? type.slice(1) : type;
|
|
if (eventsArray && matchEventType(eventType, type)) {
|
|
eventsArray.forEach(function (eventArray) {
|
|
var methodName = eventArray[0];
|
|
if (methodName) {
|
|
var handlerCtx = _this.$vm;
|
|
if (handlerCtx.$options.generic &&
|
|
handlerCtx.$parent &&
|
|
handlerCtx.$parent.$parent) {
|
|
// mp-weixin,mp-toutiao 抽象节点模拟 scoped slots
|
|
handlerCtx = handlerCtx.$parent.$parent;
|
|
}
|
|
if (methodName === '$emit') {
|
|
handlerCtx.$emit.apply(handlerCtx, processEventArgs(_this.$vm, event, eventArray[1], eventArray[2], isCustom, methodName));
|
|
return;
|
|
}
|
|
var handler = handlerCtx[methodName];
|
|
if (!(0, _shared.isFunction)(handler)) {
|
|
throw new Error(" _vm.".concat(methodName, " is not a function"));
|
|
}
|
|
if (isOnce) {
|
|
if (handler.once) {
|
|
return;
|
|
}
|
|
handler.once = true;
|
|
}
|
|
var params = processEventArgs(_this.$vm, event, eventArray[1], eventArray[2], isCustom, methodName);
|
|
params = Array.isArray(params) ? params : [];
|
|
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
|
|
if (/=\s*\S+\.eventParams\s*\|\|\s*\S+\[['"]event-params['"]\]/.test(handler.toString())) {
|
|
// eslint-disable-next-line no-sparse-arrays
|
|
params = params.concat([,,,,,,,,,, event]);
|
|
}
|
|
ret.push(handler.apply(handlerCtx, params));
|
|
}
|
|
});
|
|
}
|
|
});
|
|
if (eventType === 'input' &&
|
|
ret.length === 1 &&
|
|
typeof ret[0] !== 'undefined') {
|
|
return ret[0];
|
|
}
|
|
}
|
|
|
|
function parseComponent(vueOptions, _ref) {var parse = _ref.parse,mocks = _ref.mocks,isPage = _ref.isPage,initRelation = _ref.initRelation,handleLink = _ref.handleLink,initLifetimes = _ref.initLifetimes;
|
|
vueOptions = vueOptions.default || vueOptions;
|
|
var options = {
|
|
multipleSlots: true,
|
|
addGlobalClass: true };
|
|
|
|
if (vueOptions.options) {
|
|
(0, _shared.extend)(options, vueOptions.options);
|
|
}
|
|
var mpComponentOptions = {
|
|
options: options,
|
|
lifetimes: initLifetimes({ mocks: mocks, isPage: isPage, initRelation: initRelation, vueOptions: vueOptions }),
|
|
pageLifetimes: {
|
|
show: function show() {
|
|
this.$vm && this.$vm.$callHook('onPageShow');
|
|
},
|
|
hide: function hide() {
|
|
this.$vm && this.$vm.$callHook('onPageHide');
|
|
},
|
|
resize: function resize(size) {
|
|
this.$vm && this.$vm.$callHook('onPageResize', size);
|
|
} },
|
|
|
|
methods: {
|
|
__l: handleLink,
|
|
__e: handleEvent } };
|
|
|
|
|
|
if (true) {
|
|
applyOptions(mpComponentOptions, vueOptions, initBehavior);
|
|
}
|
|
initProps(mpComponentOptions, vueOptions.props, false);
|
|
initExtraOptions(mpComponentOptions, vueOptions);
|
|
initWxsCallMethods(mpComponentOptions.methods, vueOptions.wxsCallMethods);
|
|
if (parse) {
|
|
parse(mpComponentOptions, { handleLink: handleLink });
|
|
}
|
|
return mpComponentOptions;
|
|
}
|
|
function initCreateComponent(parseOptions) {
|
|
return function createComponent(vueComponentOptions) {
|
|
return Component(parseComponent(vueComponentOptions, parseOptions));
|
|
};
|
|
}
|
|
var $createComponentFn;
|
|
var $destroyComponentFn;
|
|
function $createComponent(initialVNode, options) {
|
|
if (!$createComponentFn) {
|
|
$createComponentFn = getApp().$vm.$createComponent;
|
|
}
|
|
return $createComponentFn(initialVNode, options);
|
|
}
|
|
function $destroyComponent(instance) {
|
|
if (!$destroyComponentFn) {
|
|
$destroyComponentFn = getApp().$vm.$destroyComponent;
|
|
}
|
|
return $destroyComponentFn(instance);
|
|
}
|
|
|
|
function parsePage(vueOptions, parseOptions) {var
|
|
parse = parseOptions.parse,mocks = parseOptions.mocks,isPage = parseOptions.isPage,initRelation = parseOptions.initRelation,handleLink = parseOptions.handleLink,initLifetimes = parseOptions.initLifetimes;
|
|
var miniProgramPageOptions = parseComponent(vueOptions, {
|
|
mocks: mocks,
|
|
isPage: isPage,
|
|
initRelation: initRelation,
|
|
handleLink: handleLink,
|
|
initLifetimes: initLifetimes });
|
|
|
|
var methods = miniProgramPageOptions.methods;
|
|
methods.onLoad = function (query) {
|
|
this.options = query;
|
|
this.$page = {
|
|
fullPath: '/' + this.route + stringifyQuery(query) };
|
|
|
|
return this.$vm && this.$vm.$callHook(ON_LOAD, query);
|
|
};
|
|
initHooks(methods, PAGE_HOOKS);
|
|
initUnknownHooks(methods, vueOptions);
|
|
parse && parse(miniProgramPageOptions, { handleLink: handleLink });
|
|
return miniProgramPageOptions;
|
|
}
|
|
function initCreatePage(parseOptions) {
|
|
return function createPage(vuePageOptions) {
|
|
return Component(parsePage(vuePageOptions, parseOptions));
|
|
};
|
|
}
|
|
|
|
var MPPage = Page;
|
|
var MPComponent = Component;
|
|
var customizeRE = /:/g;
|
|
function customize(str) {
|
|
return (0, _shared.camelize)(str.replace(customizeRE, '-'));
|
|
}
|
|
function initTriggerEvent(mpInstance) {
|
|
var oldTriggerEvent = mpInstance.triggerEvent;
|
|
mpInstance.triggerEvent = function (event) {for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {args[_key3 - 1] = arguments[_key3];}
|
|
return oldTriggerEvent.apply(mpInstance, [customize(event)].concat(args));
|
|
};
|
|
}
|
|
function initHook(name, options) {
|
|
var oldHook = options[name];
|
|
if (!oldHook) {
|
|
options[name] = function () {
|
|
initTriggerEvent(this);
|
|
};
|
|
} else
|
|
{
|
|
options[name] = function () {
|
|
initTriggerEvent(this);for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {args[_key4] = arguments[_key4];}
|
|
return oldHook.apply(this, args);
|
|
};
|
|
}
|
|
}
|
|
Page = function Page(options) {
|
|
initHook(ON_LOAD, options);
|
|
return MPPage(options);
|
|
};
|
|
Component = function Component(options) {
|
|
initHook('created', options);
|
|
return MPComponent(options);
|
|
};
|
|
|
|
function initLifetimes(_ref2) {var mocks = _ref2.mocks,isPage = _ref2.isPage,initRelation = _ref2.initRelation,vueOptions = _ref2.vueOptions;
|
|
return {
|
|
attached: function attached() {
|
|
var properties = this.properties;
|
|
initVueIds(properties.vueId, this);
|
|
var relationOptions = {
|
|
vuePid: this._$vuePid };
|
|
|
|
// 处理父子关系
|
|
initRelation(this, relationOptions);
|
|
// 初始化 vue 实例
|
|
var mpInstance = this;
|
|
this.$vm = $createComponent({
|
|
type: vueOptions,
|
|
props: properties },
|
|
{
|
|
mpType: isPage(mpInstance) ? 'page' : 'component',
|
|
mpInstance: mpInstance,
|
|
slots: properties.vueSlots,
|
|
parentComponent: relationOptions.parent && relationOptions.parent.$,
|
|
onBeforeSetup: function onBeforeSetup(instance, options) {
|
|
initRefs(instance, mpInstance);
|
|
initMocks(instance, mpInstance, mocks);
|
|
initComponentInstance(instance, options);
|
|
} });
|
|
|
|
},
|
|
ready: function ready() {
|
|
// 当组件 props 默认值为 true,初始化时传入 false 会导致 created,ready 触发, 但 attached 不触发
|
|
// https://developers.weixin.qq.com/community/develop/doc/00066ae2844cc0f8eb883e2a557800
|
|
if (this.$vm) {
|
|
this.$vm.$callHook('mounted');
|
|
this.$vm.$callHook(ON_READY);
|
|
}
|
|
},
|
|
detached: function detached() {
|
|
this.$vm && $destroyComponent(this.$vm);
|
|
} };
|
|
|
|
}
|
|
|
|
var mocks = ['__route__', '__wxExparserNodeId__', '__wxWebviewId__'];
|
|
function isPage(mpInstance) {
|
|
return !!mpInstance.route;
|
|
}
|
|
function initRelation(mpInstance, detail) {
|
|
mpInstance.triggerEvent('__l', detail);
|
|
}
|
|
function handleLink(event) {
|
|
// detail 是微信,value 是百度(dipatch)
|
|
var detail = event.detail ||
|
|
event.value;
|
|
var vuePid = detail.vuePid;
|
|
var parentVm;
|
|
if (vuePid) {
|
|
parentVm = findVmByVueId(this.$vm, vuePid);
|
|
}
|
|
if (!parentVm) {
|
|
parentVm = this.$vm;
|
|
}
|
|
detail.parent = parentVm;
|
|
}
|
|
|
|
var parseOptions = /*#__PURE__*/Object.freeze({
|
|
__proto__: null,
|
|
mocks: mocks,
|
|
isPage: isPage,
|
|
initRelation: initRelation,
|
|
handleLink: handleLink,
|
|
initLifetimes: initLifetimes });
|
|
|
|
|
|
var createApp = initCreateApp();exports.createApp = createApp;
|
|
var createPage = initCreatePage(parseOptions);exports.createPage = createPage;
|
|
var createComponent = initCreateComponent(parseOptions);exports.createComponent = createComponent;
|
|
wx.createApp = createApp;
|
|
wx.createPage = createPage;
|
|
wx.createComponent = createComponent;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 20:
|
|
/*!******************************************!*\
|
|
!*** D:/files/uniapp-demo/utils/hook.js ***!
|
|
\******************************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
"use strict";
|
|
/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.tab2 = tab2; // 框架方法封装
|
|
var tabList = ['client', 'trade', 'mall', 'mine'];
|
|
|
|
/**
|
|
* @param {string} 跳转的tabBar页面
|
|
* @return {null}
|
|
*/
|
|
function tab2(tabPage) {
|
|
if (tabList.includes(tabPage)) {
|
|
uni.switchTab({
|
|
url: "/pages/".concat(tabPage, "/index") });
|
|
|
|
}
|
|
}
|
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! @dcloudio/uni-mp-weixin/dist/uni.api.esm.js */ 10)["default"]))
|
|
|
|
/***/ }),
|
|
|
|
/***/ 59:
|
|
/*!************************************************!*\
|
|
!*** D:/files/uniapp-demo/utils/http/index.js ***!
|
|
\************************************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
"use strict";
|
|
/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _http = _interopRequireDefault(__webpack_require__(/*! ./http.js */ 60));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function ownKeys(object, enumerableOnly) {var keys = Object.keys(object);if (Object.getOwnPropertySymbols) {var symbols = Object.getOwnPropertySymbols(object);if (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 = arguments[i] != null ? arguments[i] : {};if (i % 2) {ownKeys(Object(source), true).forEach(function (key) {_defineProperty(target, key, source[key]);});} else if (Object.getOwnPropertyDescriptors) {Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));} else {ownKeys(Object(source)).forEach(function (key) {Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));});}}return target;}function _defineProperty(obj, key, value) {if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}
|
|
|
|
// 请求封装文件
|
|
var urlEnv = false ? undefined : '';
|
|
var xappid = '503258978847965388';
|
|
// 请求url列表
|
|
var prefixList = {
|
|
'/trading-center': "https://api-client-yyt".concat(urlEnv, ".qniao.cn"),
|
|
'/cloud-print-user-center': "https://api-client-yyt".concat(urlEnv, ".qniao.cn"),
|
|
'/uec': "https://api-client-uec".concat(urlEnv, ".qniao.cn") };
|
|
|
|
|
|
var config = {
|
|
baseUrl: '',
|
|
header: {
|
|
'content-type': 'application/json;charset=UTF-8' },
|
|
|
|
requestOption: {
|
|
// 是否需要隐藏loading
|
|
hideLoading: false,
|
|
// 是否返回原始数据
|
|
isReturnNativeResponse: false,
|
|
// 需要对返回数据进行处理
|
|
isTransformResponse: true } };
|
|
|
|
|
|
|
|
// 请求拦截
|
|
var reqInterceptor = function reqInterceptor(config, options) {
|
|
// 添加token
|
|
var token = uni.getStorageSync('Qn_token');
|
|
if (token) {
|
|
config.header = _objectSpread(_objectSpread({},
|
|
config.header), {}, {
|
|
'Authorization': 'iHP4V/g6O5DXHixyNrf7tm/UsBwShEYjzGx1kBBPitXOsbrMnv5z4DHjhbgWwrgz/eyAbzsk0APv+gBprZdnNQ==',
|
|
'X-APP-ID': xappid });
|
|
|
|
}
|
|
// 改变url
|
|
var newUrl = '';var _config$url =
|
|
|
|
|
|
config.url,url = _config$url === void 0 ? '' : _config$url;
|
|
if (url.startsWith('http')) {
|
|
newUrl = url;
|
|
} else {
|
|
for (var key in prefixList) {
|
|
if (url.startsWith(key)) {
|
|
newUrl = prefixList[key] + url;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
config.url = newUrl;
|
|
if (!options.hideLoading) {
|
|
uni.showLoading({
|
|
title: '加载中...' });
|
|
|
|
}
|
|
return config;
|
|
};
|
|
|
|
// 响应拦截
|
|
var resInterceptor = function resInterceptor(response, options) {
|
|
if (options.isReturnNativeResponse) {
|
|
return response;
|
|
}
|
|
// 直接返回 {code,data,message}
|
|
if (!options.isTransformResponse) {
|
|
return response.data;
|
|
}var
|
|
statusCode = response.statusCode;
|
|
var res = response.data;
|
|
if (statusCode >= 200 && statusCode < 300) {
|
|
uni.hideLoading();
|
|
return res;
|
|
} else {
|
|
uni.showToast({
|
|
title: '服务器错误,请联系客服' });
|
|
|
|
// 后期可以加记录
|
|
return null;
|
|
}
|
|
};
|
|
|
|
var tranformConfig = function tranformConfig(ins, config) {
|
|
var conf = _objectSpread({},
|
|
config);
|
|
|
|
conf.baseUrl = config.baseUrl || ins.baseUrl || '';
|
|
conf.header = config.header || ins.header;
|
|
conf.method = config.method || 'GET';
|
|
conf.data = config.data || config.params || {};
|
|
conf.dataType = config.dataType || 'json';
|
|
conf.responseType = config.responseType || 'text';
|
|
return conf;
|
|
};
|
|
var http = new _http.default(config, {
|
|
reqInterceptor: reqInterceptor,
|
|
resInterceptor: resInterceptor,
|
|
tranformConfig: tranformConfig });var _default =
|
|
|
|
|
|
|
|
http;exports.default = _default;
|
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! @dcloudio/uni-mp-weixin/dist/uni.api.esm.js */ 10)["default"]))
|
|
|
|
/***/ }),
|
|
|
|
/***/ 60:
|
|
/*!***********************************************!*\
|
|
!*** D:/files/uniapp-demo/utils/http/http.js ***!
|
|
\***********************************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
"use strict";
|
|
/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _is = __webpack_require__(/*! ../is.js */ 61);function ownKeys(object, enumerableOnly) {var keys = Object.keys(object);if (Object.getOwnPropertySymbols) {var symbols = Object.getOwnPropertySymbols(object);if (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 = arguments[i] != null ? arguments[i] : {};if (i % 2) {ownKeys(Object(source), true).forEach(function (key) {_defineProperty(target, key, source[key]);});} else if (Object.getOwnPropertyDescriptors) {Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));} else {ownKeys(Object(source)).forEach(function (key) {Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));});}}return target;}function _defineProperty(obj, key, value) {if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}function _classCallCheck(instance, Constructor) {if (!(instance instanceof Constructor)) {throw new TypeError("Cannot call a class as a function");}}function _defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, descriptor.key, descriptor);}}function _createClass(Constructor, protoProps, staticProps) {if (protoProps) _defineProperties(Constructor.prototype, protoProps);if (staticProps) _defineProperties(Constructor, staticProps);return Constructor;}var
|
|
|
|
|
|
Http = /*#__PURE__*/function () {
|
|
function Http()
|
|
|
|
|
|
|
|
{var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},reqInterceptor = _ref.reqInterceptor,resInterceptor = _ref.resInterceptor,tranformConfig = _ref.tranformConfig;_classCallCheck(this, Http);
|
|
this.baseUrl = config.baseUrl;
|
|
this.header = config.header || {
|
|
'content-type': 'application/json;charset=UTF-8' };
|
|
|
|
this.requestOption = config.requestOption || {};
|
|
this.reqInterceptor = reqInterceptor;
|
|
this.resInterceptor = resInterceptor;
|
|
this.tranformConfig = tranformConfig;
|
|
}_createClass(Http, [{ key: "post", value: function post(
|
|
config, options) {
|
|
return request(_objectSpread({
|
|
method: 'POST' },
|
|
config),
|
|
options);
|
|
} }, { key: "get", value: function get(
|
|
config, options) {
|
|
return request(_objectSpread({
|
|
method: 'GET' },
|
|
config),
|
|
options);
|
|
}
|
|
/**
|
|
* @param {Object} config 和请求相关的参数
|
|
* @param {Object} options 对请求数据进行额外处理的参数
|
|
*/ }, { key: "request", value: function request(
|
|
config, options) {
|
|
var conf = Object.assign({}, config);var
|
|
|
|
tranformConfig =
|
|
|
|
|
|
this.tranformConfig,reqInterceptor = this.reqInterceptor,resInterceptor = this.resInterceptor;
|
|
if (tranformConfig && (0, _is.isFunction)(tranformConfig)) {
|
|
conf = tranformConfig(this, config);
|
|
}
|
|
if (reqInterceptor && (0, _is.isFunction)(reqInterceptor)) {
|
|
conf = reqInterceptor(conf, options);
|
|
}
|
|
var opt = Object.assign({}, this.requestOption, options);
|
|
return new Promise(function (resolve, reject) {
|
|
uni.request({
|
|
url: conf.url,
|
|
data: conf.data,
|
|
header: conf.header,
|
|
success: function success(res) {
|
|
console.log('native response', res);
|
|
var data = resInterceptor(res, opt);
|
|
// 服务器错误也会用then抛出,需要自己判断data==null
|
|
resolve(data);
|
|
},
|
|
fail: function fail(err) {
|
|
uni.showToast({
|
|
title: '发生未知错误,请联系客服' });
|
|
|
|
reject(err);
|
|
} });
|
|
|
|
}).catch(function (err) {
|
|
// 吃掉请求产生的异常
|
|
// 后期可以记录
|
|
console.log('native response error', err);
|
|
});
|
|
} }]);return Http;}();exports.default = Http;
|
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! @dcloudio/uni-mp-weixin/dist/uni.api.esm.js */ 10)["default"]))
|
|
|
|
/***/ }),
|
|
|
|
/***/ 61:
|
|
/*!****************************************!*\
|
|
!*** D:/files/uniapp-demo/utils/is.js ***!
|
|
\****************************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports) {
|
|
|
|
throw new Error("Module build failed (from ./node_modules/babel-loader/lib/index.js):\nSyntaxError: D:\\files\\uniapp-demo\\utils\\is.js: Unexpected token, expected \"{\" (7:31)\n\n 5 | }\n 6 | \n> 7 | export function isFunction(val): val is Function {\n | ^\n 8 | return is(val,'Function')\n 9 | }\n at Object._raise (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:746:17)\n at Object.raiseWithData (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:739:17)\n at Object.raise (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:733:17)\n at Object.unexpected (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:8807:16)\n at Object.expect (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:8793:28)\n at Object.parseBlock (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:11695:10)\n at Object.parseFunctionBody (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:10708:24)\n at Object.parseFunctionBodyAndFinish (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:10691:10)\n at D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:11871:12\n at Object.withTopicForbiddingContext (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:11031:14)\n at Object.parseFunction (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:11870:10)\n at Object.parseFunctionStatement (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:11502:17)\n at Object.parseStatementContent (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:11194:21)\n at Object.parseStatement (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:11156:17)\n at Object.parseExportDeclaration (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:12365:17)\n at Object.maybeParseExportDeclaration (D:\\programFiles\\HBuilderX\\plugins\\uniapp-cli\\node_modules\\@babel\\parser\\lib\\index.js:12321:31)");
|
|
|
|
/***/ }),
|
|
|
|
/***/ 7:
|
|
/*!**********************************************************************************************************!*\
|
|
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js ***!
|
|
\**********************************************************************************************************/
|
|
/*! exports provided: default */
|
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
|
|
"use strict";
|
|
__webpack_require__.r(__webpack_exports__);
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return normalizeComponent; });
|
|
/* globals __VUE_SSR_CONTEXT__ */
|
|
|
|
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
// This module is a runtime utility for cleaner component module output and will
|
|
// be included in the final webpack user bundle.
|
|
|
|
function normalizeComponent (
|
|
scriptExports,
|
|
render,
|
|
staticRenderFns,
|
|
functionalTemplate,
|
|
injectStyles,
|
|
scopeId,
|
|
moduleIdentifier, /* server only */
|
|
shadowMode, /* vue-cli only */
|
|
components, // fixed by xxxxxx auto components
|
|
renderjs // fixed by xxxxxx renderjs
|
|
) {
|
|
// Vue.extend constructor export interop
|
|
var options = typeof scriptExports === 'function'
|
|
? scriptExports.options
|
|
: scriptExports
|
|
|
|
// fixed by xxxxxx auto components
|
|
if (components) {
|
|
if (!options.components) {
|
|
options.components = {}
|
|
}
|
|
var hasOwn = Object.prototype.hasOwnProperty
|
|
for (var name in components) {
|
|
if (hasOwn.call(components, name) && !hasOwn.call(options.components, name)) {
|
|
options.components[name] = components[name]
|
|
}
|
|
}
|
|
}
|
|
// fixed by xxxxxx renderjs
|
|
if (renderjs) {
|
|
(renderjs.beforeCreate || (renderjs.beforeCreate = [])).unshift(function() {
|
|
this[renderjs.__module] = this
|
|
});
|
|
(options.mixins || (options.mixins = [])).push(renderjs)
|
|
}
|
|
|
|
// render functions
|
|
if (render) {
|
|
options.render = render
|
|
options.staticRenderFns = staticRenderFns
|
|
options._compiled = true
|
|
}
|
|
|
|
// functional template
|
|
if (functionalTemplate) {
|
|
options.functional = true
|
|
}
|
|
|
|
// scopedId
|
|
if (scopeId) {
|
|
options._scopeId = 'data-v-' + scopeId
|
|
}
|
|
|
|
var hook
|
|
if (moduleIdentifier) { // server build
|
|
hook = function (context) {
|
|
// 2.3 injection
|
|
context =
|
|
context || // cached call
|
|
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
// 2.2 with runInNewContext: true
|
|
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
context = __VUE_SSR_CONTEXT__
|
|
}
|
|
// inject component styles
|
|
if (injectStyles) {
|
|
injectStyles.call(this, context)
|
|
}
|
|
// register component module identifier for async chunk inferrence
|
|
if (context && context._registeredComponents) {
|
|
context._registeredComponents.add(moduleIdentifier)
|
|
}
|
|
}
|
|
// used by ssr in case component is cached and beforeCreate
|
|
// never gets called
|
|
options._ssrRegister = hook
|
|
} else if (injectStyles) {
|
|
hook = shadowMode
|
|
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
|
: injectStyles
|
|
}
|
|
|
|
if (hook) {
|
|
if (options.functional) {
|
|
// for template-only hot-reload because in that case the render fn doesn't
|
|
// go through the normalizer
|
|
options._injectStyles = hook
|
|
// register for functioal component in vue file
|
|
var originalRender = options.render
|
|
options.render = function renderWithStyleInjection (h, context) {
|
|
hook.call(context)
|
|
return originalRender(h, context)
|
|
}
|
|
} else {
|
|
// inject component registration as beforeCreate hook
|
|
var existing = options.beforeCreate
|
|
options.beforeCreate = existing
|
|
? [].concat(existing, hook)
|
|
: [hook]
|
|
}
|
|
}
|
|
|
|
return {
|
|
exports: scriptExports,
|
|
options: options
|
|
}
|
|
}
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 8:
|
|
/*!**************************************************!*\
|
|
!*** D:/files/uniapp-demo/common/js/publicFn.js ***!
|
|
\**************************************************/
|
|
/*! no static exports found */
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; // 日期转换方法
|
|
/**
|
|
* 日期格式化,样例 yyyy-mm-dd hh:MM:ss
|
|
* @param date Date 需要转换的日期
|
|
* @param fmt string 转化的格式
|
|
*/
|
|
var dateTimeFormat = function dateTimeFormat(date, fmt) {
|
|
if (!date) {
|
|
throw new Error('日期不正确');
|
|
}
|
|
var ret;
|
|
var opt = {
|
|
'y+': date.getFullYear().toString(), // 年
|
|
'm+': (date.getMonth() + 1).toString(), // 月
|
|
'd+': date.getDate().toString(), // 日
|
|
'h+': date.getHours().toString(), // 时
|
|
'M+': date.getMinutes().toString(), // 分
|
|
's+': date.getSeconds().toString() // 秒
|
|
};
|
|
for (var k in opt) {
|
|
ret = new RegExp('(' + k + ')').exec(fmt);
|
|
if (ret) {
|
|
fmt = fmt.replace(ret[1], ret[1].length == 1 ? opt[k] : opt[k].padStart(ret[1].length, '0'));
|
|
}
|
|
}
|
|
return fmt;
|
|
};
|
|
|
|
var pubFn = {
|
|
dateTimeFormat: dateTimeFormat };var _default =
|
|
|
|
|
|
pubFn;exports.default = _default;
|
|
|
|
/***/ }),
|
|
|
|
/***/ 9:
|
|
/*!*******************************************************************!*\
|
|
!*** ./node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js ***!
|
|
\*******************************************************************/
|
|
/*! exports provided: camelize, normalizeClass, normalizeProps, normalizeStyle, toDisplayString, toHandlerKey, EffectScope, ReactiveEffect, callWithAsyncErrorHandling, callWithErrorHandling, computed, createApp, createSSRApp, createVNode, createVueApp, customRef, defineComponent, defineEmits, defineExpose, defineProps, effect, effectScope, getCurrentInstance, getCurrentScope, inject, injectHook, isInSSRComponentSetup, isProxy, isReactive, isReadonly, isRef, logError, markRaw, mergeDefaults, mergeProps, nextTick, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onUnmounted, onUpdated, provide, proxyRefs, queuePostFlushCb, reactive, readonly, ref, resolveComponent, resolveDirective, resolveFilter, shallowReactive, shallowReadonly, shallowRef, stop, toHandlers, toRaw, toRef, toRefs, triggerRef, unref, useAttrs, useSSRContext, useSlots, version, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withModifiers, withScopeId */
|
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
|
|
"use strict";
|
|
__webpack_require__.r(__webpack_exports__);
|
|
/* WEBPACK VAR INJECTION */(function(uni, global, createMiniProgramApp) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EffectScope", function() { return EffectScope; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ReactiveEffect", function() { return ReactiveEffect; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "callWithAsyncErrorHandling", function() { return callWithAsyncErrorHandling; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "callWithErrorHandling", function() { return callWithErrorHandling; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "computed", function() { return computed; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createApp", function() { return createApp; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createSSRApp", function() { return createSSRApp; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createVNode", function() { return createVNode$1; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createVueApp", function() { return createVueApp; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "customRef", function() { return customRef; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "defineComponent", function() { return defineComponent; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "defineEmits", function() { return defineEmits; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "defineExpose", function() { return defineExpose; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "defineProps", function() { return defineProps; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "effect", function() { return effect; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "effectScope", function() { return effectScope; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCurrentInstance", function() { return getCurrentInstance; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCurrentScope", function() { return getCurrentScope; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "inject", function() { return inject; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "injectHook", function() { return injectHook; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isInSSRComponentSetup", function() { return isInSSRComponentSetup; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isProxy", function() { return isProxy; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isReactive", function() { return isReactive; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isReadonly", function() { return isReadonly; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isRef", function() { return isRef; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "logError", function() { return logError; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "markRaw", function() { return markRaw; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mergeDefaults", function() { return mergeDefaults; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mergeProps", function() { return mergeProps; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nextTick", function() { return nextTick; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onActivated", function() { return onActivated; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onBeforeMount", function() { return onBeforeMount; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onBeforeUnmount", function() { return onBeforeUnmount; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onBeforeUpdate", function() { return onBeforeUpdate; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onDeactivated", function() { return onDeactivated; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onErrorCaptured", function() { return onErrorCaptured; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onMounted", function() { return onMounted; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onRenderTracked", function() { return onRenderTracked; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onRenderTriggered", function() { return onRenderTriggered; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onScopeDispose", function() { return onScopeDispose; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onUnmounted", function() { return onUnmounted; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "onUpdated", function() { return onUpdated; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "provide", function() { return provide; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "proxyRefs", function() { return proxyRefs; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "queuePostFlushCb", function() { return queuePostFlushCb; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "reactive", function() { return reactive; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "readonly", function() { return readonly; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ref", function() { return ref; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveComponent", function() { return resolveComponent; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveDirective", function() { return resolveDirective; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveFilter", function() { return resolveFilter; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "shallowReactive", function() { return shallowReactive; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "shallowReadonly", function() { return shallowReadonly; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "shallowRef", function() { return shallowRef; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "stop", function() { return stop; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toHandlers", function() { return toHandlers; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toRaw", function() { return toRaw; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toRef", function() { return toRef; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toRefs", function() { return toRefs; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "triggerRef", function() { return triggerRef; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "unref", function() { return unref; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "useAttrs", function() { return useAttrs; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "useSSRContext", function() { return useSSRContext; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "useSlots", function() { return useSlots; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "version", function() { return version; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "warn", function() { return warn$1; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "watch", function() { return watch; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "watchEffect", function() { return watchEffect; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "watchPostEffect", function() { return watchPostEffect; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "watchSyncEffect", function() { return watchSyncEffect; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "withAsyncContext", function() { return withAsyncContext; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "withCtx", function() { return withCtx; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "withDefaults", function() { return withDefaults; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "withDirectives", function() { return withDirectives; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "withModifiers", function() { return withModifiers; });
|
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "withScopeId", function() { return withScopeId; });
|
|
/* harmony import */ var _vue_shared__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @vue/shared */ 12);
|
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "camelize", function() { return _vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"]; });
|
|
|
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "normalizeClass", function() { return _vue_shared__WEBPACK_IMPORTED_MODULE_0__["normalizeClass"]; });
|
|
|
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "normalizeProps", function() { return _vue_shared__WEBPACK_IMPORTED_MODULE_0__["normalizeProps"]; });
|
|
|
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "normalizeStyle", function() { return _vue_shared__WEBPACK_IMPORTED_MODULE_0__["normalizeStyle"]; });
|
|
|
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "toDisplayString", function() { return _vue_shared__WEBPACK_IMPORTED_MODULE_0__["toDisplayString"]; });
|
|
|
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "toHandlerKey", function() { return _vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"]; });
|
|
|
|
|
|
|
|
|
|
// lifecycle
|
|
// App and Page
|
|
const ON_SHOW = 'onShow';
|
|
const ON_HIDE = 'onHide';
|
|
//App
|
|
const ON_LAUNCH = 'onLaunch';
|
|
const ON_ERROR = 'onError';
|
|
const ON_THEME_CHANGE = 'onThemeChange';
|
|
const ON_PAGE_NOT_FOUND = 'onPageNotFound';
|
|
const ON_UNHANDLE_REJECTION = 'onUnhandledRejection';
|
|
//Page
|
|
const ON_LOAD = 'onLoad';
|
|
const ON_READY = 'onReady';
|
|
const ON_UNLOAD = 'onUnload';
|
|
const ON_RESIZE = 'onResize';
|
|
const ON_BACK_PRESS = 'onBackPress';
|
|
const ON_PAGE_SCROLL = 'onPageScroll';
|
|
const ON_TAB_ITEM_TAP = 'onTabItemTap';
|
|
const ON_REACH_BOTTOM = 'onReachBottom';
|
|
const ON_PULL_DOWN_REFRESH = 'onPullDownRefresh';
|
|
const ON_SHARE_TIMELINE = 'onShareTimeline';
|
|
const ON_ADD_TO_FAVORITES = 'onAddToFavorites';
|
|
const ON_SHARE_APP_MESSAGE = 'onShareAppMessage';
|
|
// navigationBar
|
|
const ON_NAVIGATION_BAR_BUTTON_TAP = 'onNavigationBarButtonTap';
|
|
const ON_NAVIGATION_BAR_SEARCH_INPUT_CLICKED = 'onNavigationBarSearchInputClicked';
|
|
const ON_NAVIGATION_BAR_SEARCH_INPUT_CHANGED = 'onNavigationBarSearchInputChanged';
|
|
const ON_NAVIGATION_BAR_SEARCH_INPUT_CONFIRMED = 'onNavigationBarSearchInputConfirmed';
|
|
const ON_NAVIGATION_BAR_SEARCH_INPUT_FOCUS_CHANGED = 'onNavigationBarSearchInputFocusChanged';
|
|
|
|
const PAGE_HOOKS = [
|
|
ON_SHOW,
|
|
ON_HIDE,
|
|
ON_BACK_PRESS,
|
|
ON_PAGE_SCROLL,
|
|
ON_TAB_ITEM_TAP,
|
|
ON_REACH_BOTTOM,
|
|
ON_PULL_DOWN_REFRESH,
|
|
];
|
|
function isRootHook(name) {
|
|
return PAGE_HOOKS.indexOf(name) > -1;
|
|
}
|
|
const UniLifecycleHooks = [
|
|
ON_SHOW,
|
|
ON_HIDE,
|
|
ON_LAUNCH,
|
|
ON_ERROR,
|
|
ON_THEME_CHANGE,
|
|
ON_PAGE_NOT_FOUND,
|
|
ON_UNHANDLE_REJECTION,
|
|
ON_LOAD,
|
|
ON_READY,
|
|
ON_UNLOAD,
|
|
ON_RESIZE,
|
|
ON_BACK_PRESS,
|
|
ON_PAGE_SCROLL,
|
|
ON_TAB_ITEM_TAP,
|
|
ON_REACH_BOTTOM,
|
|
ON_PULL_DOWN_REFRESH,
|
|
ON_SHARE_TIMELINE,
|
|
ON_ADD_TO_FAVORITES,
|
|
ON_SHARE_APP_MESSAGE,
|
|
ON_NAVIGATION_BAR_BUTTON_TAP,
|
|
ON_NAVIGATION_BAR_SEARCH_INPUT_CLICKED,
|
|
ON_NAVIGATION_BAR_SEARCH_INPUT_CHANGED,
|
|
ON_NAVIGATION_BAR_SEARCH_INPUT_CONFIRMED,
|
|
ON_NAVIGATION_BAR_SEARCH_INPUT_FOCUS_CHANGED,
|
|
];
|
|
|
|
function warn(msg, ...args) {
|
|
console.warn(`[Vue warn] ${msg}`, ...args);
|
|
}
|
|
|
|
let activeEffectScope;
|
|
const effectScopeStack = [];
|
|
class EffectScope {
|
|
constructor(detached = false) {
|
|
this.active = true;
|
|
this.effects = [];
|
|
this.cleanups = [];
|
|
if (!detached && activeEffectScope) {
|
|
this.parent = activeEffectScope;
|
|
this.index =
|
|
(activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(this) - 1;
|
|
}
|
|
}
|
|
run(fn) {
|
|
if (this.active) {
|
|
try {
|
|
this.on();
|
|
return fn();
|
|
}
|
|
finally {
|
|
this.off();
|
|
}
|
|
}
|
|
else if ((true)) {
|
|
warn(`cannot run an inactive effect scope.`);
|
|
}
|
|
}
|
|
on() {
|
|
if (this.active) {
|
|
effectScopeStack.push(this);
|
|
activeEffectScope = this;
|
|
}
|
|
}
|
|
off() {
|
|
if (this.active) {
|
|
effectScopeStack.pop();
|
|
activeEffectScope = effectScopeStack[effectScopeStack.length - 1];
|
|
}
|
|
}
|
|
stop(fromParent) {
|
|
if (this.active) {
|
|
this.effects.forEach(e => e.stop());
|
|
this.cleanups.forEach(cleanup => cleanup());
|
|
if (this.scopes) {
|
|
this.scopes.forEach(e => e.stop(true));
|
|
}
|
|
// nested scope, dereference from parent to avoid memory leaks
|
|
if (this.parent && !fromParent) {
|
|
// optimized O(1) removal
|
|
const last = this.parent.scopes.pop();
|
|
if (last && last !== this) {
|
|
this.parent.scopes[this.index] = last;
|
|
last.index = this.index;
|
|
}
|
|
}
|
|
this.active = false;
|
|
}
|
|
}
|
|
}
|
|
function effectScope(detached) {
|
|
return new EffectScope(detached);
|
|
}
|
|
function recordEffectScope(effect, scope) {
|
|
scope = scope || activeEffectScope;
|
|
if (scope && scope.active) {
|
|
scope.effects.push(effect);
|
|
}
|
|
}
|
|
function getCurrentScope() {
|
|
return activeEffectScope;
|
|
}
|
|
function onScopeDispose(fn) {
|
|
if (activeEffectScope) {
|
|
activeEffectScope.cleanups.push(fn);
|
|
}
|
|
else if ((true)) {
|
|
warn(`onScopeDispose() is called when there is no active effect scope` +
|
|
` to be associated with.`);
|
|
}
|
|
}
|
|
|
|
const createDep = (effects) => {
|
|
const dep = new Set(effects);
|
|
dep.w = 0;
|
|
dep.n = 0;
|
|
return dep;
|
|
};
|
|
const wasTracked = (dep) => (dep.w & trackOpBit) > 0;
|
|
const newTracked = (dep) => (dep.n & trackOpBit) > 0;
|
|
const initDepMarkers = ({ deps }) => {
|
|
if (deps.length) {
|
|
for (let i = 0; i < deps.length; i++) {
|
|
deps[i].w |= trackOpBit; // set was tracked
|
|
}
|
|
}
|
|
};
|
|
const finalizeDepMarkers = (effect) => {
|
|
const { deps } = effect;
|
|
if (deps.length) {
|
|
let ptr = 0;
|
|
for (let i = 0; i < deps.length; i++) {
|
|
const dep = deps[i];
|
|
if (wasTracked(dep) && !newTracked(dep)) {
|
|
dep.delete(effect);
|
|
}
|
|
else {
|
|
deps[ptr++] = dep;
|
|
}
|
|
// clear bits
|
|
dep.w &= ~trackOpBit;
|
|
dep.n &= ~trackOpBit;
|
|
}
|
|
deps.length = ptr;
|
|
}
|
|
};
|
|
|
|
const targetMap = new WeakMap();
|
|
// The number of effects currently being tracked recursively.
|
|
let effectTrackDepth = 0;
|
|
let trackOpBit = 1;
|
|
/**
|
|
* The bitwise track markers support at most 30 levels op recursion.
|
|
* This value is chosen to enable modern JS engines to use a SMI on all platforms.
|
|
* When recursion depth is greater, fall back to using a full cleanup.
|
|
*/
|
|
const maxMarkerBits = 30;
|
|
const effectStack = [];
|
|
let activeEffect;
|
|
const ITERATE_KEY = Symbol(( true) ? 'iterate' : undefined);
|
|
const MAP_KEY_ITERATE_KEY = Symbol(( true) ? 'Map key iterate' : undefined);
|
|
class ReactiveEffect {
|
|
constructor(fn, scheduler = null, scope) {
|
|
this.fn = fn;
|
|
this.scheduler = scheduler;
|
|
this.active = true;
|
|
this.deps = [];
|
|
recordEffectScope(this, scope);
|
|
}
|
|
run() {
|
|
if (!this.active) {
|
|
return this.fn();
|
|
}
|
|
if (!effectStack.includes(this)) {
|
|
try {
|
|
effectStack.push((activeEffect = this));
|
|
enableTracking();
|
|
trackOpBit = 1 << ++effectTrackDepth;
|
|
if (effectTrackDepth <= maxMarkerBits) {
|
|
initDepMarkers(this);
|
|
}
|
|
else {
|
|
cleanupEffect(this);
|
|
}
|
|
return this.fn();
|
|
}
|
|
finally {
|
|
if (effectTrackDepth <= maxMarkerBits) {
|
|
finalizeDepMarkers(this);
|
|
}
|
|
trackOpBit = 1 << --effectTrackDepth;
|
|
resetTracking();
|
|
effectStack.pop();
|
|
const n = effectStack.length;
|
|
activeEffect = n > 0 ? effectStack[n - 1] : undefined;
|
|
}
|
|
}
|
|
}
|
|
stop() {
|
|
if (this.active) {
|
|
cleanupEffect(this);
|
|
if (this.onStop) {
|
|
this.onStop();
|
|
}
|
|
this.active = false;
|
|
}
|
|
}
|
|
}
|
|
function cleanupEffect(effect) {
|
|
const { deps } = effect;
|
|
if (deps.length) {
|
|
for (let i = 0; i < deps.length; i++) {
|
|
deps[i].delete(effect);
|
|
}
|
|
deps.length = 0;
|
|
}
|
|
}
|
|
function effect(fn, options) {
|
|
if (fn.effect) {
|
|
fn = fn.effect.fn;
|
|
}
|
|
const _effect = new ReactiveEffect(fn);
|
|
if (options) {
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(_effect, options);
|
|
if (options.scope)
|
|
recordEffectScope(_effect, options.scope);
|
|
}
|
|
if (!options || !options.lazy) {
|
|
_effect.run();
|
|
}
|
|
const runner = _effect.run.bind(_effect);
|
|
runner.effect = _effect;
|
|
return runner;
|
|
}
|
|
function stop(runner) {
|
|
runner.effect.stop();
|
|
}
|
|
let shouldTrack = true;
|
|
const trackStack = [];
|
|
function pauseTracking() {
|
|
trackStack.push(shouldTrack);
|
|
shouldTrack = false;
|
|
}
|
|
function enableTracking() {
|
|
trackStack.push(shouldTrack);
|
|
shouldTrack = true;
|
|
}
|
|
function resetTracking() {
|
|
const last = trackStack.pop();
|
|
shouldTrack = last === undefined ? true : last;
|
|
}
|
|
function track(target, type, key) {
|
|
if (!isTracking()) {
|
|
return;
|
|
}
|
|
let depsMap = targetMap.get(target);
|
|
if (!depsMap) {
|
|
targetMap.set(target, (depsMap = new Map()));
|
|
}
|
|
let dep = depsMap.get(key);
|
|
if (!dep) {
|
|
depsMap.set(key, (dep = createDep()));
|
|
}
|
|
const eventInfo = ( true)
|
|
? { effect: activeEffect, target, type, key }
|
|
: undefined;
|
|
trackEffects(dep, eventInfo);
|
|
}
|
|
function isTracking() {
|
|
return shouldTrack && activeEffect !== undefined;
|
|
}
|
|
function trackEffects(dep, debuggerEventExtraInfo) {
|
|
let shouldTrack = false;
|
|
if (effectTrackDepth <= maxMarkerBits) {
|
|
if (!newTracked(dep)) {
|
|
dep.n |= trackOpBit; // set newly tracked
|
|
shouldTrack = !wasTracked(dep);
|
|
}
|
|
}
|
|
else {
|
|
// Full cleanup mode.
|
|
shouldTrack = !dep.has(activeEffect);
|
|
}
|
|
if (shouldTrack) {
|
|
dep.add(activeEffect);
|
|
activeEffect.deps.push(dep);
|
|
if (( true) && activeEffect.onTrack) {
|
|
activeEffect.onTrack(Object.assign({
|
|
effect: activeEffect
|
|
}, debuggerEventExtraInfo));
|
|
}
|
|
}
|
|
}
|
|
function trigger(target, type, key, newValue, oldValue, oldTarget) {
|
|
const depsMap = targetMap.get(target);
|
|
if (!depsMap) {
|
|
// never been tracked
|
|
return;
|
|
}
|
|
let deps = [];
|
|
if (type === "clear" /* CLEAR */) {
|
|
// collection being cleared
|
|
// trigger all effects for target
|
|
deps = [...depsMap.values()];
|
|
}
|
|
else if (key === 'length' && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(target)) {
|
|
depsMap.forEach((dep, key) => {
|
|
if (key === 'length' || key >= newValue) {
|
|
deps.push(dep);
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
// schedule runs for SET | ADD | DELETE
|
|
if (key !== void 0) {
|
|
deps.push(depsMap.get(key));
|
|
}
|
|
// also run for iteration key on ADD | DELETE | Map.SET
|
|
switch (type) {
|
|
case "add" /* ADD */:
|
|
if (!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(target)) {
|
|
deps.push(depsMap.get(ITERATE_KEY));
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isMap"])(target)) {
|
|
deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));
|
|
}
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isIntegerKey"])(key)) {
|
|
// new index added to array -> length changes
|
|
deps.push(depsMap.get('length'));
|
|
}
|
|
break;
|
|
case "delete" /* DELETE */:
|
|
if (!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(target)) {
|
|
deps.push(depsMap.get(ITERATE_KEY));
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isMap"])(target)) {
|
|
deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));
|
|
}
|
|
}
|
|
break;
|
|
case "set" /* SET */:
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isMap"])(target)) {
|
|
deps.push(depsMap.get(ITERATE_KEY));
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
const eventInfo = ( true)
|
|
? { target, type, key, newValue, oldValue, oldTarget }
|
|
: undefined;
|
|
if (deps.length === 1) {
|
|
if (deps[0]) {
|
|
if ((true)) {
|
|
triggerEffects(deps[0], eventInfo);
|
|
}
|
|
else {}
|
|
}
|
|
}
|
|
else {
|
|
const effects = [];
|
|
for (const dep of deps) {
|
|
if (dep) {
|
|
effects.push(...dep);
|
|
}
|
|
}
|
|
if ((true)) {
|
|
triggerEffects(createDep(effects), eventInfo);
|
|
}
|
|
else {}
|
|
}
|
|
}
|
|
function triggerEffects(dep, debuggerEventExtraInfo) {
|
|
// spread into array for stabilization
|
|
for (const effect of Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(dep) ? dep : [...dep]) {
|
|
if (effect !== activeEffect || effect.allowRecurse) {
|
|
if (( true) && effect.onTrigger) {
|
|
effect.onTrigger(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])({ effect }, debuggerEventExtraInfo));
|
|
}
|
|
if (effect.scheduler) {
|
|
effect.scheduler();
|
|
}
|
|
else {
|
|
effect.run();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const isNonTrackableKeys = /*#__PURE__*/ Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["makeMap"])(`__proto__,__v_isRef,__isVue`);
|
|
const builtInSymbols = new Set(Object.getOwnPropertyNames(Symbol)
|
|
.map(key => Symbol[key])
|
|
.filter(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isSymbol"]));
|
|
const get = /*#__PURE__*/ createGetter();
|
|
const shallowGet = /*#__PURE__*/ createGetter(false, true);
|
|
const readonlyGet = /*#__PURE__*/ createGetter(true);
|
|
const shallowReadonlyGet = /*#__PURE__*/ createGetter(true, true);
|
|
const arrayInstrumentations = /*#__PURE__*/ createArrayInstrumentations();
|
|
function createArrayInstrumentations() {
|
|
const instrumentations = {};
|
|
['includes', 'indexOf', 'lastIndexOf'].forEach(key => {
|
|
instrumentations[key] = function (...args) {
|
|
const arr = toRaw(this);
|
|
for (let i = 0, l = this.length; i < l; i++) {
|
|
track(arr, "get" /* GET */, i + '');
|
|
}
|
|
// we run the method using the original args first (which may be reactive)
|
|
const res = arr[key](...args);
|
|
if (res === -1 || res === false) {
|
|
// if that didn't work, run it again using raw values.
|
|
return arr[key](...args.map(toRaw));
|
|
}
|
|
else {
|
|
return res;
|
|
}
|
|
};
|
|
});
|
|
['push', 'pop', 'shift', 'unshift', 'splice'].forEach(key => {
|
|
instrumentations[key] = function (...args) {
|
|
pauseTracking();
|
|
const res = toRaw(this)[key].apply(this, args);
|
|
resetTracking();
|
|
return res;
|
|
};
|
|
});
|
|
return instrumentations;
|
|
}
|
|
function createGetter(isReadonly = false, shallow = false) {
|
|
return function get(target, key, receiver) {
|
|
if (key === "__v_isReactive" /* IS_REACTIVE */) {
|
|
return !isReadonly;
|
|
}
|
|
else if (key === "__v_isReadonly" /* IS_READONLY */) {
|
|
return isReadonly;
|
|
}
|
|
else if (key === "__v_raw" /* RAW */ &&
|
|
receiver ===
|
|
(isReadonly
|
|
? shallow
|
|
? shallowReadonlyMap
|
|
: readonlyMap
|
|
: shallow
|
|
? shallowReactiveMap
|
|
: reactiveMap).get(target)) {
|
|
return target;
|
|
}
|
|
const targetIsArray = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(target);
|
|
if (!isReadonly && targetIsArray && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(arrayInstrumentations, key)) {
|
|
return Reflect.get(arrayInstrumentations, key, receiver);
|
|
}
|
|
const res = Reflect.get(target, key, receiver);
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isSymbol"])(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) {
|
|
return res;
|
|
}
|
|
if (!isReadonly) {
|
|
track(target, "get" /* GET */, key);
|
|
}
|
|
if (shallow) {
|
|
return res;
|
|
}
|
|
if (isRef(res)) {
|
|
// ref unwrapping - does not apply for Array + integer key.
|
|
const shouldUnwrap = !targetIsArray || !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isIntegerKey"])(key);
|
|
return shouldUnwrap ? res.value : res;
|
|
}
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(res)) {
|
|
// Convert returned value into a proxy as well. we do the isObject check
|
|
// here to avoid invalid value warning. Also need to lazy access readonly
|
|
// and reactive here to avoid circular dependency.
|
|
return isReadonly ? readonly(res) : reactive(res);
|
|
}
|
|
return res;
|
|
};
|
|
}
|
|
const set$1 = /*#__PURE__*/ createSetter();
|
|
const shallowSet = /*#__PURE__*/ createSetter(true);
|
|
function createSetter(shallow = false) {
|
|
return function set(target, key, value, receiver) {
|
|
let oldValue = target[key];
|
|
if (!shallow) {
|
|
value = toRaw(value);
|
|
oldValue = toRaw(oldValue);
|
|
if (!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(target) && isRef(oldValue) && !isRef(value)) {
|
|
oldValue.value = value;
|
|
return true;
|
|
}
|
|
}
|
|
const hadKey = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(target) && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isIntegerKey"])(key)
|
|
? Number(key) < target.length
|
|
: Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(target, key);
|
|
const result = Reflect.set(target, key, value, receiver);
|
|
// don't trigger if target is something up in the prototype chain of original
|
|
if (target === toRaw(receiver)) {
|
|
if (!hadKey) {
|
|
trigger(target, "add" /* ADD */, key, value);
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasChanged"])(value, oldValue)) {
|
|
trigger(target, "set" /* SET */, key, value, oldValue);
|
|
}
|
|
}
|
|
return result;
|
|
};
|
|
}
|
|
function deleteProperty(target, key) {
|
|
const hadKey = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(target, key);
|
|
const oldValue = target[key];
|
|
const result = Reflect.deleteProperty(target, key);
|
|
if (result && hadKey) {
|
|
trigger(target, "delete" /* DELETE */, key, undefined, oldValue);
|
|
}
|
|
return result;
|
|
}
|
|
function has(target, key) {
|
|
const result = Reflect.has(target, key);
|
|
if (!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isSymbol"])(key) || !builtInSymbols.has(key)) {
|
|
track(target, "has" /* HAS */, key);
|
|
}
|
|
return result;
|
|
}
|
|
function ownKeys(target) {
|
|
track(target, "iterate" /* ITERATE */, Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(target) ? 'length' : ITERATE_KEY);
|
|
return Reflect.ownKeys(target);
|
|
}
|
|
const mutableHandlers = {
|
|
get,
|
|
set: set$1,
|
|
deleteProperty,
|
|
has,
|
|
ownKeys
|
|
};
|
|
const readonlyHandlers = {
|
|
get: readonlyGet,
|
|
set(target, key) {
|
|
if ((true)) {
|
|
console.warn(`Set operation on key "${String(key)}" failed: target is readonly.`, target);
|
|
}
|
|
return true;
|
|
},
|
|
deleteProperty(target, key) {
|
|
if ((true)) {
|
|
console.warn(`Delete operation on key "${String(key)}" failed: target is readonly.`, target);
|
|
}
|
|
return true;
|
|
}
|
|
};
|
|
const shallowReactiveHandlers = /*#__PURE__*/ Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])({}, mutableHandlers, {
|
|
get: shallowGet,
|
|
set: shallowSet
|
|
});
|
|
// Props handlers are special in the sense that it should not unwrap top-level
|
|
// refs (in order to allow refs to be explicitly passed down), but should
|
|
// retain the reactivity of the normal readonly object.
|
|
const shallowReadonlyHandlers = /*#__PURE__*/ Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])({}, readonlyHandlers, {
|
|
get: shallowReadonlyGet
|
|
});
|
|
|
|
const toShallow = (value) => value;
|
|
const getProto = (v) => Reflect.getPrototypeOf(v);
|
|
function get$1(target, key, isReadonly = false, isShallow = false) {
|
|
// #1772: readonly(reactive(Map)) should return readonly + reactive version
|
|
// of the value
|
|
target = target["__v_raw" /* RAW */];
|
|
const rawTarget = toRaw(target);
|
|
const rawKey = toRaw(key);
|
|
if (key !== rawKey) {
|
|
!isReadonly && track(rawTarget, "get" /* GET */, key);
|
|
}
|
|
!isReadonly && track(rawTarget, "get" /* GET */, rawKey);
|
|
const { has } = getProto(rawTarget);
|
|
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
|
|
if (has.call(rawTarget, key)) {
|
|
return wrap(target.get(key));
|
|
}
|
|
else if (has.call(rawTarget, rawKey)) {
|
|
return wrap(target.get(rawKey));
|
|
}
|
|
else if (target !== rawTarget) {
|
|
// #3602 readonly(reactive(Map))
|
|
// ensure that the nested reactive `Map` can do tracking for itself
|
|
target.get(key);
|
|
}
|
|
}
|
|
function has$1(key, isReadonly = false) {
|
|
const target = this["__v_raw" /* RAW */];
|
|
const rawTarget = toRaw(target);
|
|
const rawKey = toRaw(key);
|
|
if (key !== rawKey) {
|
|
!isReadonly && track(rawTarget, "has" /* HAS */, key);
|
|
}
|
|
!isReadonly && track(rawTarget, "has" /* HAS */, rawKey);
|
|
return key === rawKey
|
|
? target.has(key)
|
|
: target.has(key) || target.has(rawKey);
|
|
}
|
|
function size(target, isReadonly = false) {
|
|
target = target["__v_raw" /* RAW */];
|
|
!isReadonly && track(toRaw(target), "iterate" /* ITERATE */, ITERATE_KEY);
|
|
return Reflect.get(target, 'size', target);
|
|
}
|
|
function add(value) {
|
|
value = toRaw(value);
|
|
const target = toRaw(this);
|
|
const proto = getProto(target);
|
|
const hadKey = proto.has.call(target, value);
|
|
if (!hadKey) {
|
|
target.add(value);
|
|
trigger(target, "add" /* ADD */, value, value);
|
|
}
|
|
return this;
|
|
}
|
|
function set$1$1(key, value) {
|
|
value = toRaw(value);
|
|
const target = toRaw(this);
|
|
const { has, get } = getProto(target);
|
|
let hadKey = has.call(target, key);
|
|
if (!hadKey) {
|
|
key = toRaw(key);
|
|
hadKey = has.call(target, key);
|
|
}
|
|
else if ((true)) {
|
|
checkIdentityKeys(target, has, key);
|
|
}
|
|
const oldValue = get.call(target, key);
|
|
target.set(key, value);
|
|
if (!hadKey) {
|
|
trigger(target, "add" /* ADD */, key, value);
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasChanged"])(value, oldValue)) {
|
|
trigger(target, "set" /* SET */, key, value, oldValue);
|
|
}
|
|
return this;
|
|
}
|
|
function deleteEntry(key) {
|
|
const target = toRaw(this);
|
|
const { has, get } = getProto(target);
|
|
let hadKey = has.call(target, key);
|
|
if (!hadKey) {
|
|
key = toRaw(key);
|
|
hadKey = has.call(target, key);
|
|
}
|
|
else if ((true)) {
|
|
checkIdentityKeys(target, has, key);
|
|
}
|
|
const oldValue = get ? get.call(target, key) : undefined;
|
|
// forward the operation before queueing reactions
|
|
const result = target.delete(key);
|
|
if (hadKey) {
|
|
trigger(target, "delete" /* DELETE */, key, undefined, oldValue);
|
|
}
|
|
return result;
|
|
}
|
|
function clear() {
|
|
const target = toRaw(this);
|
|
const hadItems = target.size !== 0;
|
|
const oldTarget = ( true)
|
|
? Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isMap"])(target)
|
|
? new Map(target)
|
|
: new Set(target)
|
|
: undefined;
|
|
// forward the operation before queueing reactions
|
|
const result = target.clear();
|
|
if (hadItems) {
|
|
trigger(target, "clear" /* CLEAR */, undefined, undefined, oldTarget);
|
|
}
|
|
return result;
|
|
}
|
|
function createForEach(isReadonly, isShallow) {
|
|
return function forEach(callback, thisArg) {
|
|
const observed = this;
|
|
const target = observed["__v_raw" /* RAW */];
|
|
const rawTarget = toRaw(target);
|
|
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
|
|
!isReadonly && track(rawTarget, "iterate" /* ITERATE */, ITERATE_KEY);
|
|
return target.forEach((value, key) => {
|
|
// important: make sure the callback is
|
|
// 1. invoked with the reactive map as `this` and 3rd arg
|
|
// 2. the value received should be a corresponding reactive/readonly.
|
|
return callback.call(thisArg, wrap(value), wrap(key), observed);
|
|
});
|
|
};
|
|
}
|
|
function createIterableMethod(method, isReadonly, isShallow) {
|
|
return function (...args) {
|
|
const target = this["__v_raw" /* RAW */];
|
|
const rawTarget = toRaw(target);
|
|
const targetIsMap = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isMap"])(rawTarget);
|
|
const isPair = method === 'entries' || (method === Symbol.iterator && targetIsMap);
|
|
const isKeyOnly = method === 'keys' && targetIsMap;
|
|
const innerIterator = target[method](...args);
|
|
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
|
|
!isReadonly &&
|
|
track(rawTarget, "iterate" /* ITERATE */, isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY);
|
|
// return a wrapped iterator which returns observed versions of the
|
|
// values emitted from the real iterator
|
|
return {
|
|
// iterator protocol
|
|
next() {
|
|
const { value, done } = innerIterator.next();
|
|
return done
|
|
? { value, done }
|
|
: {
|
|
value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value),
|
|
done
|
|
};
|
|
},
|
|
// iterable protocol
|
|
[Symbol.iterator]() {
|
|
return this;
|
|
}
|
|
};
|
|
};
|
|
}
|
|
function createReadonlyMethod(type) {
|
|
return function (...args) {
|
|
if ((true)) {
|
|
const key = args[0] ? `on key "${args[0]}" ` : ``;
|
|
console.warn(`${Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["capitalize"])(type)} operation ${key}failed: target is readonly.`, toRaw(this));
|
|
}
|
|
return type === "delete" /* DELETE */ ? false : this;
|
|
};
|
|
}
|
|
function createInstrumentations() {
|
|
const mutableInstrumentations = {
|
|
get(key) {
|
|
return get$1(this, key);
|
|
},
|
|
get size() {
|
|
return size(this);
|
|
},
|
|
has: has$1,
|
|
add,
|
|
set: set$1$1,
|
|
delete: deleteEntry,
|
|
clear,
|
|
forEach: createForEach(false, false)
|
|
};
|
|
const shallowInstrumentations = {
|
|
get(key) {
|
|
return get$1(this, key, false, true);
|
|
},
|
|
get size() {
|
|
return size(this);
|
|
},
|
|
has: has$1,
|
|
add,
|
|
set: set$1$1,
|
|
delete: deleteEntry,
|
|
clear,
|
|
forEach: createForEach(false, true)
|
|
};
|
|
const readonlyInstrumentations = {
|
|
get(key) {
|
|
return get$1(this, key, true);
|
|
},
|
|
get size() {
|
|
return size(this, true);
|
|
},
|
|
has(key) {
|
|
return has$1.call(this, key, true);
|
|
},
|
|
add: createReadonlyMethod("add" /* ADD */),
|
|
set: createReadonlyMethod("set" /* SET */),
|
|
delete: createReadonlyMethod("delete" /* DELETE */),
|
|
clear: createReadonlyMethod("clear" /* CLEAR */),
|
|
forEach: createForEach(true, false)
|
|
};
|
|
const shallowReadonlyInstrumentations = {
|
|
get(key) {
|
|
return get$1(this, key, true, true);
|
|
},
|
|
get size() {
|
|
return size(this, true);
|
|
},
|
|
has(key) {
|
|
return has$1.call(this, key, true);
|
|
},
|
|
add: createReadonlyMethod("add" /* ADD */),
|
|
set: createReadonlyMethod("set" /* SET */),
|
|
delete: createReadonlyMethod("delete" /* DELETE */),
|
|
clear: createReadonlyMethod("clear" /* CLEAR */),
|
|
forEach: createForEach(true, true)
|
|
};
|
|
const iteratorMethods = ['keys', 'values', 'entries', Symbol.iterator];
|
|
iteratorMethods.forEach(method => {
|
|
mutableInstrumentations[method] = createIterableMethod(method, false, false);
|
|
readonlyInstrumentations[method] = createIterableMethod(method, true, false);
|
|
shallowInstrumentations[method] = createIterableMethod(method, false, true);
|
|
shallowReadonlyInstrumentations[method] = createIterableMethod(method, true, true);
|
|
});
|
|
return [
|
|
mutableInstrumentations,
|
|
readonlyInstrumentations,
|
|
shallowInstrumentations,
|
|
shallowReadonlyInstrumentations
|
|
];
|
|
}
|
|
const [mutableInstrumentations, readonlyInstrumentations, shallowInstrumentations, shallowReadonlyInstrumentations] = /* #__PURE__*/ createInstrumentations();
|
|
function createInstrumentationGetter(isReadonly, shallow) {
|
|
const instrumentations = shallow
|
|
? isReadonly
|
|
? shallowReadonlyInstrumentations
|
|
: shallowInstrumentations
|
|
: isReadonly
|
|
? readonlyInstrumentations
|
|
: mutableInstrumentations;
|
|
return (target, key, receiver) => {
|
|
if (key === "__v_isReactive" /* IS_REACTIVE */) {
|
|
return !isReadonly;
|
|
}
|
|
else if (key === "__v_isReadonly" /* IS_READONLY */) {
|
|
return isReadonly;
|
|
}
|
|
else if (key === "__v_raw" /* RAW */) {
|
|
return target;
|
|
}
|
|
return Reflect.get(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(instrumentations, key) && key in target
|
|
? instrumentations
|
|
: target, key, receiver);
|
|
};
|
|
}
|
|
const mutableCollectionHandlers = {
|
|
get: /*#__PURE__*/ createInstrumentationGetter(false, false)
|
|
};
|
|
const shallowCollectionHandlers = {
|
|
get: /*#__PURE__*/ createInstrumentationGetter(false, true)
|
|
};
|
|
const readonlyCollectionHandlers = {
|
|
get: /*#__PURE__*/ createInstrumentationGetter(true, false)
|
|
};
|
|
const shallowReadonlyCollectionHandlers = {
|
|
get: /*#__PURE__*/ createInstrumentationGetter(true, true)
|
|
};
|
|
function checkIdentityKeys(target, has, key) {
|
|
const rawKey = toRaw(key);
|
|
if (rawKey !== key && has.call(target, rawKey)) {
|
|
const type = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toRawType"])(target);
|
|
console.warn(`Reactive ${type} contains both the raw and reactive ` +
|
|
`versions of the same object${type === `Map` ? ` as keys` : ``}, ` +
|
|
`which can lead to inconsistencies. ` +
|
|
`Avoid differentiating between the raw and reactive versions ` +
|
|
`of an object and only use the reactive version if possible.`);
|
|
}
|
|
}
|
|
|
|
const reactiveMap = new WeakMap();
|
|
const shallowReactiveMap = new WeakMap();
|
|
const readonlyMap = new WeakMap();
|
|
const shallowReadonlyMap = new WeakMap();
|
|
function targetTypeMap(rawType) {
|
|
switch (rawType) {
|
|
case 'Object':
|
|
case 'Array':
|
|
return 1 /* COMMON */;
|
|
case 'Map':
|
|
case 'Set':
|
|
case 'WeakMap':
|
|
case 'WeakSet':
|
|
return 2 /* COLLECTION */;
|
|
default:
|
|
return 0 /* INVALID */;
|
|
}
|
|
}
|
|
function getTargetType(value) {
|
|
return value["__v_skip" /* SKIP */] || !Object.isExtensible(value)
|
|
? 0 /* INVALID */
|
|
: targetTypeMap(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toRawType"])(value));
|
|
}
|
|
function reactive(target) {
|
|
// if trying to observe a readonly proxy, return the readonly version.
|
|
if (target && target["__v_isReadonly" /* IS_READONLY */]) {
|
|
return target;
|
|
}
|
|
return createReactiveObject(target, false, mutableHandlers, mutableCollectionHandlers, reactiveMap);
|
|
}
|
|
/**
|
|
* Return a shallowly-reactive copy of the original object, where only the root
|
|
* level properties are reactive. It also does not auto-unwrap refs (even at the
|
|
* root level).
|
|
*/
|
|
function shallowReactive(target) {
|
|
return createReactiveObject(target, false, shallowReactiveHandlers, shallowCollectionHandlers, shallowReactiveMap);
|
|
}
|
|
/**
|
|
* Creates a readonly copy of the original object. Note the returned copy is not
|
|
* made reactive, but `readonly` can be called on an already reactive object.
|
|
*/
|
|
function readonly(target) {
|
|
return createReactiveObject(target, true, readonlyHandlers, readonlyCollectionHandlers, readonlyMap);
|
|
}
|
|
/**
|
|
* Returns a reactive-copy of the original object, where only the root level
|
|
* properties are readonly, and does NOT unwrap refs nor recursively convert
|
|
* returned properties.
|
|
* This is used for creating the props proxy object for stateful components.
|
|
*/
|
|
function shallowReadonly(target) {
|
|
return createReactiveObject(target, true, shallowReadonlyHandlers, shallowReadonlyCollectionHandlers, shallowReadonlyMap);
|
|
}
|
|
function createReactiveObject(target, isReadonly, baseHandlers, collectionHandlers, proxyMap) {
|
|
if (!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(target)) {
|
|
if ((true)) {
|
|
console.warn(`value cannot be made reactive: ${String(target)}`);
|
|
}
|
|
return target;
|
|
}
|
|
// target is already a Proxy, return it.
|
|
// exception: calling readonly() on a reactive object
|
|
if (target["__v_raw" /* RAW */] &&
|
|
!(isReadonly && target["__v_isReactive" /* IS_REACTIVE */])) {
|
|
return target;
|
|
}
|
|
// target already has corresponding Proxy
|
|
const existingProxy = proxyMap.get(target);
|
|
if (existingProxy) {
|
|
return existingProxy;
|
|
}
|
|
// only a whitelist of value types can be observed.
|
|
const targetType = getTargetType(target);
|
|
if (targetType === 0 /* INVALID */) {
|
|
return target;
|
|
}
|
|
const proxy = new Proxy(target, targetType === 2 /* COLLECTION */ ? collectionHandlers : baseHandlers);
|
|
proxyMap.set(target, proxy);
|
|
return proxy;
|
|
}
|
|
function isReactive(value) {
|
|
if (isReadonly(value)) {
|
|
return isReactive(value["__v_raw" /* RAW */]);
|
|
}
|
|
return !!(value && value["__v_isReactive" /* IS_REACTIVE */]);
|
|
}
|
|
function isReadonly(value) {
|
|
return !!(value && value["__v_isReadonly" /* IS_READONLY */]);
|
|
}
|
|
function isProxy(value) {
|
|
return isReactive(value) || isReadonly(value);
|
|
}
|
|
function toRaw(observed) {
|
|
const raw = observed && observed["__v_raw" /* RAW */];
|
|
return raw ? toRaw(raw) : observed;
|
|
}
|
|
function markRaw(value) {
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["def"])(value, "__v_skip" /* SKIP */, true);
|
|
return value;
|
|
}
|
|
const toReactive = (value) => Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(value) ? reactive(value) : value;
|
|
const toReadonly = (value) => Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(value) ? readonly(value) : value;
|
|
|
|
function trackRefValue(ref) {
|
|
if (isTracking()) {
|
|
ref = toRaw(ref);
|
|
if (!ref.dep) {
|
|
ref.dep = createDep();
|
|
}
|
|
if ((true)) {
|
|
trackEffects(ref.dep, {
|
|
target: ref,
|
|
type: "get" /* GET */,
|
|
key: 'value'
|
|
});
|
|
}
|
|
else {}
|
|
}
|
|
}
|
|
function triggerRefValue(ref, newVal) {
|
|
ref = toRaw(ref);
|
|
if (ref.dep) {
|
|
if ((true)) {
|
|
triggerEffects(ref.dep, {
|
|
target: ref,
|
|
type: "set" /* SET */,
|
|
key: 'value',
|
|
newValue: newVal
|
|
});
|
|
}
|
|
else {}
|
|
}
|
|
}
|
|
function isRef(r) {
|
|
return Boolean(r && r.__v_isRef === true);
|
|
}
|
|
function ref(value) {
|
|
return createRef(value, false);
|
|
}
|
|
function shallowRef(value) {
|
|
return createRef(value, true);
|
|
}
|
|
function createRef(rawValue, shallow) {
|
|
if (isRef(rawValue)) {
|
|
return rawValue;
|
|
}
|
|
return new RefImpl(rawValue, shallow);
|
|
}
|
|
class RefImpl {
|
|
constructor(value, _shallow) {
|
|
this._shallow = _shallow;
|
|
this.dep = undefined;
|
|
this.__v_isRef = true;
|
|
this._rawValue = _shallow ? value : toRaw(value);
|
|
this._value = _shallow ? value : toReactive(value);
|
|
}
|
|
get value() {
|
|
trackRefValue(this);
|
|
return this._value;
|
|
}
|
|
set value(newVal) {
|
|
newVal = this._shallow ? newVal : toRaw(newVal);
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasChanged"])(newVal, this._rawValue)) {
|
|
this._rawValue = newVal;
|
|
this._value = this._shallow ? newVal : toReactive(newVal);
|
|
triggerRefValue(this, newVal);
|
|
}
|
|
}
|
|
}
|
|
function triggerRef(ref) {
|
|
triggerRefValue(ref, ( true) ? ref.value : undefined);
|
|
}
|
|
function unref(ref) {
|
|
return isRef(ref) ? ref.value : ref;
|
|
}
|
|
const shallowUnwrapHandlers = {
|
|
get: (target, key, receiver) => unref(Reflect.get(target, key, receiver)),
|
|
set: (target, key, value, receiver) => {
|
|
const oldValue = target[key];
|
|
if (isRef(oldValue) && !isRef(value)) {
|
|
oldValue.value = value;
|
|
return true;
|
|
}
|
|
else {
|
|
return Reflect.set(target, key, value, receiver);
|
|
}
|
|
}
|
|
};
|
|
function proxyRefs(objectWithRefs) {
|
|
return isReactive(objectWithRefs)
|
|
? objectWithRefs
|
|
: new Proxy(objectWithRefs, shallowUnwrapHandlers);
|
|
}
|
|
class CustomRefImpl {
|
|
constructor(factory) {
|
|
this.dep = undefined;
|
|
this.__v_isRef = true;
|
|
const { get, set } = factory(() => trackRefValue(this), () => triggerRefValue(this));
|
|
this._get = get;
|
|
this._set = set;
|
|
}
|
|
get value() {
|
|
return this._get();
|
|
}
|
|
set value(newVal) {
|
|
this._set(newVal);
|
|
}
|
|
}
|
|
function customRef(factory) {
|
|
return new CustomRefImpl(factory);
|
|
}
|
|
function toRefs(object) {
|
|
if (( true) && !isProxy(object)) {
|
|
console.warn(`toRefs() expects a reactive object but received a plain one.`);
|
|
}
|
|
const ret = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(object) ? new Array(object.length) : {};
|
|
for (const key in object) {
|
|
ret[key] = toRef(object, key);
|
|
}
|
|
return ret;
|
|
}
|
|
class ObjectRefImpl {
|
|
constructor(_object, _key) {
|
|
this._object = _object;
|
|
this._key = _key;
|
|
this.__v_isRef = true;
|
|
}
|
|
get value() {
|
|
return this._object[this._key];
|
|
}
|
|
set value(newVal) {
|
|
this._object[this._key] = newVal;
|
|
}
|
|
}
|
|
function toRef(object, key) {
|
|
const val = object[key];
|
|
return isRef(val) ? val : new ObjectRefImpl(object, key);
|
|
}
|
|
|
|
class ComputedRefImpl {
|
|
constructor(getter, _setter, isReadonly) {
|
|
this._setter = _setter;
|
|
this.dep = undefined;
|
|
this._dirty = true;
|
|
this.__v_isRef = true;
|
|
this.effect = new ReactiveEffect(getter, () => {
|
|
if (!this._dirty) {
|
|
this._dirty = true;
|
|
triggerRefValue(this);
|
|
}
|
|
});
|
|
this["__v_isReadonly" /* IS_READONLY */] = isReadonly;
|
|
}
|
|
get value() {
|
|
// the computed ref may get wrapped by other proxies e.g. readonly() #3376
|
|
const self = toRaw(this);
|
|
trackRefValue(self);
|
|
if (self._dirty) {
|
|
self._dirty = false;
|
|
self._value = self.effect.run();
|
|
}
|
|
return self._value;
|
|
}
|
|
set value(newValue) {
|
|
this._setter(newValue);
|
|
}
|
|
}
|
|
function computed(getterOrOptions, debugOptions) {
|
|
let getter;
|
|
let setter;
|
|
const onlyGetter = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(getterOrOptions);
|
|
if (onlyGetter) {
|
|
getter = getterOrOptions;
|
|
setter = ( true)
|
|
? () => {
|
|
console.warn('Write operation failed: computed value is readonly');
|
|
}
|
|
: undefined;
|
|
}
|
|
else {
|
|
getter = getterOrOptions.get;
|
|
setter = getterOrOptions.set;
|
|
}
|
|
const cRef = new ComputedRefImpl(getter, setter, onlyGetter || !setter);
|
|
if (( true) && debugOptions) {
|
|
cRef.effect.onTrack = debugOptions.onTrack;
|
|
cRef.effect.onTrigger = debugOptions.onTrigger;
|
|
}
|
|
return cRef;
|
|
}
|
|
|
|
function emit(event, ...args) {
|
|
}
|
|
const devtoolsComponentUpdated =
|
|
/*#__PURE__*/ createDevtoolsComponentHook("component:updated" /* COMPONENT_UPDATED */);
|
|
function createDevtoolsComponentHook(hook) {
|
|
return (component) => {
|
|
emit(hook, component.appContext.app, component.uid, component.parent ? component.parent.uid : undefined, component);
|
|
};
|
|
}
|
|
function devtoolsComponentEmit(component, event, params) {
|
|
emit("component:emit" /* COMPONENT_EMIT */, component.appContext.app, component, event, params);
|
|
}
|
|
|
|
function emit$1(instance, event, ...rawArgs) {
|
|
const props = instance.vnode.props || _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"];
|
|
if ((true)) {
|
|
const { emitsOptions, propsOptions: [propsOptions] } = instance;
|
|
if (emitsOptions) {
|
|
if (!(event in emitsOptions) &&
|
|
!(false )) {
|
|
if (!propsOptions || !(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"])(event) in propsOptions)) {
|
|
warn$1(`Component emitted event "${event}" but it is neither declared in ` +
|
|
`the emits option nor as an "${Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"])(event)}" prop.`);
|
|
}
|
|
}
|
|
else {
|
|
const validator = emitsOptions[event];
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(validator)) {
|
|
const isValid = validator(...rawArgs);
|
|
if (!isValid) {
|
|
warn$1(`Invalid event arguments: event validation failed for event "${event}".`);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
let args = rawArgs;
|
|
const isModelListener = event.startsWith('update:');
|
|
// for v-model update:xxx events, apply modifiers on args
|
|
const modelArg = isModelListener && event.slice(7);
|
|
if (modelArg && modelArg in props) {
|
|
const modifiersKey = `${modelArg === 'modelValue' ? 'model' : modelArg}Modifiers`;
|
|
const { number, trim } = props[modifiersKey] || _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"];
|
|
if (trim) {
|
|
args = rawArgs.map(a => a.trim());
|
|
}
|
|
else if (number) {
|
|
args = rawArgs.map(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toNumber"]);
|
|
}
|
|
}
|
|
if (true) {
|
|
devtoolsComponentEmit(instance, event, args);
|
|
}
|
|
if ((true)) {
|
|
const lowerCaseEvent = event.toLowerCase();
|
|
if (lowerCaseEvent !== event && props[Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"])(lowerCaseEvent)]) {
|
|
warn$1(`Event "${lowerCaseEvent}" is emitted in component ` +
|
|
`${formatComponentName(instance, instance.type)} but the handler is registered for "${event}". ` +
|
|
`Note that HTML attributes are case-insensitive and you cannot use ` +
|
|
`v-on to listen to camelCase events when using in-DOM templates. ` +
|
|
`You should probably use "${Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hyphenate"])(event)}" instead of "${event}".`);
|
|
}
|
|
}
|
|
let handlerName;
|
|
let handler = props[(handlerName = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"])(event))] ||
|
|
// also try camelCase event handler (#2249)
|
|
props[(handlerName = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"])(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"])(event)))];
|
|
// for v-model update:xxx events, also trigger kebab-case equivalent
|
|
// for props passed via kebab-case
|
|
if (!handler && isModelListener) {
|
|
handler = props[(handlerName = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"])(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hyphenate"])(event)))];
|
|
}
|
|
if (handler) {
|
|
callWithAsyncErrorHandling(handler, instance, 6 /* COMPONENT_EVENT_HANDLER */, args);
|
|
}
|
|
const onceHandler = props[handlerName + `Once`];
|
|
if (onceHandler) {
|
|
if (!instance.emitted) {
|
|
instance.emitted = {};
|
|
}
|
|
else if (instance.emitted[handlerName]) {
|
|
return;
|
|
}
|
|
instance.emitted[handlerName] = true;
|
|
callWithAsyncErrorHandling(onceHandler, instance, 6 /* COMPONENT_EVENT_HANDLER */, args);
|
|
}
|
|
}
|
|
function normalizeEmitsOptions(comp, appContext, asMixin = false) {
|
|
const cache = appContext.emitsCache;
|
|
const cached = cache.get(comp);
|
|
if (cached !== undefined) {
|
|
return cached;
|
|
}
|
|
const raw = comp.emits;
|
|
let normalized = {};
|
|
// apply mixin/extends props
|
|
let hasExtends = false;
|
|
if ( true && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(comp)) {
|
|
const extendEmits = (raw) => {
|
|
const normalizedFromExtend = normalizeEmitsOptions(raw, appContext, true);
|
|
if (normalizedFromExtend) {
|
|
hasExtends = true;
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(normalized, normalizedFromExtend);
|
|
}
|
|
};
|
|
if (!asMixin && appContext.mixins.length) {
|
|
appContext.mixins.forEach(extendEmits);
|
|
}
|
|
if (comp.extends) {
|
|
extendEmits(comp.extends);
|
|
}
|
|
if (comp.mixins) {
|
|
comp.mixins.forEach(extendEmits);
|
|
}
|
|
}
|
|
if (!raw && !hasExtends) {
|
|
cache.set(comp, null);
|
|
return null;
|
|
}
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(raw)) {
|
|
raw.forEach(key => (normalized[key] = null));
|
|
}
|
|
else {
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(normalized, raw);
|
|
}
|
|
cache.set(comp, normalized);
|
|
return normalized;
|
|
}
|
|
// Check if an incoming prop key is a declared emit event listener.
|
|
// e.g. With `emits: { click: null }`, props named `onClick` and `onclick` are
|
|
// both considered matched listeners.
|
|
function isEmitListener(options, key) {
|
|
if (!options || !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isOn"])(key)) {
|
|
return false;
|
|
}
|
|
key = key.slice(2).replace(/Once$/, '');
|
|
return (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(options, key[0].toLowerCase() + key.slice(1)) ||
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(options, Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hyphenate"])(key)) ||
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(options, key));
|
|
}
|
|
|
|
/**
|
|
* mark the current rendering instance for asset resolution (e.g.
|
|
* resolveComponent, resolveDirective) during render
|
|
*/
|
|
let currentRenderingInstance = null;
|
|
let currentScopeId = null;
|
|
/**
|
|
* Note: rendering calls maybe nested. The function returns the parent rendering
|
|
* instance if present, which should be restored after the render is done:
|
|
*
|
|
* ```js
|
|
* const prev = setCurrentRenderingInstance(i)
|
|
* // ...render
|
|
* setCurrentRenderingInstance(prev)
|
|
* ```
|
|
*/
|
|
function setCurrentRenderingInstance(instance) {
|
|
const prev = currentRenderingInstance;
|
|
currentRenderingInstance = instance;
|
|
currentScopeId = (instance && instance.type.__scopeId) || null;
|
|
return prev;
|
|
}
|
|
/**
|
|
* Only for backwards compat
|
|
* @private
|
|
*/
|
|
const withScopeId = (_id) => withCtx;
|
|
/**
|
|
* Wrap a slot function to memoize current rendering instance
|
|
* @private compiler helper
|
|
*/
|
|
function withCtx(fn, ctx = currentRenderingInstance, isNonScopedSlot // false only
|
|
) {
|
|
if (!ctx)
|
|
return fn;
|
|
// already normalized
|
|
if (fn._n) {
|
|
return fn;
|
|
}
|
|
const renderFnWithContext = (...args) => {
|
|
// If a user calls a compiled slot inside a template expression (#1745), it
|
|
// can mess up block tracking, so by default we disable block tracking and
|
|
// force bail out when invoking a compiled slot (indicated by the ._d flag).
|
|
// This isn't necessary if rendering a compiled `<slot>`, so we flip the
|
|
// ._d flag off when invoking the wrapped fn inside `renderSlot`.
|
|
if (renderFnWithContext._d) {
|
|
setBlockTracking(-1);
|
|
}
|
|
const prevInstance = setCurrentRenderingInstance(ctx);
|
|
const res = fn(...args);
|
|
setCurrentRenderingInstance(prevInstance);
|
|
if (renderFnWithContext._d) {
|
|
setBlockTracking(1);
|
|
}
|
|
if (true) {
|
|
devtoolsComponentUpdated(ctx);
|
|
}
|
|
return res;
|
|
};
|
|
// mark normalized to avoid duplicated wrapping
|
|
renderFnWithContext._n = true;
|
|
// mark this as compiled by default
|
|
// this is used in vnode.ts -> normalizeChildren() to set the slot
|
|
// rendering flag.
|
|
renderFnWithContext._c = true;
|
|
// disable block tracking by default
|
|
renderFnWithContext._d = true;
|
|
return renderFnWithContext;
|
|
}
|
|
|
|
function markAttrsAccessed() {
|
|
}
|
|
|
|
function provide(key, value) {
|
|
if (!currentInstance) {
|
|
if ((true)) {
|
|
warn$1(`provide() can only be used inside setup().`);
|
|
}
|
|
}
|
|
else {
|
|
let provides = currentInstance.provides;
|
|
// by default an instance inherits its parent's provides object
|
|
// but when it needs to provide values of its own, it creates its
|
|
// own provides object using parent provides object as prototype.
|
|
// this way in `inject` we can simply look up injections from direct
|
|
// parent and let the prototype chain do the work.
|
|
const parentProvides = currentInstance.parent && currentInstance.parent.provides;
|
|
if (parentProvides === provides) {
|
|
provides = currentInstance.provides = Object.create(parentProvides);
|
|
}
|
|
// TS doesn't allow symbol as index type
|
|
provides[key] = value;
|
|
}
|
|
}
|
|
function inject(key, defaultValue, treatDefaultAsFactory = false) {
|
|
// fallback to `currentRenderingInstance` so that this can be called in
|
|
// a functional component
|
|
const instance = currentInstance || currentRenderingInstance;
|
|
if (instance) {
|
|
// #2400
|
|
// to support `app.use` plugins,
|
|
// fallback to appContext's `provides` if the intance is at root
|
|
const provides = instance.parent == null
|
|
? instance.vnode.appContext && instance.vnode.appContext.provides
|
|
: instance.parent.provides;
|
|
if (provides && key in provides) {
|
|
// TS doesn't allow symbol as index type
|
|
return provides[key];
|
|
}
|
|
else if (arguments.length > 1) {
|
|
return treatDefaultAsFactory && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(defaultValue)
|
|
? defaultValue.call(instance.proxy)
|
|
: defaultValue;
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`injection "${String(key)}" not found.`);
|
|
}
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`inject() can only be used inside setup() or functional components.`);
|
|
}
|
|
}
|
|
|
|
// implementation, close to no-op
|
|
function defineComponent(options) {
|
|
return Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(options) ? { setup: options, name: options.name } : options;
|
|
}
|
|
|
|
const isKeepAlive = (vnode) => vnode.type.__isKeepAlive;
|
|
function onActivated(hook, target) {
|
|
registerKeepAliveHook(hook, "a" /* ACTIVATED */, target);
|
|
}
|
|
function onDeactivated(hook, target) {
|
|
registerKeepAliveHook(hook, "da" /* DEACTIVATED */, target);
|
|
}
|
|
function registerKeepAliveHook(hook, type, target = currentInstance) {
|
|
// cache the deactivate branch check wrapper for injected hooks so the same
|
|
// hook can be properly deduped by the scheduler. "__wdc" stands for "with
|
|
// deactivation check".
|
|
const wrappedHook = hook.__wdc ||
|
|
(hook.__wdc = () => {
|
|
// only fire the hook if the target instance is NOT in a deactivated branch.
|
|
let current = target;
|
|
while (current) {
|
|
if (current.isDeactivated) {
|
|
return;
|
|
}
|
|
current = current.parent;
|
|
}
|
|
hook();
|
|
});
|
|
injectHook(type, wrappedHook, target);
|
|
// In addition to registering it on the target instance, we walk up the parent
|
|
// chain and register it on all ancestor instances that are keep-alive roots.
|
|
// This avoids the need to walk the entire component tree when invoking these
|
|
// hooks, and more importantly, avoids the need to track child components in
|
|
// arrays.
|
|
if (target) {
|
|
let current = target.parent;
|
|
while (current && current.parent) {
|
|
if (isKeepAlive(current.parent.vnode)) {
|
|
injectToKeepAliveRoot(wrappedHook, type, target, current);
|
|
}
|
|
current = current.parent;
|
|
}
|
|
}
|
|
}
|
|
function injectToKeepAliveRoot(hook, type, target, keepAliveRoot) {
|
|
// injectHook wraps the original for error handling, so make sure to remove
|
|
// the wrapped version.
|
|
const injected = injectHook(type, hook, keepAliveRoot, true /* prepend */);
|
|
onUnmounted(() => {
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["remove"])(keepAliveRoot[type], injected);
|
|
}, target);
|
|
}
|
|
|
|
function injectHook(type, hook, target = currentInstance, prepend = false) {
|
|
if (target) {
|
|
// fixed by xxxxxx
|
|
if (isRootHook(type)) {
|
|
target = target.root;
|
|
}
|
|
const hooks = target[type] || (target[type] = []);
|
|
// cache the error handling wrapper for injected hooks so the same hook
|
|
// can be properly deduped by the scheduler. "__weh" stands for "with error
|
|
// handling".
|
|
const wrappedHook = hook.__weh ||
|
|
(hook.__weh = (...args) => {
|
|
if (target.isUnmounted) {
|
|
return;
|
|
}
|
|
// disable tracking inside all lifecycle hooks
|
|
// since they can potentially be called inside effects.
|
|
pauseTracking();
|
|
// Set currentInstance during hook invocation.
|
|
// This assumes the hook does not synchronously trigger other hooks, which
|
|
// can only be false when the user does something really funky.
|
|
setCurrentInstance(target); // fixed by xxxxxx
|
|
const res = callWithAsyncErrorHandling(hook, target, type, args);
|
|
unsetCurrentInstance();
|
|
resetTracking();
|
|
return res;
|
|
});
|
|
if (prepend) {
|
|
hooks.unshift(wrappedHook);
|
|
}
|
|
else {
|
|
hooks.push(wrappedHook);
|
|
}
|
|
return wrappedHook;
|
|
}
|
|
else if ((true)) {
|
|
const apiName = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"])(ErrorTypeStrings[type].replace(/ hook$/, ''));
|
|
warn$1(`${apiName} is called when there is no active component instance to be ` +
|
|
`associated with. ` +
|
|
`Lifecycle injection APIs can only be used during execution of setup().` +
|
|
(``));
|
|
}
|
|
}
|
|
const createHook = (lifecycle) => (hook, target = currentInstance) =>
|
|
// post-create lifecycle registrations are noops during SSR (except for serverPrefetch)
|
|
(!isInSSRComponentSetup || lifecycle === "sp" /* SERVER_PREFETCH */) &&
|
|
injectHook(lifecycle, hook, target);
|
|
const onBeforeMount = createHook("bm" /* BEFORE_MOUNT */);
|
|
const onMounted = createHook("m" /* MOUNTED */);
|
|
const onBeforeUpdate = createHook("bu" /* BEFORE_UPDATE */);
|
|
const onUpdated = createHook("u" /* UPDATED */);
|
|
const onBeforeUnmount = createHook("bum" /* BEFORE_UNMOUNT */);
|
|
const onUnmounted = createHook("um" /* UNMOUNTED */);
|
|
const onServerPrefetch = createHook("sp" /* SERVER_PREFETCH */);
|
|
const onRenderTriggered = createHook("rtg" /* RENDER_TRIGGERED */);
|
|
const onRenderTracked = createHook("rtc" /* RENDER_TRACKED */);
|
|
function onErrorCaptured(hook, target = currentInstance) {
|
|
injectHook("ec" /* ERROR_CAPTURED */, hook, target);
|
|
}
|
|
|
|
function createDuplicateChecker() {
|
|
const cache = Object.create(null);
|
|
return (type, key) => {
|
|
if (cache[key]) {
|
|
warn$1(`${type} property "${key}" is already defined in ${cache[key]}.`);
|
|
}
|
|
else {
|
|
cache[key] = type;
|
|
}
|
|
};
|
|
}
|
|
let shouldCacheAccess = true;
|
|
function applyOptions$1(instance) {
|
|
const options = resolveMergedOptions(instance);
|
|
const publicThis = instance.proxy;
|
|
const ctx = instance.ctx;
|
|
// do not cache property access on public proxy during state initialization
|
|
shouldCacheAccess = false;
|
|
// call beforeCreate first before accessing other options since
|
|
// the hook may mutate resolved options (#2791)
|
|
if (options.beforeCreate) {
|
|
callHook(options.beforeCreate, instance, "bc" /* BEFORE_CREATE */);
|
|
}
|
|
const {
|
|
// state
|
|
data: dataOptions, computed: computedOptions, methods, watch: watchOptions, provide: provideOptions, inject: injectOptions,
|
|
// lifecycle
|
|
created, beforeMount, mounted, beforeUpdate, updated, activated, deactivated, beforeDestroy, beforeUnmount, destroyed, unmounted, render, renderTracked, renderTriggered, errorCaptured, serverPrefetch,
|
|
// public API
|
|
expose, inheritAttrs,
|
|
// assets
|
|
components, directives, filters } = options;
|
|
const checkDuplicateProperties = ( true) ? createDuplicateChecker() : undefined;
|
|
if ((true)) {
|
|
const [propsOptions] = instance.propsOptions;
|
|
if (propsOptions) {
|
|
for (const key in propsOptions) {
|
|
checkDuplicateProperties("Props" /* PROPS */, key);
|
|
}
|
|
}
|
|
}
|
|
// options initialization order (to be consistent with Vue 2):
|
|
// - props (already done outside of this function)
|
|
// - inject
|
|
// - methods
|
|
// - data (deferred since it relies on `this` access)
|
|
// - computed
|
|
// - watch (deferred since it relies on `this` access)
|
|
// fixed by xxxxxx
|
|
if ( true && injectOptions) {
|
|
resolveInjections(injectOptions, ctx, checkDuplicateProperties, instance.appContext.config.unwrapInjectedRef);
|
|
}
|
|
if (methods) {
|
|
for (const key in methods) {
|
|
const methodHandler = methods[key];
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(methodHandler)) {
|
|
// In dev mode, we use the `createRenderContext` function to define
|
|
// methods to the proxy target, and those are read-only but
|
|
// reconfigurable, so it needs to be redefined here
|
|
if ((true)) {
|
|
Object.defineProperty(ctx, key, {
|
|
value: methodHandler.bind(publicThis),
|
|
configurable: true,
|
|
enumerable: true,
|
|
writable: true
|
|
});
|
|
}
|
|
else {}
|
|
if ((true)) {
|
|
checkDuplicateProperties("Methods" /* METHODS */, key);
|
|
}
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`Method "${key}" has type "${typeof methodHandler}" in the component definition. ` +
|
|
`Did you reference the function correctly?`);
|
|
}
|
|
}
|
|
}
|
|
if (dataOptions) {
|
|
if (( true) && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(dataOptions)) {
|
|
warn$1(`The data option must be a function. ` +
|
|
`Plain object usage is no longer supported.`);
|
|
}
|
|
const data = dataOptions.call(publicThis, publicThis);
|
|
if (( true) && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isPromise"])(data)) {
|
|
warn$1(`data() returned a Promise - note data() cannot be async; If you ` +
|
|
`intend to perform data fetching before component renders, use ` +
|
|
`async setup() + <Suspense>.`);
|
|
}
|
|
if (!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(data)) {
|
|
( true) && warn$1(`data() should return an object.`);
|
|
}
|
|
else {
|
|
instance.data = reactive(data);
|
|
if ((true)) {
|
|
for (const key in data) {
|
|
checkDuplicateProperties("Data" /* DATA */, key);
|
|
// expose data on ctx during dev
|
|
if (key[0] !== '$' && key[0] !== '_') {
|
|
Object.defineProperty(ctx, key, {
|
|
configurable: true,
|
|
enumerable: true,
|
|
get: () => data[key],
|
|
set: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"]
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// state initialization complete at this point - start caching access
|
|
shouldCacheAccess = true;
|
|
if (computedOptions) {
|
|
for (const key in computedOptions) {
|
|
const opt = computedOptions[key];
|
|
const get = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(opt)
|
|
? opt.bind(publicThis, publicThis)
|
|
: Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(opt.get)
|
|
? opt.get.bind(publicThis, publicThis)
|
|
: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"];
|
|
if (( true) && get === _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"]) {
|
|
warn$1(`Computed property "${key}" has no getter.`);
|
|
}
|
|
const set = !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(opt) && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(opt.set)
|
|
? opt.set.bind(publicThis)
|
|
: ( true)
|
|
? () => {
|
|
warn$1(`Write operation failed: computed property "${key}" is readonly.`);
|
|
}
|
|
: undefined;
|
|
const c = computed({
|
|
get,
|
|
set
|
|
});
|
|
Object.defineProperty(ctx, key, {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => c.value,
|
|
set: v => (c.value = v)
|
|
});
|
|
if ((true)) {
|
|
checkDuplicateProperties("Computed" /* COMPUTED */, key);
|
|
}
|
|
}
|
|
}
|
|
if (watchOptions) {
|
|
for (const key in watchOptions) {
|
|
createWatcher(watchOptions[key], ctx, publicThis, key);
|
|
}
|
|
}
|
|
// fixed by xxxxxx
|
|
if (true) {
|
|
if (provideOptions) {
|
|
const provides = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(provideOptions)
|
|
? provideOptions.call(publicThis)
|
|
: provideOptions;
|
|
Reflect.ownKeys(provides).forEach(key => {
|
|
provide(key, provides[key]);
|
|
});
|
|
}
|
|
}
|
|
// fixed by xxxxxx
|
|
if (false) {}
|
|
else {
|
|
if (created) {
|
|
callHook(created, instance, "c" /* CREATED */);
|
|
}
|
|
}
|
|
function registerLifecycleHook(register, hook) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(hook)) {
|
|
hook.forEach(_hook => register(_hook.bind(publicThis)));
|
|
}
|
|
else if (hook) {
|
|
register(hook.bind(publicThis));
|
|
}
|
|
}
|
|
registerLifecycleHook(onBeforeMount, beforeMount);
|
|
registerLifecycleHook(onMounted, mounted);
|
|
registerLifecycleHook(onBeforeUpdate, beforeUpdate);
|
|
registerLifecycleHook(onUpdated, updated);
|
|
registerLifecycleHook(onActivated, activated);
|
|
registerLifecycleHook(onDeactivated, deactivated);
|
|
registerLifecycleHook(onErrorCaptured, errorCaptured);
|
|
registerLifecycleHook(onRenderTracked, renderTracked);
|
|
registerLifecycleHook(onRenderTriggered, renderTriggered);
|
|
registerLifecycleHook(onBeforeUnmount, beforeUnmount);
|
|
registerLifecycleHook(onUnmounted, unmounted);
|
|
registerLifecycleHook(onServerPrefetch, serverPrefetch);
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(expose)) {
|
|
if (expose.length) {
|
|
const exposed = instance.exposed || (instance.exposed = {});
|
|
expose.forEach(key => {
|
|
Object.defineProperty(exposed, key, {
|
|
get: () => publicThis[key],
|
|
set: val => (publicThis[key] = val)
|
|
});
|
|
});
|
|
}
|
|
else if (!instance.exposed) {
|
|
instance.exposed = {};
|
|
}
|
|
}
|
|
// options that are handled when creating the instance but also need to be
|
|
// applied from mixins
|
|
if (render && instance.render === _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"]) {
|
|
instance.render = render;
|
|
}
|
|
if (inheritAttrs != null) {
|
|
instance.inheritAttrs = inheritAttrs;
|
|
}
|
|
// asset options.
|
|
if (components)
|
|
instance.components = components;
|
|
if (directives)
|
|
instance.directives = directives;
|
|
// fixed by xxxxxx
|
|
if (instance.ctx.$onApplyOptions) {
|
|
instance.ctx.$onApplyOptions(options, instance, publicThis);
|
|
}
|
|
}
|
|
function resolveInjections(injectOptions, ctx, checkDuplicateProperties = _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"], unwrapRef = false) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(injectOptions)) {
|
|
injectOptions = normalizeInject(injectOptions);
|
|
}
|
|
for (const key in injectOptions) {
|
|
const opt = injectOptions[key];
|
|
let injected;
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(opt)) {
|
|
if ('default' in opt) {
|
|
injected = inject(opt.from || key, opt.default, true /* treat default function as factory */);
|
|
}
|
|
else {
|
|
injected = inject(opt.from || key);
|
|
}
|
|
}
|
|
else {
|
|
injected = inject(opt);
|
|
}
|
|
if (isRef(injected)) {
|
|
// TODO remove the check in 3.3
|
|
if (unwrapRef) {
|
|
Object.defineProperty(ctx, key, {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => injected.value,
|
|
set: v => (injected.value = v)
|
|
});
|
|
}
|
|
else {
|
|
if ((true)) {
|
|
warn$1(`injected property "${key}" is a ref and will be auto-unwrapped ` +
|
|
`and no longer needs \`.value\` in the next minor release. ` +
|
|
`To opt-in to the new behavior now, ` +
|
|
`set \`app.config.unwrapInjectedRef = true\` (this config is ` +
|
|
`temporary and will not be needed in the future.)`);
|
|
}
|
|
ctx[key] = injected;
|
|
}
|
|
}
|
|
else {
|
|
ctx[key] = injected;
|
|
}
|
|
if ((true)) {
|
|
checkDuplicateProperties("Inject" /* INJECT */, key);
|
|
}
|
|
}
|
|
}
|
|
function callHook(hook, instance, type) {
|
|
callWithAsyncErrorHandling(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(hook)
|
|
? hook.map(h => h.bind(instance.proxy))
|
|
: hook.bind(instance.proxy), instance, type);
|
|
}
|
|
function createWatcher(raw, ctx, publicThis, key) {
|
|
const getter = key.includes('.')
|
|
? createPathGetter(publicThis, key)
|
|
: () => publicThis[key];
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(raw)) {
|
|
const handler = ctx[raw];
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(handler)) {
|
|
watch(getter, handler);
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`Invalid watch handler specified by key "${raw}"`, handler);
|
|
}
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(raw)) {
|
|
watch(getter, raw.bind(publicThis));
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(raw)) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(raw)) {
|
|
raw.forEach(r => createWatcher(r, ctx, publicThis, key));
|
|
}
|
|
else {
|
|
const handler = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(raw.handler)
|
|
? raw.handler.bind(publicThis)
|
|
: ctx[raw.handler];
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(handler)) {
|
|
watch(getter, handler, raw);
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`Invalid watch handler specified by key "${raw.handler}"`, handler);
|
|
}
|
|
}
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`Invalid watch option: "${key}"`, raw);
|
|
}
|
|
}
|
|
/**
|
|
* Resolve merged options and cache it on the component.
|
|
* This is done only once per-component since the merging does not involve
|
|
* instances.
|
|
*/
|
|
function resolveMergedOptions(instance) {
|
|
const base = instance.type;
|
|
const { mixins, extends: extendsOptions } = base;
|
|
const { mixins: globalMixins, optionsCache: cache, config: { optionMergeStrategies } } = instance.appContext;
|
|
const cached = cache.get(base);
|
|
let resolved;
|
|
if (cached) {
|
|
resolved = cached;
|
|
}
|
|
else if (!globalMixins.length && !mixins && !extendsOptions) {
|
|
{
|
|
resolved = base;
|
|
}
|
|
}
|
|
else {
|
|
resolved = {};
|
|
if (globalMixins.length) {
|
|
globalMixins.forEach(m => mergeOptions(resolved, m, optionMergeStrategies, true));
|
|
}
|
|
mergeOptions(resolved, base, optionMergeStrategies);
|
|
}
|
|
cache.set(base, resolved);
|
|
return resolved;
|
|
}
|
|
function mergeOptions(to, from, strats, asMixin = false) {
|
|
const { mixins, extends: extendsOptions } = from;
|
|
if (extendsOptions) {
|
|
mergeOptions(to, extendsOptions, strats, true);
|
|
}
|
|
if (mixins) {
|
|
mixins.forEach((m) => mergeOptions(to, m, strats, true));
|
|
}
|
|
for (const key in from) {
|
|
if (asMixin && key === 'expose') {
|
|
( true) &&
|
|
warn$1(`"expose" option is ignored when declared in mixins or extends. ` +
|
|
`It should only be declared in the base component itself.`);
|
|
}
|
|
else {
|
|
const strat = internalOptionMergeStrats[key] || (strats && strats[key]);
|
|
to[key] = strat ? strat(to[key], from[key]) : from[key];
|
|
}
|
|
}
|
|
return to;
|
|
}
|
|
const internalOptionMergeStrats = {
|
|
data: mergeDataFn,
|
|
props: mergeObjectOptions,
|
|
emits: mergeObjectOptions,
|
|
// objects
|
|
methods: mergeObjectOptions,
|
|
computed: mergeObjectOptions,
|
|
// lifecycle
|
|
beforeCreate: mergeAsArray$1,
|
|
created: mergeAsArray$1,
|
|
beforeMount: mergeAsArray$1,
|
|
mounted: mergeAsArray$1,
|
|
beforeUpdate: mergeAsArray$1,
|
|
updated: mergeAsArray$1,
|
|
beforeDestroy: mergeAsArray$1,
|
|
beforeUnmount: mergeAsArray$1,
|
|
destroyed: mergeAsArray$1,
|
|
unmounted: mergeAsArray$1,
|
|
activated: mergeAsArray$1,
|
|
deactivated: mergeAsArray$1,
|
|
errorCaptured: mergeAsArray$1,
|
|
serverPrefetch: mergeAsArray$1,
|
|
// assets
|
|
components: mergeObjectOptions,
|
|
directives: mergeObjectOptions,
|
|
// watch
|
|
watch: mergeWatchOptions,
|
|
// provide / inject
|
|
provide: mergeDataFn,
|
|
inject: mergeInject
|
|
};
|
|
function mergeDataFn(to, from) {
|
|
if (!from) {
|
|
return to;
|
|
}
|
|
if (!to) {
|
|
return from;
|
|
}
|
|
return function mergedDataFn() {
|
|
return (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"]))(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(to) ? to.call(this, this) : to, Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(from) ? from.call(this, this) : from);
|
|
};
|
|
}
|
|
function mergeInject(to, from) {
|
|
return mergeObjectOptions(normalizeInject(to), normalizeInject(from));
|
|
}
|
|
function normalizeInject(raw) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(raw)) {
|
|
const res = {};
|
|
for (let i = 0; i < raw.length; i++) {
|
|
res[raw[i]] = raw[i];
|
|
}
|
|
return res;
|
|
}
|
|
return raw;
|
|
}
|
|
function mergeAsArray$1(to, from) {
|
|
return to ? [...new Set([].concat(to, from))] : from;
|
|
}
|
|
function mergeObjectOptions(to, from) {
|
|
return to ? Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(Object.create(null), to), from) : from;
|
|
}
|
|
function mergeWatchOptions(to, from) {
|
|
if (!to)
|
|
return from;
|
|
if (!from)
|
|
return to;
|
|
const merged = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(Object.create(null), to);
|
|
for (const key in from) {
|
|
merged[key] = mergeAsArray$1(to[key], from[key]);
|
|
}
|
|
return merged;
|
|
}
|
|
|
|
function initProps(instance, rawProps, isStateful, // result of bitwise flag comparison
|
|
isSSR = false) {
|
|
const props = {};
|
|
const attrs = {};
|
|
// def(attrs, InternalObjectKey, 1) // fixed by xxxxxx
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["def"])(attrs, '__vInternal', 1);
|
|
instance.propsDefaults = Object.create(null);
|
|
setFullProps(instance, rawProps, props, attrs);
|
|
// ensure all declared prop keys are present
|
|
for (const key in instance.propsOptions[0]) {
|
|
if (!(key in props)) {
|
|
props[key] = undefined;
|
|
}
|
|
}
|
|
// validation
|
|
if ((true)) {
|
|
validateProps(rawProps || {}, props, instance);
|
|
}
|
|
if (isStateful) {
|
|
// stateful
|
|
instance.props = isSSR ? props : shallowReactive(props);
|
|
}
|
|
else {
|
|
if (!instance.type.props) {
|
|
// functional w/ optional props, props === attrs
|
|
instance.props = attrs;
|
|
}
|
|
else {
|
|
// functional w/ declared props
|
|
instance.props = props;
|
|
}
|
|
}
|
|
instance.attrs = attrs;
|
|
}
|
|
function setFullProps(instance, rawProps, props, attrs) {
|
|
const [options, needCastKeys] = instance.propsOptions;
|
|
let hasAttrsChanged = false;
|
|
let rawCastValues;
|
|
if (rawProps) {
|
|
for (let key in rawProps) {
|
|
// key, ref are reserved and never passed down
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isReservedProp"])(key)) {
|
|
continue;
|
|
}
|
|
const value = rawProps[key];
|
|
// prop option names are camelized during normalization, so to support
|
|
// kebab -> camel conversion here we need to camelize the key.
|
|
let camelKey;
|
|
if (options && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(options, (camelKey = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"])(key)))) {
|
|
if (!needCastKeys || !needCastKeys.includes(camelKey)) {
|
|
props[camelKey] = value;
|
|
}
|
|
else {
|
|
(rawCastValues || (rawCastValues = {}))[camelKey] = value;
|
|
}
|
|
}
|
|
else if (!isEmitListener(instance.emitsOptions, key)) {
|
|
if (value !== attrs[key]) {
|
|
attrs[key] = value;
|
|
hasAttrsChanged = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (needCastKeys) {
|
|
const rawCurrentProps = toRaw(props);
|
|
const castValues = rawCastValues || _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"];
|
|
for (let i = 0; i < needCastKeys.length; i++) {
|
|
const key = needCastKeys[i];
|
|
props[key] = resolvePropValue(options, rawCurrentProps, key, castValues[key], instance, !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(castValues, key));
|
|
}
|
|
}
|
|
return hasAttrsChanged;
|
|
}
|
|
function resolvePropValue(options, props, key, value, instance, isAbsent) {
|
|
const opt = options[key];
|
|
if (opt != null) {
|
|
const hasDefault = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(opt, 'default');
|
|
// default values
|
|
if (hasDefault && value === undefined) {
|
|
const defaultValue = opt.default;
|
|
if (opt.type !== Function && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(defaultValue)) {
|
|
const { propsDefaults } = instance;
|
|
if (key in propsDefaults) {
|
|
value = propsDefaults[key];
|
|
}
|
|
else {
|
|
setCurrentInstance(instance);
|
|
value = propsDefaults[key] = defaultValue.call(null, props);
|
|
unsetCurrentInstance();
|
|
}
|
|
}
|
|
else {
|
|
value = defaultValue;
|
|
}
|
|
}
|
|
// boolean casting
|
|
if (opt[0 /* shouldCast */]) {
|
|
if (isAbsent && !hasDefault) {
|
|
value = false;
|
|
}
|
|
else if (opt[1 /* shouldCastTrue */] &&
|
|
(value === '' || value === Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hyphenate"])(key))) {
|
|
value = true;
|
|
}
|
|
}
|
|
}
|
|
return value;
|
|
}
|
|
function normalizePropsOptions(comp, appContext, asMixin = false) {
|
|
const cache = appContext.propsCache;
|
|
const cached = cache.get(comp);
|
|
if (cached) {
|
|
return cached;
|
|
}
|
|
const raw = comp.props;
|
|
const normalized = {};
|
|
const needCastKeys = [];
|
|
// apply mixin/extends props
|
|
let hasExtends = false;
|
|
if ( true && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(comp)) {
|
|
const extendProps = (raw) => {
|
|
hasExtends = true;
|
|
const [props, keys] = normalizePropsOptions(raw, appContext, true);
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(normalized, props);
|
|
if (keys)
|
|
needCastKeys.push(...keys);
|
|
};
|
|
if (!asMixin && appContext.mixins.length) {
|
|
appContext.mixins.forEach(extendProps);
|
|
}
|
|
if (comp.extends) {
|
|
extendProps(comp.extends);
|
|
}
|
|
if (comp.mixins) {
|
|
comp.mixins.forEach(extendProps);
|
|
}
|
|
}
|
|
if (!raw && !hasExtends) {
|
|
cache.set(comp, _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_ARR"]);
|
|
return _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_ARR"];
|
|
}
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(raw)) {
|
|
for (let i = 0; i < raw.length; i++) {
|
|
if (( true) && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(raw[i])) {
|
|
warn$1(`props must be strings when using array syntax.`, raw[i]);
|
|
}
|
|
const normalizedKey = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"])(raw[i]);
|
|
if (validatePropName(normalizedKey)) {
|
|
normalized[normalizedKey] = _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"];
|
|
}
|
|
}
|
|
}
|
|
else if (raw) {
|
|
if (( true) && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(raw)) {
|
|
warn$1(`invalid props options`, raw);
|
|
}
|
|
for (const key in raw) {
|
|
const normalizedKey = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"])(key);
|
|
if (validatePropName(normalizedKey)) {
|
|
const opt = raw[key];
|
|
const prop = (normalized[normalizedKey] =
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(opt) || Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(opt) ? { type: opt } : opt);
|
|
if (prop) {
|
|
const booleanIndex = getTypeIndex(Boolean, prop.type);
|
|
const stringIndex = getTypeIndex(String, prop.type);
|
|
prop[0 /* shouldCast */] = booleanIndex > -1;
|
|
prop[1 /* shouldCastTrue */] =
|
|
stringIndex < 0 || booleanIndex < stringIndex;
|
|
// if the prop needs boolean casting or default value
|
|
if (booleanIndex > -1 || Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(prop, 'default')) {
|
|
needCastKeys.push(normalizedKey);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
const res = [normalized, needCastKeys];
|
|
cache.set(comp, res);
|
|
return res;
|
|
}
|
|
function validatePropName(key) {
|
|
if (key[0] !== '$') {
|
|
return true;
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`Invalid prop name: "${key}" is a reserved property.`);
|
|
}
|
|
return false;
|
|
}
|
|
// use function string name to check type constructors
|
|
// so that it works across vms / iframes.
|
|
function getType(ctor) {
|
|
const match = ctor && ctor.toString().match(/^\s*function (\w+)/);
|
|
return match ? match[1] : ctor === null ? 'null' : '';
|
|
}
|
|
function isSameType(a, b) {
|
|
return getType(a) === getType(b);
|
|
}
|
|
function getTypeIndex(type, expectedTypes) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(expectedTypes)) {
|
|
return expectedTypes.findIndex(t => isSameType(t, type));
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(expectedTypes)) {
|
|
return isSameType(expectedTypes, type) ? 0 : -1;
|
|
}
|
|
return -1;
|
|
}
|
|
/**
|
|
* dev only
|
|
*/
|
|
function validateProps(rawProps, props, instance) {
|
|
const resolvedValues = toRaw(props);
|
|
const options = instance.propsOptions[0];
|
|
for (const key in options) {
|
|
let opt = options[key];
|
|
if (opt == null)
|
|
continue;
|
|
validateProp(key, resolvedValues[key], opt, !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(rawProps, key) && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(rawProps, Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hyphenate"])(key)));
|
|
}
|
|
}
|
|
/**
|
|
* dev only
|
|
*/
|
|
function validateProp(name, value, prop, isAbsent) {
|
|
const { type, required, validator } = prop;
|
|
// required!
|
|
if (required && isAbsent) {
|
|
warn$1('Missing required prop: "' + name + '"');
|
|
return;
|
|
}
|
|
// missing but optional
|
|
if (value == null && !prop.required) {
|
|
return;
|
|
}
|
|
// type check
|
|
if (type != null && type !== true) {
|
|
let isValid = false;
|
|
const types = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(type) ? type : [type];
|
|
const expectedTypes = [];
|
|
// value is valid as long as one of the specified types match
|
|
for (let i = 0; i < types.length && !isValid; i++) {
|
|
const { valid, expectedType } = assertType(value, types[i]);
|
|
expectedTypes.push(expectedType || '');
|
|
isValid = valid;
|
|
}
|
|
if (!isValid) {
|
|
warn$1(getInvalidTypeMessage(name, value, expectedTypes));
|
|
return;
|
|
}
|
|
}
|
|
// custom validator
|
|
if (validator && !validator(value)) {
|
|
warn$1('Invalid prop: custom validator check failed for prop "' + name + '".');
|
|
}
|
|
}
|
|
const isSimpleType = /*#__PURE__*/ Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["makeMap"])('String,Number,Boolean,Function,Symbol,BigInt');
|
|
/**
|
|
* dev only
|
|
*/
|
|
function assertType(value, type) {
|
|
let valid;
|
|
const expectedType = getType(type);
|
|
if (isSimpleType(expectedType)) {
|
|
const t = typeof value;
|
|
valid = t === expectedType.toLowerCase();
|
|
// for primitive wrapper objects
|
|
if (!valid && t === 'object') {
|
|
valid = value instanceof type;
|
|
}
|
|
}
|
|
else if (expectedType === 'Object') {
|
|
valid = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(value);
|
|
}
|
|
else if (expectedType === 'Array') {
|
|
valid = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(value);
|
|
}
|
|
else if (expectedType === 'null') {
|
|
valid = value === null;
|
|
}
|
|
else {
|
|
valid = value instanceof type;
|
|
}
|
|
return {
|
|
valid,
|
|
expectedType
|
|
};
|
|
}
|
|
/**
|
|
* dev only
|
|
*/
|
|
function getInvalidTypeMessage(name, value, expectedTypes) {
|
|
let message = `Invalid prop: type check failed for prop "${name}".` +
|
|
` Expected ${expectedTypes.map(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["capitalize"]).join(' | ')}`;
|
|
const expectedType = expectedTypes[0];
|
|
const receivedType = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toRawType"])(value);
|
|
const expectedValue = styleValue(value, expectedType);
|
|
const receivedValue = styleValue(value, receivedType);
|
|
// check if we need to specify expected value
|
|
if (expectedTypes.length === 1 &&
|
|
isExplicable(expectedType) &&
|
|
!isBoolean(expectedType, receivedType)) {
|
|
message += ` with value ${expectedValue}`;
|
|
}
|
|
message += `, got ${receivedType} `;
|
|
// check if we need to specify received value
|
|
if (isExplicable(receivedType)) {
|
|
message += `with value ${receivedValue}.`;
|
|
}
|
|
return message;
|
|
}
|
|
/**
|
|
* dev only
|
|
*/
|
|
function styleValue(value, type) {
|
|
if (type === 'String') {
|
|
return `"${value}"`;
|
|
}
|
|
else if (type === 'Number') {
|
|
return `${Number(value)}`;
|
|
}
|
|
else {
|
|
return `${value}`;
|
|
}
|
|
}
|
|
/**
|
|
* dev only
|
|
*/
|
|
function isExplicable(type) {
|
|
const explicitTypes = ['string', 'number', 'boolean'];
|
|
return explicitTypes.some(elem => type.toLowerCase() === elem);
|
|
}
|
|
/**
|
|
* dev only
|
|
*/
|
|
function isBoolean(...args) {
|
|
return args.some(elem => elem.toLowerCase() === 'boolean');
|
|
}
|
|
|
|
/**
|
|
Runtime helper for applying directives to a vnode. Example usage:
|
|
|
|
const comp = resolveComponent('comp')
|
|
const foo = resolveDirective('foo')
|
|
const bar = resolveDirective('bar')
|
|
|
|
return withDirectives(h(comp), [
|
|
[foo, this.x],
|
|
[bar, this.y]
|
|
])
|
|
*/
|
|
const isBuiltInDirective = /*#__PURE__*/ Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["makeMap"])('bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text');
|
|
function validateDirectiveName(name) {
|
|
if (isBuiltInDirective(name)) {
|
|
warn$1('Do not use built-in directive ids as custom directive id: ' + name);
|
|
}
|
|
}
|
|
/**
|
|
* Adds directives to a VNode.
|
|
*/
|
|
function withDirectives(vnode, directives) {
|
|
const internalInstance = currentRenderingInstance;
|
|
if (internalInstance === null) {
|
|
( true) && warn$1(`withDirectives can only be used inside render functions.`);
|
|
return vnode;
|
|
}
|
|
const instance = internalInstance.proxy;
|
|
const bindings = vnode.dirs || (vnode.dirs = []);
|
|
for (let i = 0; i < directives.length; i++) {
|
|
let [dir, value, arg, modifiers = _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"]] = directives[i];
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(dir)) {
|
|
dir = {
|
|
mounted: dir,
|
|
updated: dir
|
|
};
|
|
}
|
|
if (dir.deep) {
|
|
traverse(value);
|
|
}
|
|
bindings.push({
|
|
dir,
|
|
instance,
|
|
value,
|
|
oldValue: void 0,
|
|
arg,
|
|
modifiers
|
|
});
|
|
}
|
|
return vnode;
|
|
}
|
|
|
|
function createAppContext() {
|
|
return {
|
|
app: null,
|
|
config: {
|
|
isNativeTag: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NO"],
|
|
performance: false,
|
|
globalProperties: {},
|
|
optionMergeStrategies: {},
|
|
errorHandler: undefined,
|
|
warnHandler: undefined,
|
|
compilerOptions: {}
|
|
},
|
|
mixins: [],
|
|
components: {},
|
|
directives: {},
|
|
provides: Object.create(null),
|
|
optionsCache: new WeakMap(),
|
|
propsCache: new WeakMap(),
|
|
emitsCache: new WeakMap()
|
|
};
|
|
}
|
|
let uid = 0;
|
|
function createAppAPI(render, // fixed by xxxxxx
|
|
hydrate) {
|
|
return function createApp(rootComponent, rootProps = null) {
|
|
if (rootProps != null && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(rootProps)) {
|
|
( true) && warn$1(`root props passed to app.mount() must be an object.`);
|
|
rootProps = null;
|
|
}
|
|
const context = createAppContext();
|
|
const installedPlugins = new Set();
|
|
// fixed by xxxxxx
|
|
// let isMounted = false
|
|
const app = (context.app = {
|
|
_uid: uid++,
|
|
_component: rootComponent,
|
|
_props: rootProps,
|
|
_container: null,
|
|
_context: context,
|
|
_instance: null,
|
|
version,
|
|
get config() {
|
|
return context.config;
|
|
},
|
|
set config(v) {
|
|
if ((true)) {
|
|
warn$1(`app.config cannot be replaced. Modify individual options instead.`);
|
|
}
|
|
},
|
|
use(plugin, ...options) {
|
|
if (installedPlugins.has(plugin)) {
|
|
( true) && warn$1(`Plugin has already been applied to target app.`);
|
|
}
|
|
else if (plugin && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(plugin.install)) {
|
|
installedPlugins.add(plugin);
|
|
plugin.install(app, ...options);
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(plugin)) {
|
|
installedPlugins.add(plugin);
|
|
plugin(app, ...options);
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`A plugin must either be a function or an object with an "install" ` +
|
|
`function.`);
|
|
}
|
|
return app;
|
|
},
|
|
mixin(mixin) {
|
|
if (true) {
|
|
if (!context.mixins.includes(mixin)) {
|
|
context.mixins.push(mixin);
|
|
}
|
|
else if ((true)) {
|
|
warn$1('Mixin has already been applied to target app' +
|
|
(mixin.name ? `: ${mixin.name}` : ''));
|
|
}
|
|
}
|
|
else {}
|
|
return app;
|
|
},
|
|
component(name, component) {
|
|
if ((true)) {
|
|
validateComponentName(name, context.config);
|
|
}
|
|
if (!component) {
|
|
return context.components[name];
|
|
}
|
|
if (( true) && context.components[name]) {
|
|
warn$1(`Component "${name}" has already been registered in target app.`);
|
|
}
|
|
context.components[name] = component;
|
|
return app;
|
|
},
|
|
directive(name, directive) {
|
|
if ((true)) {
|
|
validateDirectiveName(name);
|
|
}
|
|
if (!directive) {
|
|
return context.directives[name];
|
|
}
|
|
if (( true) && context.directives[name]) {
|
|
warn$1(`Directive "${name}" has already been registered in target app.`);
|
|
}
|
|
context.directives[name] = directive;
|
|
return app;
|
|
},
|
|
// fixed by xxxxxx
|
|
mount() { },
|
|
// fixed by xxxxxx
|
|
unmount() { },
|
|
provide(key, value) {
|
|
if (( true) && key in context.provides) {
|
|
warn$1(`App already provides property with key "${String(key)}". ` +
|
|
`It will be overwritten with the new value.`);
|
|
}
|
|
// TypeScript doesn't allow symbols as index type
|
|
// https://github.com/Microsoft/TypeScript/issues/24587
|
|
context.provides[key] = value;
|
|
return app;
|
|
}
|
|
});
|
|
// fixed by xxxxxx
|
|
// if (false) {
|
|
// installAppCompatProperties(app, context, render)
|
|
// }
|
|
return app;
|
|
};
|
|
}
|
|
|
|
const queuePostRenderEffect = queuePostFlushCb;
|
|
|
|
const isTeleport = (type) => type.__isTeleport;
|
|
|
|
const COMPONENTS = 'components';
|
|
const DIRECTIVES = 'directives';
|
|
/**
|
|
* @private
|
|
*/
|
|
function resolveComponent(name, maybeSelfReference) {
|
|
return resolveAsset(COMPONENTS, name, true, maybeSelfReference) || name;
|
|
}
|
|
const NULL_DYNAMIC_COMPONENT = Symbol();
|
|
/**
|
|
* @private
|
|
*/
|
|
function resolveDirective(name) {
|
|
return resolveAsset(DIRECTIVES, name);
|
|
}
|
|
// implementation
|
|
function resolveAsset(type, name, warnMissing = true, maybeSelfReference = false) {
|
|
const instance = currentRenderingInstance || currentInstance;
|
|
if (instance) {
|
|
const Component = instance.type;
|
|
// explicit self name has highest priority
|
|
if (type === COMPONENTS) {
|
|
const selfName = getComponentName(Component);
|
|
if (selfName &&
|
|
(selfName === name ||
|
|
selfName === Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"])(name) ||
|
|
selfName === Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["capitalize"])(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"])(name)))) {
|
|
return Component;
|
|
}
|
|
}
|
|
const res =
|
|
// local registration
|
|
// check instance[type] first which is resolved for options API
|
|
resolve(instance[type] || Component[type], name) ||
|
|
// global registration
|
|
resolve(instance.appContext[type], name);
|
|
if (!res && maybeSelfReference) {
|
|
// fallback to implicit self-reference
|
|
return Component;
|
|
}
|
|
if (( true) && warnMissing && !res) {
|
|
const extra = type === COMPONENTS
|
|
? `\nIf this is a native custom element, make sure to exclude it from ` +
|
|
`component resolution via compilerOptions.isCustomElement.`
|
|
: ``;
|
|
warn$1(`Failed to resolve ${type.slice(0, -1)}: ${name}${extra}`);
|
|
}
|
|
return res;
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`resolve${Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["capitalize"])(type.slice(0, -1))} ` +
|
|
`can only be used in render() or setup().`);
|
|
}
|
|
}
|
|
function resolve(registry, name) {
|
|
return (registry &&
|
|
(registry[name] ||
|
|
registry[Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"])(name)] ||
|
|
registry[Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["capitalize"])(Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["camelize"])(name))]));
|
|
}
|
|
|
|
const Fragment = Symbol(( true) ? 'Fragment' : undefined);
|
|
const Text = Symbol(( true) ? 'Text' : undefined);
|
|
const Comment = Symbol(( true) ? 'Comment' : undefined);
|
|
Symbol(( true) ? 'Static' : undefined);
|
|
let currentBlock = null;
|
|
// Whether we should be tracking dynamic child nodes inside a block.
|
|
// Only tracks when this value is > 0
|
|
// We are not using a simple boolean because this value may need to be
|
|
// incremented/decremented by nested usage of v-once (see below)
|
|
let isBlockTreeEnabled = 1;
|
|
/**
|
|
* Block tracking sometimes needs to be disabled, for example during the
|
|
* creation of a tree that needs to be cached by v-once. The compiler generates
|
|
* code like this:
|
|
*
|
|
* ``` js
|
|
* _cache[1] || (
|
|
* setBlockTracking(-1),
|
|
* _cache[1] = createVNode(...),
|
|
* setBlockTracking(1),
|
|
* _cache[1]
|
|
* )
|
|
* ```
|
|
*
|
|
* @private
|
|
*/
|
|
function setBlockTracking(value) {
|
|
isBlockTreeEnabled += value;
|
|
}
|
|
function isVNode(value) {
|
|
return value ? value.__v_isVNode === true : false;
|
|
}
|
|
const createVNodeWithArgsTransform = (...args) => {
|
|
return _createVNode(...(args));
|
|
};
|
|
const InternalObjectKey = `__vInternal`;
|
|
const normalizeKey = ({ key }) => key != null ? key : null;
|
|
const normalizeRef = ({ ref }) => {
|
|
return (ref != null
|
|
? Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(ref) || isRef(ref) || Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(ref)
|
|
? { i: currentRenderingInstance, r: ref }
|
|
: ref
|
|
: null);
|
|
};
|
|
function createBaseVNode(type, props = null, children = null, patchFlag = 0, dynamicProps = null, shapeFlag = type === Fragment ? 0 : 1 /* ELEMENT */, isBlockNode = false, needFullChildrenNormalization = false) {
|
|
const vnode = {
|
|
__v_isVNode: true,
|
|
__v_skip: true,
|
|
type,
|
|
props,
|
|
key: props && normalizeKey(props),
|
|
ref: props && normalizeRef(props),
|
|
scopeId: currentScopeId,
|
|
slotScopeIds: null,
|
|
children,
|
|
component: null,
|
|
suspense: null,
|
|
ssContent: null,
|
|
ssFallback: null,
|
|
dirs: null,
|
|
transition: null,
|
|
el: null,
|
|
anchor: null,
|
|
target: null,
|
|
targetAnchor: null,
|
|
staticCount: 0,
|
|
shapeFlag,
|
|
patchFlag,
|
|
dynamicProps,
|
|
dynamicChildren: null,
|
|
appContext: null
|
|
};
|
|
if (needFullChildrenNormalization) {
|
|
normalizeChildren(vnode, children);
|
|
}
|
|
else if (children) {
|
|
// compiled element vnode - if children is passed, only possible types are
|
|
// string or Array.
|
|
vnode.shapeFlag |= Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(children)
|
|
? 8 /* TEXT_CHILDREN */
|
|
: 16 /* ARRAY_CHILDREN */;
|
|
}
|
|
// validate key
|
|
if (( true) && vnode.key !== vnode.key) {
|
|
warn$1(`VNode created with invalid key (NaN). VNode type:`, vnode.type);
|
|
}
|
|
// track vnode for block tree
|
|
if (isBlockTreeEnabled > 0 &&
|
|
// avoid a block node from tracking itself
|
|
!isBlockNode &&
|
|
// has current parent block
|
|
currentBlock &&
|
|
// presence of a patch flag indicates this node needs patching on updates.
|
|
// component nodes also should always be patched, because even if the
|
|
// component doesn't need to update, it needs to persist the instance on to
|
|
// the next vnode so that it can be properly unmounted later.
|
|
(vnode.patchFlag > 0 || shapeFlag & 6 /* COMPONENT */) &&
|
|
// the EVENTS flag is only for hydration and if it is the only flag, the
|
|
// vnode should not be considered dynamic due to handler caching.
|
|
vnode.patchFlag !== 32 /* HYDRATE_EVENTS */) {
|
|
currentBlock.push(vnode);
|
|
}
|
|
return vnode;
|
|
}
|
|
const createVNode = (( true) ? createVNodeWithArgsTransform : undefined);
|
|
function _createVNode(type, props = null, children = null, patchFlag = 0, dynamicProps = null, isBlockNode = false) {
|
|
if (!type || type === NULL_DYNAMIC_COMPONENT) {
|
|
if (( true) && !type) {
|
|
warn$1(`Invalid vnode type when creating vnode: ${type}.`);
|
|
}
|
|
type = Comment;
|
|
}
|
|
if (isVNode(type)) {
|
|
// createVNode receiving an existing vnode. This happens in cases like
|
|
// <component :is="vnode"/>
|
|
// #2078 make sure to merge refs during the clone instead of overwriting it
|
|
const cloned = cloneVNode(type, props, true /* mergeRef: true */);
|
|
if (children) {
|
|
normalizeChildren(cloned, children);
|
|
}
|
|
return cloned;
|
|
}
|
|
// class component normalization.
|
|
if (isClassComponent(type)) {
|
|
type = type.__vccOpts;
|
|
}
|
|
// class & style normalization.
|
|
if (props) {
|
|
// for reactive or proxy objects, we need to clone it to enable mutation.
|
|
props = guardReactiveProps(props);
|
|
let { class: klass, style } = props;
|
|
if (klass && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(klass)) {
|
|
props.class = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["normalizeClass"])(klass);
|
|
}
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(style)) {
|
|
// reactive state objects need to be cloned since they are likely to be
|
|
// mutated
|
|
if (isProxy(style) && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(style)) {
|
|
style = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])({}, style);
|
|
}
|
|
props.style = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["normalizeStyle"])(style);
|
|
}
|
|
}
|
|
// encode the vnode type information into a bitmap
|
|
const shapeFlag = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(type)
|
|
? 1 /* ELEMENT */
|
|
: isTeleport(type)
|
|
? 64 /* TELEPORT */
|
|
: Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(type)
|
|
? 4 /* STATEFUL_COMPONENT */
|
|
: Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(type)
|
|
? 2 /* FUNCTIONAL_COMPONENT */
|
|
: 0;
|
|
if (( true) && shapeFlag & 4 /* STATEFUL_COMPONENT */ && isProxy(type)) {
|
|
type = toRaw(type);
|
|
warn$1(`Vue received a Component which was made a reactive object. This can ` +
|
|
`lead to unnecessary performance overhead, and should be avoided by ` +
|
|
`marking the component with \`markRaw\` or using \`shallowRef\` ` +
|
|
`instead of \`ref\`.`, `\nComponent that was made reactive: `, type);
|
|
}
|
|
return createBaseVNode(type, props, children, patchFlag, dynamicProps, shapeFlag, isBlockNode, true);
|
|
}
|
|
function guardReactiveProps(props) {
|
|
if (!props)
|
|
return null;
|
|
return isProxy(props) || InternalObjectKey in props
|
|
? Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])({}, props)
|
|
: props;
|
|
}
|
|
function cloneVNode(vnode, extraProps, mergeRef = false) {
|
|
// This is intentionally NOT using spread or extend to avoid the runtime
|
|
// key enumeration cost.
|
|
const { props, ref, patchFlag, children } = vnode;
|
|
const mergedProps = extraProps ? mergeProps(props || {}, extraProps) : props;
|
|
const cloned = {
|
|
__v_isVNode: true,
|
|
__v_skip: true,
|
|
type: vnode.type,
|
|
props: mergedProps,
|
|
key: mergedProps && normalizeKey(mergedProps),
|
|
ref: extraProps && extraProps.ref
|
|
? // #2078 in the case of <component :is="vnode" ref="extra"/>
|
|
// if the vnode itself already has a ref, cloneVNode will need to merge
|
|
// the refs so the single vnode can be set on multiple refs
|
|
mergeRef && ref
|
|
? Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(ref)
|
|
? ref.concat(normalizeRef(extraProps))
|
|
: [ref, normalizeRef(extraProps)]
|
|
: normalizeRef(extraProps)
|
|
: ref,
|
|
scopeId: vnode.scopeId,
|
|
slotScopeIds: vnode.slotScopeIds,
|
|
children: ( true) && patchFlag === -1 /* HOISTED */ && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(children)
|
|
? children.map(deepCloneVNode)
|
|
: children,
|
|
target: vnode.target,
|
|
targetAnchor: vnode.targetAnchor,
|
|
staticCount: vnode.staticCount,
|
|
shapeFlag: vnode.shapeFlag,
|
|
// if the vnode is cloned with extra props, we can no longer assume its
|
|
// existing patch flag to be reliable and need to add the FULL_PROPS flag.
|
|
// note: perserve flag for fragments since they use the flag for children
|
|
// fast paths only.
|
|
patchFlag: extraProps && vnode.type !== Fragment
|
|
? patchFlag === -1 // hoisted node
|
|
? 16 /* FULL_PROPS */
|
|
: patchFlag | 16 /* FULL_PROPS */
|
|
: patchFlag,
|
|
dynamicProps: vnode.dynamicProps,
|
|
dynamicChildren: vnode.dynamicChildren,
|
|
appContext: vnode.appContext,
|
|
dirs: vnode.dirs,
|
|
transition: vnode.transition,
|
|
// These should technically only be non-null on mounted VNodes. However,
|
|
// they *should* be copied for kept-alive vnodes. So we just always copy
|
|
// them since them being non-null during a mount doesn't affect the logic as
|
|
// they will simply be overwritten.
|
|
component: vnode.component,
|
|
suspense: vnode.suspense,
|
|
ssContent: vnode.ssContent && cloneVNode(vnode.ssContent),
|
|
ssFallback: vnode.ssFallback && cloneVNode(vnode.ssFallback),
|
|
el: vnode.el,
|
|
anchor: vnode.anchor
|
|
};
|
|
return cloned;
|
|
}
|
|
/**
|
|
* Dev only, for HMR of hoisted vnodes reused in v-for
|
|
* https://github.com/vitejs/vite/issues/2022
|
|
*/
|
|
function deepCloneVNode(vnode) {
|
|
const cloned = cloneVNode(vnode);
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(vnode.children)) {
|
|
cloned.children = vnode.children.map(deepCloneVNode);
|
|
}
|
|
return cloned;
|
|
}
|
|
/**
|
|
* @private
|
|
*/
|
|
function createTextVNode(text = ' ', flag = 0) {
|
|
return createVNode(Text, null, text, flag);
|
|
}
|
|
function normalizeChildren(vnode, children) {
|
|
let type = 0;
|
|
const { shapeFlag } = vnode;
|
|
if (children == null) {
|
|
children = null;
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(children)) {
|
|
type = 16 /* ARRAY_CHILDREN */;
|
|
}
|
|
else if (typeof children === 'object') {
|
|
if (shapeFlag & (1 /* ELEMENT */ | 64 /* TELEPORT */)) {
|
|
// Normalize slot to plain children for plain element and Teleport
|
|
const slot = children.default;
|
|
if (slot) {
|
|
// _c marker is added by withCtx() indicating this is a compiled slot
|
|
slot._c && (slot._d = false);
|
|
normalizeChildren(vnode, slot());
|
|
slot._c && (slot._d = true);
|
|
}
|
|
return;
|
|
}
|
|
else {
|
|
type = 32 /* SLOTS_CHILDREN */;
|
|
const slotFlag = children._;
|
|
if (!slotFlag && !(InternalObjectKey in children)) {
|
|
children._ctx = currentRenderingInstance;
|
|
}
|
|
else if (slotFlag === 3 /* FORWARDED */ && currentRenderingInstance) {
|
|
// a child component receives forwarded slots from the parent.
|
|
// its slot type is determined by its parent's slot type.
|
|
if (currentRenderingInstance.slots._ === 1 /* STABLE */) {
|
|
children._ = 1 /* STABLE */;
|
|
}
|
|
else {
|
|
children._ = 2 /* DYNAMIC */;
|
|
vnode.patchFlag |= 1024 /* DYNAMIC_SLOTS */;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(children)) {
|
|
children = { default: children, _ctx: currentRenderingInstance };
|
|
type = 32 /* SLOTS_CHILDREN */;
|
|
}
|
|
else {
|
|
children = String(children);
|
|
// force teleport children to array so it can be moved around
|
|
if (shapeFlag & 64 /* TELEPORT */) {
|
|
type = 16 /* ARRAY_CHILDREN */;
|
|
children = [createTextVNode(children)];
|
|
}
|
|
else {
|
|
type = 8 /* TEXT_CHILDREN */;
|
|
}
|
|
}
|
|
vnode.children = children;
|
|
vnode.shapeFlag |= type;
|
|
}
|
|
function mergeProps(...args) {
|
|
const ret = {};
|
|
for (let i = 0; i < args.length; i++) {
|
|
const toMerge = args[i];
|
|
for (const key in toMerge) {
|
|
if (key === 'class') {
|
|
if (ret.class !== toMerge.class) {
|
|
ret.class = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["normalizeClass"])([ret.class, toMerge.class]);
|
|
}
|
|
}
|
|
else if (key === 'style') {
|
|
ret.style = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["normalizeStyle"])([ret.style, toMerge.style]);
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isOn"])(key)) {
|
|
const existing = ret[key];
|
|
const incoming = toMerge[key];
|
|
if (existing !== incoming) {
|
|
ret[key] = existing
|
|
? [].concat(existing, incoming)
|
|
: incoming;
|
|
}
|
|
}
|
|
else if (key !== '') {
|
|
ret[key] = toMerge[key];
|
|
}
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* For prefixing keys in v-on="obj" with "on"
|
|
* @private
|
|
*/
|
|
function toHandlers(obj) {
|
|
const ret = {};
|
|
if (( true) && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(obj)) {
|
|
warn$1(`v-on with no argument expects an object value.`);
|
|
return ret;
|
|
}
|
|
for (const key in obj) {
|
|
ret[Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toHandlerKey"])(key)] = obj[key];
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* #2437 In Vue 3, functional components do not have a public instance proxy but
|
|
* they exist in the internal parent chain. For code that relies on traversing
|
|
* public $parent chains, skip functional ones and go to the parent instead.
|
|
*/
|
|
const getPublicInstance = (i) => {
|
|
if (!i)
|
|
return null;
|
|
if (isStatefulComponent(i))
|
|
return getExposeProxy(i) || i.proxy;
|
|
return getPublicInstance(i.parent);
|
|
};
|
|
const publicPropertiesMap = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(Object.create(null), {
|
|
$: i => i,
|
|
$el: i => i.vnode.el,
|
|
$data: i => i.data,
|
|
$props: i => (( true) ? shallowReadonly(i.props) : undefined),
|
|
$attrs: i => (( true) ? shallowReadonly(i.attrs) : undefined),
|
|
$slots: i => (( true) ? shallowReadonly(i.slots) : undefined),
|
|
$refs: i => (( true) ? shallowReadonly(i.refs) : undefined),
|
|
$parent: i => getPublicInstance(i.parent),
|
|
$root: i => getPublicInstance(i.root),
|
|
$emit: i => i.emit,
|
|
$options: i => ( true ? resolveMergedOptions(i) : undefined),
|
|
$forceUpdate: i => () => queueJob(i.update),
|
|
// $nextTick: i => nextTick.bind(i.proxy!), // fixed by xxxxxx
|
|
$watch: i => ( true ? instanceWatch.bind(i) : undefined)
|
|
});
|
|
const PublicInstanceProxyHandlers = {
|
|
get({ _: instance }, key) {
|
|
const { ctx, setupState, data, props, accessCache, type, appContext } = instance;
|
|
// for internal formatters to know that this is a Vue instance
|
|
if (( true) && key === '__isVue') {
|
|
return true;
|
|
}
|
|
// prioritize <script setup> bindings during dev.
|
|
// this allows even properties that start with _ or $ to be used - so that
|
|
// it aligns with the production behavior where the render fn is inlined and
|
|
// indeed has access to all declared variables.
|
|
if (( true) &&
|
|
setupState !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] &&
|
|
setupState.__isScriptSetup &&
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(setupState, key)) {
|
|
return setupState[key];
|
|
}
|
|
// data / props / ctx
|
|
// This getter gets called for every property access on the render context
|
|
// during render and is a major hotspot. The most expensive part of this
|
|
// is the multiple hasOwn() calls. It's much faster to do a simple property
|
|
// access on a plain object, so we use an accessCache object (with null
|
|
// prototype) to memoize what access type a key corresponds to.
|
|
let normalizedProps;
|
|
if (key[0] !== '$') {
|
|
const n = accessCache[key];
|
|
if (n !== undefined) {
|
|
switch (n) {
|
|
case 0 /* SETUP */:
|
|
return setupState[key];
|
|
case 1 /* DATA */:
|
|
return data[key];
|
|
case 3 /* CONTEXT */:
|
|
return ctx[key];
|
|
case 2 /* PROPS */:
|
|
return props[key];
|
|
// default: just fallthrough
|
|
}
|
|
}
|
|
else if (setupState !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(setupState, key)) {
|
|
accessCache[key] = 0 /* SETUP */;
|
|
return setupState[key];
|
|
}
|
|
else if (data !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(data, key)) {
|
|
accessCache[key] = 1 /* DATA */;
|
|
return data[key];
|
|
}
|
|
else if (
|
|
// only cache other properties when instance has declared (thus stable)
|
|
// props
|
|
(normalizedProps = instance.propsOptions[0]) &&
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(normalizedProps, key)) {
|
|
accessCache[key] = 2 /* PROPS */;
|
|
return props[key];
|
|
}
|
|
else if (ctx !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(ctx, key)) {
|
|
accessCache[key] = 3 /* CONTEXT */;
|
|
return ctx[key];
|
|
}
|
|
else if ( false || shouldCacheAccess) {
|
|
accessCache[key] = 4 /* OTHER */;
|
|
}
|
|
}
|
|
const publicGetter = publicPropertiesMap[key];
|
|
let cssModule, globalProperties;
|
|
// public $xxx properties
|
|
if (publicGetter) {
|
|
if (key === '$attrs') {
|
|
track(instance, "get" /* GET */, key);
|
|
( true) && markAttrsAccessed();
|
|
}
|
|
return publicGetter(instance);
|
|
}
|
|
else if (
|
|
// css module (injected by vue-loader)
|
|
(cssModule = type.__cssModules) &&
|
|
(cssModule = cssModule[key])) {
|
|
return cssModule;
|
|
}
|
|
else if (ctx !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(ctx, key)) {
|
|
// user may set custom properties to `this` that start with `$`
|
|
accessCache[key] = 3 /* CONTEXT */;
|
|
return ctx[key];
|
|
}
|
|
else if (
|
|
// global properties
|
|
((globalProperties = appContext.config.globalProperties),
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(globalProperties, key))) {
|
|
{
|
|
return globalProperties[key];
|
|
}
|
|
}
|
|
else if (( true) &&
|
|
currentRenderingInstance &&
|
|
(!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(key) ||
|
|
// #1091 avoid internal isRef/isVNode checks on component instance leading
|
|
// to infinite warning loop
|
|
key.indexOf('__v') !== 0)) {
|
|
if (data !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] &&
|
|
(key[0] === '$' || key[0] === '_') &&
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(data, key)) {
|
|
warn$1(`Property ${JSON.stringify(key)} must be accessed via $data because it starts with a reserved ` +
|
|
`character ("$" or "_") and is not proxied on the render context.`);
|
|
}
|
|
else if (instance === currentRenderingInstance) {
|
|
warn$1(`Property ${JSON.stringify(key)} was accessed during render ` +
|
|
`but is not defined on instance.`);
|
|
}
|
|
}
|
|
},
|
|
set({ _: instance }, key, value) {
|
|
const { data, setupState, ctx } = instance;
|
|
if (setupState !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(setupState, key)) {
|
|
setupState[key] = value;
|
|
}
|
|
else if (data !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(data, key)) {
|
|
data[key] = value;
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(instance.props, key)) {
|
|
( true) &&
|
|
warn$1(`Attempting to mutate prop "${key}". Props are readonly.`, instance);
|
|
return false;
|
|
}
|
|
if (key[0] === '$' && key.slice(1) in instance) {
|
|
( true) &&
|
|
warn$1(`Attempting to mutate public property "${key}". ` +
|
|
`Properties starting with $ are reserved and readonly.`, instance);
|
|
return false;
|
|
}
|
|
else {
|
|
if (( true) && key in instance.appContext.config.globalProperties) {
|
|
Object.defineProperty(ctx, key, {
|
|
enumerable: true,
|
|
configurable: true,
|
|
value
|
|
});
|
|
}
|
|
else {
|
|
ctx[key] = value;
|
|
}
|
|
}
|
|
return true;
|
|
},
|
|
has({ _: { data, setupState, accessCache, ctx, appContext, propsOptions } }, key) {
|
|
let normalizedProps;
|
|
return (accessCache[key] !== undefined ||
|
|
(data !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(data, key)) ||
|
|
(setupState !== _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"] && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(setupState, key)) ||
|
|
((normalizedProps = propsOptions[0]) && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(normalizedProps, key)) ||
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(ctx, key) ||
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(publicPropertiesMap, key) ||
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasOwn"])(appContext.config.globalProperties, key));
|
|
}
|
|
};
|
|
if (true) {
|
|
PublicInstanceProxyHandlers.ownKeys = (target) => {
|
|
warn$1(`Avoid app logic that relies on enumerating keys on a component instance. ` +
|
|
`The keys will be empty in production mode to avoid performance overhead.`);
|
|
return Reflect.ownKeys(target);
|
|
};
|
|
}
|
|
// dev only
|
|
// In dev mode, the proxy target exposes the same properties as seen on `this`
|
|
// for easier console inspection. In prod mode it will be an empty object so
|
|
// these properties definitions can be skipped.
|
|
function createDevRenderContext(instance) {
|
|
const target = {};
|
|
// expose internal instance for proxy handlers
|
|
Object.defineProperty(target, `_`, {
|
|
configurable: true,
|
|
enumerable: false,
|
|
get: () => instance
|
|
});
|
|
// expose public properties
|
|
Object.keys(publicPropertiesMap).forEach(key => {
|
|
Object.defineProperty(target, key, {
|
|
configurable: true,
|
|
enumerable: false,
|
|
get: () => publicPropertiesMap[key](instance),
|
|
// intercepted by the proxy so no need for implementation,
|
|
// but needed to prevent set errors
|
|
set: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"]
|
|
});
|
|
});
|
|
return target;
|
|
}
|
|
// dev only
|
|
function exposePropsOnRenderContext(instance) {
|
|
const { ctx, propsOptions: [propsOptions] } = instance;
|
|
if (propsOptions) {
|
|
Object.keys(propsOptions).forEach(key => {
|
|
Object.defineProperty(ctx, key, {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => instance.props[key],
|
|
set: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"]
|
|
});
|
|
});
|
|
}
|
|
}
|
|
// dev only
|
|
function exposeSetupStateOnRenderContext(instance) {
|
|
const { ctx, setupState } = instance;
|
|
Object.keys(toRaw(setupState)).forEach(key => {
|
|
if (!setupState.__isScriptSetup) {
|
|
if (key[0] === '$' || key[0] === '_') {
|
|
warn$1(`setup() return property ${JSON.stringify(key)} should not start with "$" or "_" ` +
|
|
`which are reserved prefixes for Vue internals.`);
|
|
return;
|
|
}
|
|
Object.defineProperty(ctx, key, {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => setupState[key],
|
|
set: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"]
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
const emptyAppContext = createAppContext();
|
|
let uid$1 = 0;
|
|
function createComponentInstance(vnode, parent, suspense) {
|
|
const type = vnode.type;
|
|
// inherit parent app context - or - if root, adopt from root vnode
|
|
const appContext = (parent ? parent.appContext : vnode.appContext) || emptyAppContext;
|
|
const instance = {
|
|
uid: uid$1++,
|
|
vnode,
|
|
type,
|
|
parent,
|
|
appContext,
|
|
root: null,
|
|
next: null,
|
|
subTree: null,
|
|
update: null,
|
|
scope: new EffectScope(true /* detached */),
|
|
render: null,
|
|
proxy: null,
|
|
exposed: null,
|
|
exposeProxy: null,
|
|
withProxy: null,
|
|
provides: parent ? parent.provides : Object.create(appContext.provides),
|
|
accessCache: null,
|
|
renderCache: [],
|
|
// local resovled assets
|
|
components: null,
|
|
directives: null,
|
|
// resolved props and emits options
|
|
propsOptions: normalizePropsOptions(type, appContext),
|
|
emitsOptions: normalizeEmitsOptions(type, appContext),
|
|
// emit
|
|
emit: null,
|
|
emitted: null,
|
|
// props default value
|
|
propsDefaults: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"],
|
|
// inheritAttrs
|
|
inheritAttrs: type.inheritAttrs,
|
|
// state
|
|
ctx: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"],
|
|
data: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"],
|
|
props: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"],
|
|
attrs: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"],
|
|
slots: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"],
|
|
refs: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"],
|
|
setupState: _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"],
|
|
setupContext: null,
|
|
// suspense related
|
|
suspense,
|
|
suspenseId: suspense ? suspense.pendingId : 0,
|
|
asyncDep: null,
|
|
asyncResolved: false,
|
|
// lifecycle hooks
|
|
// not using enums here because it results in computed properties
|
|
isMounted: false,
|
|
isUnmounted: false,
|
|
isDeactivated: false,
|
|
bc: null,
|
|
c: null,
|
|
bm: null,
|
|
m: null,
|
|
bu: null,
|
|
u: null,
|
|
um: null,
|
|
bum: null,
|
|
da: null,
|
|
a: null,
|
|
rtg: null,
|
|
rtc: null,
|
|
ec: null,
|
|
sp: null
|
|
};
|
|
if ((true)) {
|
|
instance.ctx = createDevRenderContext(instance);
|
|
}
|
|
else {}
|
|
instance.root = parent ? parent.root : instance;
|
|
instance.emit = emit$1.bind(null, instance);
|
|
// apply custom element special handling
|
|
if (vnode.ce) {
|
|
vnode.ce(instance);
|
|
}
|
|
return instance;
|
|
}
|
|
let currentInstance = null;
|
|
const getCurrentInstance = () => currentInstance || currentRenderingInstance;
|
|
const setCurrentInstance = (instance) => {
|
|
currentInstance = instance;
|
|
instance.scope.on();
|
|
};
|
|
const unsetCurrentInstance = () => {
|
|
currentInstance && currentInstance.scope.off();
|
|
currentInstance = null;
|
|
};
|
|
const isBuiltInTag = /*#__PURE__*/ Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["makeMap"])('slot,component');
|
|
function validateComponentName(name, config) {
|
|
const appIsNativeTag = config.isNativeTag || _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NO"];
|
|
if (isBuiltInTag(name) || appIsNativeTag(name)) {
|
|
warn$1('Do not use built-in or reserved HTML elements as component id: ' + name);
|
|
}
|
|
}
|
|
function isStatefulComponent(instance) {
|
|
return instance.vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */;
|
|
}
|
|
let isInSSRComponentSetup = false;
|
|
function setupComponent(instance, isSSR = false) {
|
|
isInSSRComponentSetup = isSSR;
|
|
const { props /*, children*/ } = instance.vnode;
|
|
const isStateful = isStatefulComponent(instance);
|
|
initProps(instance, props, isStateful, isSSR);
|
|
// initSlots(instance, children) // fixed by xxxxxx
|
|
const setupResult = isStateful
|
|
? setupStatefulComponent(instance, isSSR)
|
|
: undefined;
|
|
isInSSRComponentSetup = false;
|
|
return setupResult;
|
|
}
|
|
function setupStatefulComponent(instance, isSSR) {
|
|
const Component = instance.type;
|
|
if ((true)) {
|
|
if (Component.name) {
|
|
validateComponentName(Component.name, instance.appContext.config);
|
|
}
|
|
if (Component.components) {
|
|
const names = Object.keys(Component.components);
|
|
for (let i = 0; i < names.length; i++) {
|
|
validateComponentName(names[i], instance.appContext.config);
|
|
}
|
|
}
|
|
if (Component.directives) {
|
|
const names = Object.keys(Component.directives);
|
|
for (let i = 0; i < names.length; i++) {
|
|
validateDirectiveName(names[i]);
|
|
}
|
|
}
|
|
if (Component.compilerOptions && isRuntimeOnly()) {
|
|
warn$1(`"compilerOptions" is only supported when using a build of Vue that ` +
|
|
`includes the runtime compiler. Since you are using a runtime-only ` +
|
|
`build, the options should be passed via your build tool config instead.`);
|
|
}
|
|
}
|
|
// 0. create render proxy property access cache
|
|
instance.accessCache = Object.create(null);
|
|
// 1. create public instance / render proxy
|
|
// also mark it raw so it's never observed
|
|
instance.proxy = markRaw(new Proxy(instance.ctx, PublicInstanceProxyHandlers));
|
|
if ((true)) {
|
|
exposePropsOnRenderContext(instance);
|
|
}
|
|
// 2. call setup()
|
|
const { setup } = Component;
|
|
if (setup) {
|
|
const setupContext = (instance.setupContext =
|
|
setup.length > 1 ? createSetupContext(instance) : null);
|
|
setCurrentInstance(instance);
|
|
pauseTracking();
|
|
const setupResult = callWithErrorHandling(setup, instance, 0 /* SETUP_FUNCTION */, [( true) ? shallowReadonly(instance.props) : undefined, setupContext]);
|
|
resetTracking();
|
|
unsetCurrentInstance();
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isPromise"])(setupResult)) {
|
|
setupResult.then(unsetCurrentInstance, unsetCurrentInstance);
|
|
// fixed by xxxxxx
|
|
if ((true)) {
|
|
warn$1(`setup() returned a Promise, but the version of Vue you are using ` +
|
|
`does not support it yet.`);
|
|
}
|
|
}
|
|
else {
|
|
handleSetupResult(instance, setupResult, isSSR);
|
|
}
|
|
}
|
|
else {
|
|
finishComponentSetup(instance, isSSR);
|
|
}
|
|
}
|
|
function handleSetupResult(instance, setupResult, isSSR) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(setupResult)) {
|
|
// setup returned an inline render function
|
|
{
|
|
instance.render = setupResult;
|
|
}
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(setupResult)) {
|
|
if (( true) && isVNode(setupResult)) {
|
|
warn$1(`setup() should not return VNodes directly - ` +
|
|
`return a render function instead.`);
|
|
}
|
|
// setup returned bindings.
|
|
// assuming a render function compiled from template is present.
|
|
if (true) {
|
|
instance.devtoolsRawSetupState = setupResult;
|
|
}
|
|
instance.setupState = proxyRefs(setupResult);
|
|
if ((true)) {
|
|
exposeSetupStateOnRenderContext(instance);
|
|
}
|
|
}
|
|
else if (( true) && setupResult !== undefined) {
|
|
warn$1(`setup() should return an object. Received: ${setupResult === null ? 'null' : typeof setupResult}`);
|
|
}
|
|
finishComponentSetup(instance, isSSR);
|
|
}
|
|
let compile;
|
|
// dev only
|
|
const isRuntimeOnly = () => !compile;
|
|
function finishComponentSetup(instance, isSSR, skipOptions) {
|
|
const Component = instance.type;
|
|
// template / render function normalization
|
|
// could be already set when returned from setup()
|
|
if (!instance.render) {
|
|
instance.render = (Component.render || _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"]);
|
|
}
|
|
// support for 2.x options
|
|
if (true) {
|
|
setCurrentInstance(instance);
|
|
pauseTracking();
|
|
applyOptions$1(instance);
|
|
resetTracking();
|
|
unsetCurrentInstance();
|
|
}
|
|
// warn missing template/render
|
|
// the runtime compilation of template in SSR is done by server-render
|
|
if (( true) && !Component.render && instance.render === _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"] && !isSSR) {
|
|
/* istanbul ignore if */
|
|
if (Component.template) {
|
|
warn$1(`Component provided template option but ` +
|
|
`runtime compilation is not supported in this build of Vue.` +
|
|
(` Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".`
|
|
) /* should not happen */);
|
|
}
|
|
else {
|
|
warn$1(`Component is missing template or render function.`);
|
|
}
|
|
}
|
|
}
|
|
function createAttrsProxy(instance) {
|
|
return new Proxy(instance.attrs, ( true)
|
|
? {
|
|
get(target, key) {
|
|
track(instance, "get" /* GET */, '$attrs');
|
|
return target[key];
|
|
},
|
|
set() {
|
|
warn$1(`setupContext.attrs is readonly.`);
|
|
return false;
|
|
},
|
|
deleteProperty() {
|
|
warn$1(`setupContext.attrs is readonly.`);
|
|
return false;
|
|
}
|
|
}
|
|
: undefined);
|
|
}
|
|
function createSetupContext(instance) {
|
|
const expose = exposed => {
|
|
if (( true) && instance.exposed) {
|
|
warn$1(`expose() should be called only once per setup().`);
|
|
}
|
|
instance.exposed = exposed || {};
|
|
};
|
|
let attrs;
|
|
if ((true)) {
|
|
// We use getters in dev in case libs like test-utils overwrite instance
|
|
// properties (overwrites should not be done in prod)
|
|
return Object.freeze({
|
|
get attrs() {
|
|
return attrs || (attrs = createAttrsProxy(instance));
|
|
},
|
|
get slots() {
|
|
return shallowReadonly(instance.slots);
|
|
},
|
|
get emit() {
|
|
return (event, ...args) => instance.emit(event, ...args);
|
|
},
|
|
expose
|
|
});
|
|
}
|
|
else {}
|
|
}
|
|
function getExposeProxy(instance) {
|
|
if (instance.exposed) {
|
|
return (instance.exposeProxy ||
|
|
(instance.exposeProxy = new Proxy(proxyRefs(markRaw(instance.exposed)), {
|
|
get(target, key) {
|
|
if (key in target) {
|
|
return target[key];
|
|
}
|
|
else if (key in publicPropertiesMap) {
|
|
return publicPropertiesMap[key](instance);
|
|
}
|
|
}
|
|
})));
|
|
}
|
|
}
|
|
const classifyRE = /(?:^|[-_])(\w)/g;
|
|
const classify = (str) => str.replace(classifyRE, c => c.toUpperCase()).replace(/[-_]/g, '');
|
|
function getComponentName(Component) {
|
|
return Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(Component)
|
|
? Component.displayName || Component.name
|
|
: Component.name;
|
|
}
|
|
/* istanbul ignore next */
|
|
function formatComponentName(instance, Component, isRoot = false) {
|
|
let name = getComponentName(Component);
|
|
if (!name && Component.__file) {
|
|
const match = Component.__file.match(/([^/\\]+)\.\w+$/);
|
|
if (match) {
|
|
name = match[1];
|
|
}
|
|
}
|
|
if (!name && instance && instance.parent) {
|
|
// try to infer the name based on reverse resolution
|
|
const inferFromRegistry = (registry) => {
|
|
for (const key in registry) {
|
|
if (registry[key] === Component) {
|
|
return key;
|
|
}
|
|
}
|
|
};
|
|
name =
|
|
inferFromRegistry(instance.components ||
|
|
instance.parent.type.components) || inferFromRegistry(instance.appContext.components);
|
|
}
|
|
return name ? classify(name) : isRoot ? `App` : `Anonymous`;
|
|
}
|
|
function isClassComponent(value) {
|
|
return Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(value) && '__vccOpts' in value;
|
|
}
|
|
|
|
const stack = [];
|
|
function pushWarningContext(vnode) {
|
|
stack.push(vnode);
|
|
}
|
|
function popWarningContext() {
|
|
stack.pop();
|
|
}
|
|
function warn$1(msg, ...args) {
|
|
// avoid props formatting or warn handler tracking deps that might be mutated
|
|
// during patch, leading to infinite recursion.
|
|
pauseTracking();
|
|
const instance = stack.length ? stack[stack.length - 1].component : null;
|
|
const appWarnHandler = instance && instance.appContext.config.warnHandler;
|
|
const trace = getComponentTrace();
|
|
if (appWarnHandler) {
|
|
callWithErrorHandling(appWarnHandler, instance, 11 /* APP_WARN_HANDLER */, [
|
|
msg + args.join(''),
|
|
instance && instance.proxy,
|
|
trace
|
|
.map(({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`)
|
|
.join('\n'),
|
|
trace
|
|
]);
|
|
}
|
|
else {
|
|
const warnArgs = [`[Vue warn]: ${msg}`, ...args];
|
|
/* istanbul ignore if */
|
|
if (trace.length &&
|
|
// avoid spamming console during tests
|
|
!false) {
|
|
warnArgs.push(`\n`, ...formatTrace(trace));
|
|
}
|
|
console.warn(...warnArgs);
|
|
}
|
|
resetTracking();
|
|
}
|
|
function getComponentTrace() {
|
|
let currentVNode = stack[stack.length - 1];
|
|
if (!currentVNode) {
|
|
return [];
|
|
}
|
|
// we can't just use the stack because it will be incomplete during updates
|
|
// that did not start from the root. Re-construct the parent chain using
|
|
// instance parent pointers.
|
|
const normalizedStack = [];
|
|
while (currentVNode) {
|
|
const last = normalizedStack[0];
|
|
if (last && last.vnode === currentVNode) {
|
|
last.recurseCount++;
|
|
}
|
|
else {
|
|
normalizedStack.push({
|
|
vnode: currentVNode,
|
|
recurseCount: 0
|
|
});
|
|
}
|
|
const parentInstance = currentVNode.component && currentVNode.component.parent;
|
|
currentVNode = parentInstance && parentInstance.vnode;
|
|
}
|
|
return normalizedStack;
|
|
}
|
|
/* istanbul ignore next */
|
|
function formatTrace(trace) {
|
|
const logs = [];
|
|
trace.forEach((entry, i) => {
|
|
logs.push(...(i === 0 ? [] : [`\n`]), ...formatTraceEntry(entry));
|
|
});
|
|
return logs;
|
|
}
|
|
function formatTraceEntry({ vnode, recurseCount }) {
|
|
const postfix = recurseCount > 0 ? `... (${recurseCount} recursive calls)` : ``;
|
|
const isRoot = vnode.component ? vnode.component.parent == null : false;
|
|
const open = ` at <${formatComponentName(vnode.component, vnode.type, isRoot)}`;
|
|
const close = `>` + postfix;
|
|
return vnode.props
|
|
? [open, ...formatProps(vnode.props), close]
|
|
: [open + close];
|
|
}
|
|
/* istanbul ignore next */
|
|
function formatProps(props) {
|
|
const res = [];
|
|
const keys = Object.keys(props);
|
|
keys.slice(0, 3).forEach(key => {
|
|
res.push(...formatProp(key, props[key]));
|
|
});
|
|
if (keys.length > 3) {
|
|
res.push(` ...`);
|
|
}
|
|
return res;
|
|
}
|
|
/* istanbul ignore next */
|
|
function formatProp(key, value, raw) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(value)) {
|
|
value = JSON.stringify(value);
|
|
return raw ? value : [`${key}=${value}`];
|
|
}
|
|
else if (typeof value === 'number' ||
|
|
typeof value === 'boolean' ||
|
|
value == null) {
|
|
return raw ? value : [`${key}=${value}`];
|
|
}
|
|
else if (isRef(value)) {
|
|
value = formatProp(key, toRaw(value.value), true);
|
|
return raw ? value : [`${key}=Ref<`, value, `>`];
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(value)) {
|
|
return [`${key}=fn${value.name ? `<${value.name}>` : ``}`];
|
|
}
|
|
else {
|
|
value = toRaw(value);
|
|
return raw ? value : [`${key}=`, value];
|
|
}
|
|
}
|
|
|
|
const ErrorTypeStrings = {
|
|
["sp" /* SERVER_PREFETCH */]: 'serverPrefetch hook',
|
|
["bc" /* BEFORE_CREATE */]: 'beforeCreate hook',
|
|
["c" /* CREATED */]: 'created hook',
|
|
["bm" /* BEFORE_MOUNT */]: 'beforeMount hook',
|
|
["m" /* MOUNTED */]: 'mounted hook',
|
|
["bu" /* BEFORE_UPDATE */]: 'beforeUpdate hook',
|
|
["u" /* UPDATED */]: 'updated',
|
|
["bum" /* BEFORE_UNMOUNT */]: 'beforeUnmount hook',
|
|
["um" /* UNMOUNTED */]: 'unmounted hook',
|
|
["a" /* ACTIVATED */]: 'activated hook',
|
|
["da" /* DEACTIVATED */]: 'deactivated hook',
|
|
["ec" /* ERROR_CAPTURED */]: 'errorCaptured hook',
|
|
["rtc" /* RENDER_TRACKED */]: 'renderTracked hook',
|
|
["rtg" /* RENDER_TRIGGERED */]: 'renderTriggered hook',
|
|
[0 /* SETUP_FUNCTION */]: 'setup function',
|
|
[1 /* RENDER_FUNCTION */]: 'render function',
|
|
[2 /* WATCH_GETTER */]: 'watcher getter',
|
|
[3 /* WATCH_CALLBACK */]: 'watcher callback',
|
|
[4 /* WATCH_CLEANUP */]: 'watcher cleanup function',
|
|
[5 /* NATIVE_EVENT_HANDLER */]: 'native event handler',
|
|
[6 /* COMPONENT_EVENT_HANDLER */]: 'component event handler',
|
|
[7 /* VNODE_HOOK */]: 'vnode hook',
|
|
[8 /* DIRECTIVE_HOOK */]: 'directive hook',
|
|
[9 /* TRANSITION_HOOK */]: 'transition hook',
|
|
[10 /* APP_ERROR_HANDLER */]: 'app errorHandler',
|
|
[11 /* APP_WARN_HANDLER */]: 'app warnHandler',
|
|
[12 /* FUNCTION_REF */]: 'ref function',
|
|
[13 /* ASYNC_COMPONENT_LOADER */]: 'async component loader',
|
|
[14 /* SCHEDULER */]: 'scheduler flush. This is likely a Vue internals bug. ' +
|
|
'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next'
|
|
};
|
|
function callWithErrorHandling(fn, instance, type, args) {
|
|
let res;
|
|
try {
|
|
res = args ? fn(...args) : fn();
|
|
}
|
|
catch (err) {
|
|
handleError(err, instance, type);
|
|
}
|
|
return res;
|
|
}
|
|
function callWithAsyncErrorHandling(fn, instance, type, args) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(fn)) {
|
|
const res = callWithErrorHandling(fn, instance, type, args);
|
|
if (res && Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isPromise"])(res)) {
|
|
res.catch(err => {
|
|
handleError(err, instance, type);
|
|
});
|
|
}
|
|
return res;
|
|
}
|
|
const values = [];
|
|
for (let i = 0; i < fn.length; i++) {
|
|
values.push(callWithAsyncErrorHandling(fn[i], instance, type, args));
|
|
}
|
|
return values;
|
|
}
|
|
function handleError(err, instance, type, throwInDev = true) {
|
|
const contextVNode = instance ? instance.vnode : null;
|
|
if (instance) {
|
|
let cur = instance.parent;
|
|
// the exposed instance is the render proxy to keep it consistent with 2.x
|
|
const exposedInstance = instance.proxy;
|
|
// in production the hook receives only the error code
|
|
const errorInfo = ( true) ? ErrorTypeStrings[type] || type : undefined; // fixed by xxxxxxx
|
|
while (cur) {
|
|
const errorCapturedHooks = cur.ec;
|
|
if (errorCapturedHooks) {
|
|
for (let i = 0; i < errorCapturedHooks.length; i++) {
|
|
if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
cur = cur.parent;
|
|
}
|
|
// app-level handling
|
|
const appErrorHandler = instance.appContext.config.errorHandler;
|
|
if (appErrorHandler) {
|
|
callWithErrorHandling(appErrorHandler, null, 10 /* APP_ERROR_HANDLER */, [err, exposedInstance, errorInfo]);
|
|
return;
|
|
}
|
|
}
|
|
logError(err, type, contextVNode, throwInDev);
|
|
}
|
|
// fixed by xxxxxx
|
|
function logError(err, type, contextVNode, throwInDev = true) {
|
|
if ((true)) {
|
|
const info = ErrorTypeStrings[type] || type; // fixed by xxxxxx
|
|
if (contextVNode) {
|
|
pushWarningContext(contextVNode);
|
|
}
|
|
warn$1(`Unhandled error${info ? ` during execution of ${info}` : ``}`);
|
|
if (contextVNode) {
|
|
popWarningContext();
|
|
}
|
|
// crash in dev by default so it's more noticeable
|
|
if (throwInDev) {
|
|
throw err;
|
|
}
|
|
else {
|
|
console.error(err);
|
|
}
|
|
}
|
|
else {}
|
|
}
|
|
|
|
let isFlushing = false;
|
|
let isFlushPending = false;
|
|
// fixed by xxxxxx
|
|
const queue = [];
|
|
let flushIndex = 0;
|
|
const pendingPreFlushCbs = [];
|
|
let activePreFlushCbs = null;
|
|
let preFlushIndex = 0;
|
|
const pendingPostFlushCbs = [];
|
|
let activePostFlushCbs = null;
|
|
let postFlushIndex = 0;
|
|
const resolvedPromise = Promise.resolve();
|
|
let currentFlushPromise = null;
|
|
let currentPreFlushParentJob = null;
|
|
const RECURSION_LIMIT = 100;
|
|
function nextTick(fn) {
|
|
const p = currentFlushPromise || resolvedPromise;
|
|
return fn ? p.then(this ? fn.bind(this) : fn) : p;
|
|
}
|
|
// #2768
|
|
// Use binary-search to find a suitable position in the queue,
|
|
// so that the queue maintains the increasing order of job's id,
|
|
// which can prevent the job from being skipped and also can avoid repeated patching.
|
|
function findInsertionIndex(id) {
|
|
// the start index should be `flushIndex + 1`
|
|
let start = flushIndex + 1;
|
|
let end = queue.length;
|
|
while (start < end) {
|
|
const middle = (start + end) >>> 1;
|
|
const middleJobId = getId(queue[middle]);
|
|
middleJobId < id ? (start = middle + 1) : (end = middle);
|
|
}
|
|
return start;
|
|
}
|
|
function queueJob(job) {
|
|
// the dedupe search uses the startIndex argument of Array.includes()
|
|
// by default the search index includes the current job that is being run
|
|
// so it cannot recursively trigger itself again.
|
|
// if the job is a watch() callback, the search will start with a +1 index to
|
|
// allow it recursively trigger itself - it is the user's responsibility to
|
|
// ensure it doesn't end up in an infinite loop.
|
|
if ((!queue.length ||
|
|
!queue.includes(job, isFlushing && job.allowRecurse ? flushIndex + 1 : flushIndex)) &&
|
|
job !== currentPreFlushParentJob) {
|
|
if (job.id == null) {
|
|
queue.push(job);
|
|
}
|
|
else {
|
|
queue.splice(findInsertionIndex(job.id), 0, job);
|
|
}
|
|
queueFlush();
|
|
}
|
|
}
|
|
function queueFlush() {
|
|
if (!isFlushing && !isFlushPending) {
|
|
isFlushPending = true;
|
|
currentFlushPromise = resolvedPromise.then(flushJobs);
|
|
}
|
|
}
|
|
function queueCb(cb, activeQueue, pendingQueue, index) {
|
|
if (!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(cb)) {
|
|
if (!activeQueue ||
|
|
!activeQueue.includes(cb, cb.allowRecurse ? index + 1 : index)) {
|
|
pendingQueue.push(cb);
|
|
}
|
|
}
|
|
else {
|
|
// if cb is an array, it is a component lifecycle hook which can only be
|
|
// triggered by a job, which is already deduped in the main queue, so
|
|
// we can skip duplicate check here to improve perf
|
|
pendingQueue.push(...cb);
|
|
}
|
|
queueFlush();
|
|
}
|
|
function queuePreFlushCb(cb) {
|
|
queueCb(cb, activePreFlushCbs, pendingPreFlushCbs, preFlushIndex);
|
|
}
|
|
function queuePostFlushCb(cb) {
|
|
queueCb(cb, activePostFlushCbs, pendingPostFlushCbs, postFlushIndex);
|
|
}
|
|
function flushPreFlushCbs(seen, parentJob = null) {
|
|
if (pendingPreFlushCbs.length) {
|
|
currentPreFlushParentJob = parentJob;
|
|
activePreFlushCbs = [...new Set(pendingPreFlushCbs)];
|
|
pendingPreFlushCbs.length = 0;
|
|
if ((true)) {
|
|
seen = seen || new Map();
|
|
}
|
|
for (preFlushIndex = 0; preFlushIndex < activePreFlushCbs.length; preFlushIndex++) {
|
|
if (( true) &&
|
|
checkRecursiveUpdates(seen, activePreFlushCbs[preFlushIndex])) {
|
|
continue;
|
|
}
|
|
activePreFlushCbs[preFlushIndex]();
|
|
}
|
|
activePreFlushCbs = null;
|
|
preFlushIndex = 0;
|
|
currentPreFlushParentJob = null;
|
|
// recursively flush until it drains
|
|
flushPreFlushCbs(seen, parentJob);
|
|
}
|
|
}
|
|
function flushPostFlushCbs(seen) {
|
|
if (pendingPostFlushCbs.length) {
|
|
const deduped = [...new Set(pendingPostFlushCbs)];
|
|
pendingPostFlushCbs.length = 0;
|
|
// #1947 already has active queue, nested flushPostFlushCbs call
|
|
if (activePostFlushCbs) {
|
|
activePostFlushCbs.push(...deduped);
|
|
return;
|
|
}
|
|
activePostFlushCbs = deduped;
|
|
if ((true)) {
|
|
seen = seen || new Map();
|
|
}
|
|
activePostFlushCbs.sort((a, b) => getId(a) - getId(b));
|
|
for (postFlushIndex = 0; postFlushIndex < activePostFlushCbs.length; postFlushIndex++) {
|
|
if (( true) &&
|
|
checkRecursiveUpdates(seen, activePostFlushCbs[postFlushIndex])) {
|
|
continue;
|
|
}
|
|
activePostFlushCbs[postFlushIndex]();
|
|
}
|
|
activePostFlushCbs = null;
|
|
postFlushIndex = 0;
|
|
}
|
|
}
|
|
const getId = (job) => job.id == null ? Infinity : job.id;
|
|
function flushJobs(seen) {
|
|
isFlushPending = false;
|
|
isFlushing = true;
|
|
if ((true)) {
|
|
seen = seen || new Map();
|
|
}
|
|
flushPreFlushCbs(seen);
|
|
// Sort queue before flush.
|
|
// This ensures that:
|
|
// 1. Components are updated from parent to child. (because parent is always
|
|
// created before the child so its render effect will have smaller
|
|
// priority number)
|
|
// 2. If a component is unmounted during a parent component's update,
|
|
// its update can be skipped.
|
|
queue.sort((a, b) => getId(a) - getId(b));
|
|
// conditional usage of checkRecursiveUpdate must be determined out of
|
|
// try ... catch block since Rollup by default de-optimizes treeshaking
|
|
// inside try-catch. This can leave all warning code unshaked. Although
|
|
// they would get eventually shaken by a minifier like terser, some minifiers
|
|
// would fail to do that (e.g. https://github.com/evanw/esbuild/issues/1610)
|
|
const check = ( true)
|
|
? (job) => checkRecursiveUpdates(seen, job)
|
|
: undefined;
|
|
try {
|
|
for (flushIndex = 0; flushIndex < queue.length; flushIndex++) {
|
|
const job = queue[flushIndex];
|
|
if (job && job.active !== false) {
|
|
if (( true) && check(job)) {
|
|
continue;
|
|
}
|
|
// console.log(`running:`, job.id)
|
|
callWithErrorHandling(job, null, 14 /* SCHEDULER */);
|
|
}
|
|
}
|
|
}
|
|
finally {
|
|
flushIndex = 0;
|
|
queue.length = 0;
|
|
flushPostFlushCbs(seen);
|
|
isFlushing = false;
|
|
currentFlushPromise = null;
|
|
// some postFlushCb queued jobs!
|
|
// keep flushing until it drains.
|
|
if (queue.length ||
|
|
pendingPreFlushCbs.length ||
|
|
pendingPostFlushCbs.length) {
|
|
flushJobs(seen);
|
|
}
|
|
}
|
|
}
|
|
function checkRecursiveUpdates(seen, fn) {
|
|
if (!seen.has(fn)) {
|
|
seen.set(fn, 1);
|
|
}
|
|
else {
|
|
const count = seen.get(fn);
|
|
if (count > RECURSION_LIMIT) {
|
|
const instance = fn.ownerInstance;
|
|
const componentName = instance && getComponentName(instance.type);
|
|
warn$1(`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. ` +
|
|
`This means you have a reactive effect that is mutating its own ` +
|
|
`dependencies and thus recursively triggering itself. Possible sources ` +
|
|
`include component template, render function, updated hook or ` +
|
|
`watcher source function.`);
|
|
return true;
|
|
}
|
|
else {
|
|
seen.set(fn, count + 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Simple effect.
|
|
function watchEffect(effect, options) {
|
|
return doWatch(effect, null, options);
|
|
}
|
|
function watchPostEffect(effect, options) {
|
|
return doWatch(effect, null, (( true)
|
|
? Object.assign(options || {}, { flush: 'post' })
|
|
: undefined));
|
|
}
|
|
function watchSyncEffect(effect, options) {
|
|
return doWatch(effect, null, (( true)
|
|
? Object.assign(options || {}, { flush: 'sync' })
|
|
: undefined));
|
|
}
|
|
// initial value for watchers to trigger on undefined initial values
|
|
const INITIAL_WATCHER_VALUE = {};
|
|
// implementation
|
|
function watch(source, cb, options) {
|
|
if (( true) && !Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(cb)) {
|
|
warn$1(`\`watch(fn, options?)\` signature has been moved to a separate API. ` +
|
|
`Use \`watchEffect(fn, options?)\` instead. \`watch\` now only ` +
|
|
`supports \`watch(source, cb, options?) signature.`);
|
|
}
|
|
return doWatch(source, cb, options);
|
|
}
|
|
function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = _vue_shared__WEBPACK_IMPORTED_MODULE_0__["EMPTY_OBJ"]) {
|
|
if (( true) && !cb) {
|
|
if (immediate !== undefined) {
|
|
warn$1(`watch() "immediate" option is only respected when using the ` +
|
|
`watch(source, callback, options?) signature.`);
|
|
}
|
|
if (deep !== undefined) {
|
|
warn$1(`watch() "deep" option is only respected when using the ` +
|
|
`watch(source, callback, options?) signature.`);
|
|
}
|
|
}
|
|
const warnInvalidSource = (s) => {
|
|
warn$1(`Invalid watch source: `, s, `A watch source can only be a getter/effect function, a ref, ` +
|
|
`a reactive object, or an array of these types.`);
|
|
};
|
|
const instance = currentInstance;
|
|
let getter;
|
|
let forceTrigger = false;
|
|
let isMultiSource = false;
|
|
if (isRef(source)) {
|
|
getter = () => source.value;
|
|
forceTrigger = !!source._shallow;
|
|
}
|
|
else if (isReactive(source)) {
|
|
getter = () => source;
|
|
deep = true;
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(source)) {
|
|
isMultiSource = true;
|
|
forceTrigger = source.some(isReactive);
|
|
getter = () => source.map(s => {
|
|
if (isRef(s)) {
|
|
return s.value;
|
|
}
|
|
else if (isReactive(s)) {
|
|
return traverse(s);
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(s)) {
|
|
return callWithErrorHandling(s, instance, 2 /* WATCH_GETTER */);
|
|
}
|
|
else {
|
|
( true) && warnInvalidSource(s);
|
|
}
|
|
});
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(source)) {
|
|
if (cb) {
|
|
// getter with cb
|
|
getter = () => callWithErrorHandling(source, instance, 2 /* WATCH_GETTER */);
|
|
}
|
|
else {
|
|
// no cb -> simple effect
|
|
getter = () => {
|
|
if (instance && instance.isUnmounted) {
|
|
return;
|
|
}
|
|
if (cleanup) {
|
|
cleanup();
|
|
}
|
|
return callWithAsyncErrorHandling(source, instance, 3 /* WATCH_CALLBACK */, [onInvalidate]);
|
|
};
|
|
}
|
|
}
|
|
else {
|
|
getter = _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"];
|
|
( true) && warnInvalidSource(source);
|
|
}
|
|
if (cb && deep) {
|
|
const baseGetter = getter;
|
|
getter = () => traverse(baseGetter());
|
|
}
|
|
let cleanup;
|
|
let onInvalidate = (fn) => {
|
|
cleanup = effect.onStop = () => {
|
|
callWithErrorHandling(fn, instance, 4 /* WATCH_CLEANUP */);
|
|
};
|
|
};
|
|
let oldValue = isMultiSource ? [] : INITIAL_WATCHER_VALUE;
|
|
const job = () => {
|
|
if (!effect.active) {
|
|
return;
|
|
}
|
|
if (cb) {
|
|
// watch(source, cb)
|
|
const newValue = effect.run();
|
|
if (deep ||
|
|
forceTrigger ||
|
|
(isMultiSource
|
|
? newValue.some((v, i) => Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasChanged"])(v, oldValue[i]))
|
|
: Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["hasChanged"])(newValue, oldValue)) ||
|
|
(false )) {
|
|
// cleanup before running cb again
|
|
if (cleanup) {
|
|
cleanup();
|
|
}
|
|
callWithAsyncErrorHandling(cb, instance, 3 /* WATCH_CALLBACK */, [
|
|
newValue,
|
|
// pass undefined as the old value when it's changed for the first time
|
|
oldValue === INITIAL_WATCHER_VALUE ? undefined : oldValue,
|
|
onInvalidate
|
|
]);
|
|
oldValue = newValue;
|
|
}
|
|
}
|
|
else {
|
|
// watchEffect
|
|
effect.run();
|
|
}
|
|
};
|
|
// important: mark the job as a watcher callback so that scheduler knows
|
|
// it is allowed to self-trigger (#1727)
|
|
job.allowRecurse = !!cb;
|
|
let scheduler;
|
|
if (flush === 'sync') {
|
|
scheduler = job; // the scheduler function gets called directly
|
|
}
|
|
else if (flush === 'post') {
|
|
scheduler = () => queuePostRenderEffect(job, instance && instance.suspense);
|
|
}
|
|
else {
|
|
// default: 'pre'
|
|
scheduler = () => {
|
|
if (!instance || instance.isMounted) {
|
|
queuePreFlushCb(job);
|
|
}
|
|
else {
|
|
// with 'pre' option, the first call must happen before
|
|
// the component is mounted so it is called synchronously.
|
|
job();
|
|
}
|
|
};
|
|
}
|
|
const effect = new ReactiveEffect(getter, scheduler);
|
|
if ((true)) {
|
|
effect.onTrack = onTrack;
|
|
effect.onTrigger = onTrigger;
|
|
}
|
|
// initial run
|
|
if (cb) {
|
|
if (immediate) {
|
|
job();
|
|
}
|
|
else {
|
|
oldValue = effect.run();
|
|
}
|
|
}
|
|
else if (flush === 'post') {
|
|
queuePostRenderEffect(effect.run.bind(effect), instance && instance.suspense);
|
|
}
|
|
else {
|
|
effect.run();
|
|
}
|
|
return () => {
|
|
effect.stop();
|
|
if (instance && instance.scope) {
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["remove"])(instance.scope.effects, effect);
|
|
}
|
|
};
|
|
}
|
|
// this.$watch
|
|
function instanceWatch(source, value, options) {
|
|
const publicThis = this.proxy;
|
|
const getter = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isString"])(source)
|
|
? source.includes('.')
|
|
? createPathGetter(publicThis, source)
|
|
: () => publicThis[source]
|
|
: source.bind(publicThis, publicThis);
|
|
let cb;
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(value)) {
|
|
cb = value;
|
|
}
|
|
else {
|
|
cb = value.handler;
|
|
options = value;
|
|
}
|
|
const cur = currentInstance;
|
|
setCurrentInstance(this);
|
|
const res = doWatch(getter, cb.bind(publicThis), options);
|
|
if (cur) {
|
|
setCurrentInstance(cur);
|
|
}
|
|
else {
|
|
unsetCurrentInstance();
|
|
}
|
|
return res;
|
|
}
|
|
function createPathGetter(ctx, path) {
|
|
const segments = path.split('.');
|
|
return () => {
|
|
let cur = ctx;
|
|
for (let i = 0; i < segments.length && cur; i++) {
|
|
cur = cur[segments[i]];
|
|
}
|
|
return cur;
|
|
};
|
|
}
|
|
function traverse(value, seen) {
|
|
if (!Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isObject"])(value) || value["__v_skip" /* SKIP */]) {
|
|
return value;
|
|
}
|
|
seen = seen || new Set();
|
|
if (seen.has(value)) {
|
|
return value;
|
|
}
|
|
seen.add(value);
|
|
if (isRef(value)) {
|
|
traverse(value.value, seen);
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(value)) {
|
|
for (let i = 0; i < value.length; i++) {
|
|
traverse(value[i], seen);
|
|
}
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isSet"])(value) || Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isMap"])(value)) {
|
|
value.forEach((v) => {
|
|
traverse(v, seen);
|
|
});
|
|
}
|
|
else if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isPlainObject"])(value)) {
|
|
for (const key in value) {
|
|
traverse(value[key], seen);
|
|
}
|
|
}
|
|
return value;
|
|
}
|
|
|
|
// dev only
|
|
const warnRuntimeUsage = (method) => warn$1(`${method}() is a compiler-hint helper that is only usable inside ` +
|
|
`<script setup> of a single file component. Its arguments should be ` +
|
|
`compiled away and passing it at runtime has no effect.`);
|
|
// implementation
|
|
function defineProps() {
|
|
if ((true)) {
|
|
warnRuntimeUsage(`defineProps`);
|
|
}
|
|
return null;
|
|
}
|
|
// implementation
|
|
function defineEmits() {
|
|
if ((true)) {
|
|
warnRuntimeUsage(`defineEmits`);
|
|
}
|
|
return null;
|
|
}
|
|
/**
|
|
* Vue `<script setup>` compiler macro for declaring a component's exposed
|
|
* instance properties when it is accessed by a parent component via template
|
|
* refs.
|
|
*
|
|
* `<script setup>` components are closed by default - i.e. varaibles inside
|
|
* the `<script setup>` scope is not exposed to parent unless explicitly exposed
|
|
* via `defineExpose`.
|
|
*
|
|
* This is only usable inside `<script setup>`, is compiled away in the
|
|
* output and should **not** be actually called at runtime.
|
|
*/
|
|
function defineExpose(exposed) {
|
|
if ((true)) {
|
|
warnRuntimeUsage(`defineExpose`);
|
|
}
|
|
}
|
|
/**
|
|
* Vue `<script setup>` compiler macro for providing props default values when
|
|
* using type-based `defineProps` declaration.
|
|
*
|
|
* Example usage:
|
|
* ```ts
|
|
* withDefaults(defineProps<{
|
|
* size?: number
|
|
* labels?: string[]
|
|
* }>(), {
|
|
* size: 3,
|
|
* labels: () => ['default label']
|
|
* })
|
|
* ```
|
|
*
|
|
* This is only usable inside `<script setup>`, is compiled away in the output
|
|
* and should **not** be actually called at runtime.
|
|
*/
|
|
function withDefaults(props, defaults) {
|
|
if ((true)) {
|
|
warnRuntimeUsage(`withDefaults`);
|
|
}
|
|
return null;
|
|
}
|
|
function useSlots() {
|
|
return getContext().slots;
|
|
}
|
|
function useAttrs() {
|
|
return getContext().attrs;
|
|
}
|
|
function getContext() {
|
|
const i = getCurrentInstance();
|
|
if (( true) && !i) {
|
|
warn$1(`useContext() called without active instance.`);
|
|
}
|
|
return i.setupContext || (i.setupContext = createSetupContext(i));
|
|
}
|
|
/**
|
|
* Runtime helper for merging default declarations. Imported by compiled code
|
|
* only.
|
|
* @internal
|
|
*/
|
|
function mergeDefaults(raw, defaults) {
|
|
const props = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(raw)
|
|
? raw.reduce((normalized, p) => ((normalized[p] = {}), normalized), {})
|
|
: raw;
|
|
for (const key in defaults) {
|
|
const opt = props[key];
|
|
if (opt) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(opt) || Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(opt)) {
|
|
props[key] = { type: opt, default: defaults[key] };
|
|
}
|
|
else {
|
|
opt.default = defaults[key];
|
|
}
|
|
}
|
|
else if (opt === null) {
|
|
props[key] = { default: defaults[key] };
|
|
}
|
|
else if ((true)) {
|
|
warn$1(`props default key "${key}" has no corresponding declaration.`);
|
|
}
|
|
}
|
|
return props;
|
|
}
|
|
/**
|
|
* `<script setup>` helper for persisting the current instance context over
|
|
* async/await flows.
|
|
*
|
|
* `@vue/compiler-sfc` converts the following:
|
|
*
|
|
* ```ts
|
|
* const x = await foo()
|
|
* ```
|
|
*
|
|
* into:
|
|
*
|
|
* ```ts
|
|
* let __temp, __restore
|
|
* const x = (([__temp, __restore] = withAsyncContext(() => foo())),__temp=await __temp,__restore(),__temp)
|
|
* ```
|
|
* @internal
|
|
*/
|
|
function withAsyncContext(getAwaitable) {
|
|
const ctx = getCurrentInstance();
|
|
if (( true) && !ctx) {
|
|
warn$1(`withAsyncContext called without active current instance. ` +
|
|
`This is likely a bug.`);
|
|
}
|
|
let awaitable = getAwaitable();
|
|
unsetCurrentInstance();
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isPromise"])(awaitable)) {
|
|
awaitable = awaitable.catch(e => {
|
|
setCurrentInstance(ctx);
|
|
throw e;
|
|
});
|
|
}
|
|
return [awaitable, () => setCurrentInstance(ctx)];
|
|
}
|
|
|
|
const ssrContextKey = Symbol(( true) ? `ssrContext` : undefined);
|
|
const useSSRContext = () => {
|
|
{
|
|
const ctx = inject(ssrContextKey);
|
|
if (!ctx) {
|
|
warn$1(`Server rendering context not provided. Make sure to only call ` +
|
|
`useSSRContext() conditionally in the server build.`);
|
|
}
|
|
return ctx;
|
|
}
|
|
};
|
|
|
|
// Core API ------------------------------------------------------------------
|
|
const version = "3.2.20";
|
|
/**
|
|
* @internal only exposed in compat builds
|
|
*/
|
|
const resolveFilter = null;
|
|
|
|
// import deepCopy from './deepCopy'
|
|
/**
|
|
* https://raw.githubusercontent.com/Tencent/westore/master/packages/westore/utils/diff.js
|
|
*/
|
|
const ARRAYTYPE = '[object Array]';
|
|
const OBJECTTYPE = '[object Object]';
|
|
// const FUNCTIONTYPE = '[object Function]'
|
|
function diff(current, pre) {
|
|
const result = {};
|
|
syncKeys(current, pre);
|
|
_diff(current, pre, '', result);
|
|
return result;
|
|
}
|
|
function syncKeys(current, pre) {
|
|
current = unref(current);
|
|
if (current === pre)
|
|
return;
|
|
const rootCurrentType = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toTypeString"])(current);
|
|
const rootPreType = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toTypeString"])(pre);
|
|
if (rootCurrentType == OBJECTTYPE && rootPreType == OBJECTTYPE) {
|
|
for (let key in pre) {
|
|
const currentValue = current[key];
|
|
if (currentValue === undefined) {
|
|
current[key] = null;
|
|
}
|
|
else {
|
|
syncKeys(currentValue, pre[key]);
|
|
}
|
|
}
|
|
}
|
|
else if (rootCurrentType == ARRAYTYPE && rootPreType == ARRAYTYPE) {
|
|
if (current.length >= pre.length) {
|
|
pre.forEach((item, index) => {
|
|
syncKeys(current[index], item);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
function _diff(current, pre, path, result) {
|
|
current = unref(current);
|
|
if (current === pre)
|
|
return;
|
|
const rootCurrentType = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toTypeString"])(current);
|
|
const rootPreType = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toTypeString"])(pre);
|
|
if (rootCurrentType == OBJECTTYPE) {
|
|
if (rootPreType != OBJECTTYPE ||
|
|
Object.keys(current).length < Object.keys(pre).length) {
|
|
setResult(result, path, current);
|
|
}
|
|
else {
|
|
for (let key in current) {
|
|
const currentValue = unref(current[key]);
|
|
const preValue = pre[key];
|
|
const currentType = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toTypeString"])(currentValue);
|
|
const preType = Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["toTypeString"])(preValue);
|
|
if (currentType != ARRAYTYPE && currentType != OBJECTTYPE) {
|
|
if (currentValue != preValue) {
|
|
setResult(result, (path == '' ? '' : path + '.') + key, currentValue);
|
|
}
|
|
}
|
|
else if (currentType == ARRAYTYPE) {
|
|
if (preType != ARRAYTYPE) {
|
|
setResult(result, (path == '' ? '' : path + '.') + key, currentValue);
|
|
}
|
|
else {
|
|
if (currentValue.length < preValue.length) {
|
|
setResult(result, (path == '' ? '' : path + '.') + key, currentValue);
|
|
}
|
|
else {
|
|
currentValue.forEach((item, index) => {
|
|
_diff(item, preValue[index], (path == '' ? '' : path + '.') + key + '[' + index + ']', result);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
else if (currentType == OBJECTTYPE) {
|
|
if (preType != OBJECTTYPE ||
|
|
Object.keys(currentValue).length < Object.keys(preValue).length) {
|
|
setResult(result, (path == '' ? '' : path + '.') + key, currentValue);
|
|
}
|
|
else {
|
|
for (let subKey in currentValue) {
|
|
_diff(currentValue[subKey], preValue[subKey], (path == '' ? '' : path + '.') + key + '.' + subKey, result);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (rootCurrentType == ARRAYTYPE) {
|
|
if (rootPreType != ARRAYTYPE) {
|
|
setResult(result, path, current);
|
|
}
|
|
else {
|
|
if (current.length < pre.length) {
|
|
setResult(result, path, current);
|
|
}
|
|
else {
|
|
current.forEach((item, index) => {
|
|
_diff(item, pre[index], path + '[' + index + ']', result);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
setResult(result, path, current);
|
|
}
|
|
}
|
|
function setResult(result, k, v) {
|
|
result[k] = v; //deepCopy(v)
|
|
}
|
|
|
|
function hasComponentEffect(instance) {
|
|
return queue.includes(instance.update);
|
|
}
|
|
function flushCallbacks(instance) {
|
|
const ctx = instance.ctx;
|
|
const callbacks = ctx.__next_tick_callbacks;
|
|
if (callbacks && callbacks.length) {
|
|
if (Object({"VUE_APP_NAME":"uniapp-demo","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
const mpInstance = ctx.$scope;
|
|
console.log('[' +
|
|
+new Date() +
|
|
'][' +
|
|
(mpInstance.is || mpInstance.route) +
|
|
'][' +
|
|
instance.uid +
|
|
']:flushCallbacks[' +
|
|
callbacks.length +
|
|
']');
|
|
}
|
|
const copies = callbacks.slice(0);
|
|
callbacks.length = 0;
|
|
for (let i = 0; i < copies.length; i++) {
|
|
copies[i]();
|
|
}
|
|
}
|
|
}
|
|
function nextTick$1(instance, fn) {
|
|
const ctx = instance.ctx;
|
|
if (!ctx.__next_tick_pending && !hasComponentEffect(instance)) {
|
|
if (Object({"VUE_APP_NAME":"uniapp-demo","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
const mpInstance = ctx.$scope;
|
|
console.log('[' +
|
|
+new Date() +
|
|
'][' +
|
|
(mpInstance.is || mpInstance.route) +
|
|
'][' +
|
|
instance.uid +
|
|
']:nextVueTick');
|
|
}
|
|
return nextTick(fn && fn.bind(instance.proxy));
|
|
}
|
|
if (Object({"VUE_APP_NAME":"uniapp-demo","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
const mpInstance = ctx.$scope;
|
|
console.log('[' +
|
|
+new Date() +
|
|
'][' +
|
|
(mpInstance.is || mpInstance.route) +
|
|
'][' +
|
|
instance.uid +
|
|
']:nextMPTick');
|
|
}
|
|
let _resolve;
|
|
if (!ctx.__next_tick_callbacks) {
|
|
ctx.__next_tick_callbacks = [];
|
|
}
|
|
ctx.__next_tick_callbacks.push(() => {
|
|
if (fn) {
|
|
callWithErrorHandling(fn.bind(instance.proxy), instance, 14 /* SCHEDULER */);
|
|
}
|
|
else if (_resolve) {
|
|
_resolve(instance.proxy);
|
|
}
|
|
});
|
|
return new Promise(resolve => {
|
|
_resolve = resolve;
|
|
});
|
|
}
|
|
|
|
function getMPInstanceData(instance, keys) {
|
|
const data = instance.data;
|
|
const ret = Object.create(null);
|
|
//仅同步 data 中有的数据
|
|
keys.forEach(key => {
|
|
ret[key] = data[key];
|
|
});
|
|
return ret;
|
|
}
|
|
function getVueInstanceData(instance) {
|
|
const { data, setupState, ctx } = instance;
|
|
const keys = new Set();
|
|
const ret = Object.create(null);
|
|
Object.keys(setupState).forEach(key => {
|
|
keys.add(key);
|
|
ret[key] = setupState[key];
|
|
});
|
|
if (data) {
|
|
Object.keys(data).forEach(key => {
|
|
if (!keys.has(key)) {
|
|
keys.add(key);
|
|
ret[key] = data[key];
|
|
}
|
|
});
|
|
}
|
|
if (true) {
|
|
if (ctx.$computedKeys) {
|
|
ctx.$computedKeys.forEach((key) => {
|
|
if (!keys.has(key)) {
|
|
keys.add(key);
|
|
ret[key] = ctx[key];
|
|
}
|
|
});
|
|
}
|
|
}
|
|
if (ctx.$mp) {
|
|
// TODO
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["extend"])(ret, ctx.$mp.data || {});
|
|
}
|
|
// TODO form-field
|
|
// track
|
|
return { keys, data: JSON.parse(JSON.stringify(ret)) };
|
|
}
|
|
function patch(instance) {
|
|
const ctx = instance.ctx;
|
|
const mpType = ctx.mpType;
|
|
if (mpType === 'page' || mpType === 'component') {
|
|
const start = Date.now();
|
|
const mpInstance = ctx.$scope;
|
|
const { keys, data } = getVueInstanceData(instance);
|
|
// data.__webviewId__ = mpInstance.data.__webviewId__
|
|
const diffData = diff(data, getMPInstanceData(mpInstance, keys));
|
|
if (Object.keys(diffData).length) {
|
|
if (Object({"VUE_APP_NAME":"uniapp-demo","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
console.log('[' +
|
|
+new Date() +
|
|
'][' +
|
|
(mpInstance.is || mpInstance.route) +
|
|
'][' +
|
|
instance.uid +
|
|
'][耗时' +
|
|
(Date.now() - start) +
|
|
']差量更新', JSON.stringify(diffData));
|
|
}
|
|
ctx.__next_tick_pending = true;
|
|
mpInstance.setData(diffData, () => {
|
|
ctx.__next_tick_pending = false;
|
|
flushCallbacks(instance);
|
|
});
|
|
// props update may have triggered pre-flush watchers.
|
|
flushPreFlushCbs(undefined, instance.update);
|
|
}
|
|
else {
|
|
flushCallbacks(instance);
|
|
}
|
|
}
|
|
}
|
|
|
|
function initAppConfig(appConfig) {
|
|
appConfig.globalProperties.$nextTick = function $nextTick(fn) {
|
|
return nextTick$1(this.$, fn);
|
|
};
|
|
}
|
|
|
|
function onApplyOptions(options, instance, publicThis) {
|
|
instance.appContext.config.globalProperties.$applyOptions(options, instance, publicThis);
|
|
const computedOptions = options.computed;
|
|
if (computedOptions) {
|
|
const keys = Object.keys(computedOptions);
|
|
if (keys.length) {
|
|
const ctx = instance.ctx;
|
|
if (!ctx.$computedKeys) {
|
|
ctx.$computedKeys = [];
|
|
}
|
|
ctx.$computedKeys.push(...keys);
|
|
}
|
|
}
|
|
// remove
|
|
delete instance.ctx.$onApplyOptions;
|
|
}
|
|
|
|
var MPType;
|
|
(function (MPType) {
|
|
MPType["APP"] = "app";
|
|
MPType["PAGE"] = "page";
|
|
MPType["COMPONENT"] = "component";
|
|
})(MPType || (MPType = {}));
|
|
const queuePostRenderEffect$1 = queuePostFlushCb;
|
|
function mountComponent(initialVNode, options) {
|
|
const instance = (initialVNode.component =
|
|
createComponentInstance(initialVNode, options.parentComponent, null));
|
|
if (true) {
|
|
instance.ctx.$onApplyOptions = onApplyOptions;
|
|
instance.ctx.$children = [];
|
|
}
|
|
if (options.mpType === 'app') {
|
|
instance.render = _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"];
|
|
}
|
|
if (options.onBeforeSetup) {
|
|
options.onBeforeSetup(instance, options);
|
|
}
|
|
if ((true)) {
|
|
pushWarningContext(initialVNode);
|
|
}
|
|
setupComponent(instance);
|
|
if (true) {
|
|
// $children
|
|
if (options.parentComponent && instance.proxy) {
|
|
options.parentComponent.ctx.$children.push(instance.proxy);
|
|
}
|
|
}
|
|
setupRenderEffect(instance);
|
|
if ((true)) {
|
|
popWarningContext();
|
|
}
|
|
return instance.proxy;
|
|
}
|
|
const getFunctionalFallthrough = (attrs) => {
|
|
let res;
|
|
for (const key in attrs) {
|
|
if (key === 'class' || key === 'style' || Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isOn"])(key)) {
|
|
(res || (res = {}))[key] = attrs[key];
|
|
}
|
|
}
|
|
return res;
|
|
};
|
|
function renderComponentRoot(instance) {
|
|
const { type: Component, vnode, proxy, withProxy, props, slots, attrs, emit, render, renderCache, data, setupState, ctx } = instance;
|
|
let result;
|
|
const prev = setCurrentRenderingInstance(instance);
|
|
try {
|
|
if (vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */) {
|
|
// withProxy is a proxy with a different `has` trap only for
|
|
// runtime-compiled render functions using `with` block.
|
|
const proxyToUse = withProxy || proxy;
|
|
result = render.call(proxyToUse, proxyToUse, renderCache, props, setupState, data, ctx);
|
|
}
|
|
else {
|
|
// functional
|
|
const render = Component;
|
|
result =
|
|
render.length > 1
|
|
? render(props, { attrs, slots, emit })
|
|
: render(props, null /* we know it doesn't need it */)
|
|
? attrs
|
|
: getFunctionalFallthrough(attrs);
|
|
}
|
|
}
|
|
catch (err) {
|
|
handleError(err, instance, 1 /* RENDER_FUNCTION */);
|
|
result = false;
|
|
}
|
|
setCurrentRenderingInstance(prev);
|
|
return result;
|
|
}
|
|
function setupRenderEffect(instance) {
|
|
const componentUpdateFn = () => {
|
|
if (!instance.isMounted) {
|
|
renderComponentRoot(instance);
|
|
patch(instance);
|
|
}
|
|
else {
|
|
instance.render && instance.render.call(instance.proxy);
|
|
// updateComponent
|
|
const { bu, u } = instance;
|
|
effect.allowRecurse = false;
|
|
// beforeUpdate hook
|
|
if (bu) {
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["invokeArrayFns"])(bu);
|
|
}
|
|
effect.allowRecurse = true;
|
|
renderComponentRoot(instance);
|
|
patch(instance);
|
|
// updated hook
|
|
if (u) {
|
|
queuePostRenderEffect$1(u);
|
|
}
|
|
}
|
|
};
|
|
// create reactive effect for rendering
|
|
const effect = new ReactiveEffect(componentUpdateFn, () => queueJob(instance.update), instance.scope // track it in component's effect scope
|
|
);
|
|
const update = (instance.update = effect.run.bind(effect));
|
|
update.id = instance.uid;
|
|
// allowRecurse
|
|
// #1801, #2043 component render effects should allow recursive updates
|
|
effect.allowRecurse = update.allowRecurse = true;
|
|
if ((true)) {
|
|
effect.onTrack = instance.rtc
|
|
? e => Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["invokeArrayFns"])(instance.rtc, e)
|
|
: void 0;
|
|
effect.onTrigger = instance.rtg
|
|
? e => Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["invokeArrayFns"])(instance.rtg, e)
|
|
: void 0;
|
|
// @ts-ignore (for scheduler)
|
|
update.ownerInstance = instance;
|
|
}
|
|
update();
|
|
}
|
|
function unmountComponent(instance) {
|
|
const { bum, scope, update, um } = instance;
|
|
// beforeUnmount hook
|
|
if (bum) {
|
|
Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["invokeArrayFns"])(bum);
|
|
}
|
|
// stop effects in component scope
|
|
scope.stop();
|
|
// update may be null if a component is unmounted before its async
|
|
// setup has resolved.
|
|
if (update) {
|
|
update.active = false;
|
|
}
|
|
// unmounted hook
|
|
if (um) {
|
|
queuePostRenderEffect$1(um);
|
|
}
|
|
queuePostRenderEffect$1(() => {
|
|
instance.isUnmounted = true;
|
|
});
|
|
}
|
|
const oldCreateApp = createAppAPI();
|
|
function createVueApp(rootComponent, rootProps = null) {
|
|
const app = oldCreateApp(rootComponent, rootProps);
|
|
const appContext = app._context;
|
|
initAppConfig(appContext.config);
|
|
const createVNode = initialVNode => {
|
|
initialVNode.appContext = appContext;
|
|
initialVNode.shapeFlag = 6 /* COMPONENT */;
|
|
return initialVNode;
|
|
};
|
|
const createComponent = function createComponent(initialVNode, options) {
|
|
return mountComponent(createVNode(initialVNode), options);
|
|
};
|
|
const destroyComponent = function destroyComponent(component) {
|
|
return component && unmountComponent(component.$);
|
|
};
|
|
app.mount = function mount() {
|
|
rootComponent.render = _vue_shared__WEBPACK_IMPORTED_MODULE_0__["NOOP"];
|
|
const instance = mountComponent(createVNode({ type: rootComponent }), {
|
|
mpType: MPType.APP,
|
|
mpInstance: null,
|
|
parentComponent: null,
|
|
slots: [],
|
|
props: null
|
|
});
|
|
instance.$app = app;
|
|
instance.$createComponent = createComponent;
|
|
instance.$destroyComponent = destroyComponent;
|
|
appContext.$appInstance = instance;
|
|
return instance;
|
|
};
|
|
app.unmount = function unmount() {
|
|
warn$1(`Cannot unmount an app.`);
|
|
};
|
|
return app;
|
|
}
|
|
|
|
function withModifiers() { }
|
|
function createVNode$1() { }
|
|
|
|
function injectLifecycleHook(name, hook, publicThis, instance) {
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(hook)) {
|
|
injectHook(name, hook.bind(publicThis), instance);
|
|
}
|
|
}
|
|
function initHooks(options, instance, publicThis) {
|
|
options.mpType || publicThis.$mpType;
|
|
// 为了组件也可以监听部分生命周期,故不再判断mpType,统一添加on开头的生命周期
|
|
Object.keys(options).forEach((name) => {
|
|
if (name.indexOf('on') === 0) {
|
|
const hooks = options[name];
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isArray"])(hooks)) {
|
|
hooks.forEach((hook) => injectLifecycleHook(name, hook, publicThis, instance));
|
|
}
|
|
else {
|
|
injectLifecycleHook(name, hooks, publicThis, instance);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function applyOptions(options, instance, publicThis) {
|
|
initHooks(options, instance, publicThis);
|
|
}
|
|
|
|
function set(target, key, val) {
|
|
return (target[key] = val);
|
|
}
|
|
|
|
function errorHandler(err, instance, info) {
|
|
if (!instance) {
|
|
throw err;
|
|
}
|
|
const app = getApp();
|
|
if (!app || !app.$vm) {
|
|
throw err;
|
|
}
|
|
{
|
|
app.$vm.$callHook(ON_ERROR, err, info);
|
|
}
|
|
}
|
|
function mergeAsArray(to, from) {
|
|
return to ? [...new Set([].concat(to, from))] : from;
|
|
}
|
|
function initOptionMergeStrategies(optionMergeStrategies) {
|
|
UniLifecycleHooks.forEach((name) => {
|
|
optionMergeStrategies[name] = mergeAsArray;
|
|
});
|
|
}
|
|
|
|
let realAtob;
|
|
const b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
|
|
const b64re = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/;
|
|
if (typeof atob !== 'function') {
|
|
realAtob = function (str) {
|
|
str = String(str).replace(/[\t\n\f\r ]+/g, '');
|
|
if (!b64re.test(str)) {
|
|
throw new Error("Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.");
|
|
}
|
|
// Adding the padding if missing, for semplicity
|
|
str += '=='.slice(2 - (str.length & 3));
|
|
var bitmap;
|
|
var result = '';
|
|
var r1;
|
|
var r2;
|
|
var i = 0;
|
|
for (; i < str.length;) {
|
|
bitmap =
|
|
(b64.indexOf(str.charAt(i++)) << 18) |
|
|
(b64.indexOf(str.charAt(i++)) << 12) |
|
|
((r1 = b64.indexOf(str.charAt(i++))) << 6) |
|
|
(r2 = b64.indexOf(str.charAt(i++)));
|
|
result +=
|
|
r1 === 64
|
|
? String.fromCharCode((bitmap >> 16) & 255)
|
|
: r2 === 64
|
|
? String.fromCharCode((bitmap >> 16) & 255, (bitmap >> 8) & 255)
|
|
: String.fromCharCode((bitmap >> 16) & 255, (bitmap >> 8) & 255, bitmap & 255);
|
|
}
|
|
return result;
|
|
};
|
|
}
|
|
else {
|
|
// 注意atob只能在全局对象上调用,例如:`const Base64 = {atob};Base64.atob('xxxx')`是错误的用法
|
|
realAtob = atob;
|
|
}
|
|
function b64DecodeUnicode(str) {
|
|
return decodeURIComponent(realAtob(str)
|
|
.split('')
|
|
.map(function (c) {
|
|
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
|
|
})
|
|
.join(''));
|
|
}
|
|
function getCurrentUserInfo() {
|
|
const token = uni.getStorageSync('uni_id_token') || '';
|
|
const tokenArr = token.split('.');
|
|
if (!token || tokenArr.length !== 3) {
|
|
return {
|
|
uid: null,
|
|
role: [],
|
|
permission: [],
|
|
tokenExpired: 0,
|
|
};
|
|
}
|
|
let userInfo;
|
|
try {
|
|
userInfo = JSON.parse(b64DecodeUnicode(tokenArr[1]));
|
|
}
|
|
catch (error) {
|
|
throw new Error('获取当前用户信息出错,详细错误信息为:' + error.message);
|
|
}
|
|
userInfo.tokenExpired = userInfo.exp * 1000;
|
|
delete userInfo.exp;
|
|
delete userInfo.iat;
|
|
return userInfo;
|
|
}
|
|
function uniIdMixin(globalProperties) {
|
|
globalProperties.uniIDHasRole = function (roleId) {
|
|
const { role } = getCurrentUserInfo();
|
|
return role.indexOf(roleId) > -1;
|
|
};
|
|
globalProperties.uniIDHasPermission = function (permissionId) {
|
|
const { permission } = getCurrentUserInfo();
|
|
return this.uniIDHasRole('admin') || permission.indexOf(permissionId) > -1;
|
|
};
|
|
globalProperties.uniIDTokenValid = function () {
|
|
const { tokenExpired } = getCurrentUserInfo();
|
|
return tokenExpired > Date.now();
|
|
};
|
|
}
|
|
|
|
function initApp(app) {
|
|
const appConfig = app._context.config;
|
|
if (Object(_vue_shared__WEBPACK_IMPORTED_MODULE_0__["isFunction"])(app._component.onError)) {
|
|
appConfig.errorHandler = errorHandler;
|
|
}
|
|
initOptionMergeStrategies(appConfig.optionMergeStrategies);
|
|
const globalProperties = appConfig.globalProperties;
|
|
{
|
|
uniIdMixin(globalProperties);
|
|
}
|
|
if (true) {
|
|
globalProperties.$set = set;
|
|
globalProperties.$applyOptions = applyOptions;
|
|
}
|
|
}
|
|
|
|
var plugin = {
|
|
install(app) {
|
|
initApp(app);
|
|
// TODO 旧编译器使用了$createElement 导致告警
|
|
app.config.globalProperties.$createElement = () => { };
|
|
const oldMount = app.mount;
|
|
app.mount = function mount(rootContainer) {
|
|
const instance = oldMount.call(app, rootContainer);
|
|
if (global.createApp) {
|
|
global.createApp(instance);
|
|
}
|
|
else {
|
|
// @ts-ignore 旧编译器
|
|
if (typeof createMiniProgramApp !== 'undefined') {
|
|
// @ts-ignore
|
|
createMiniProgramApp(instance);
|
|
}
|
|
}
|
|
return instance;
|
|
};
|
|
},
|
|
};
|
|
|
|
function createApp(rootComponent, rootProps = null) {
|
|
rootComponent && (rootComponent.mpType = 'app');
|
|
return createVueApp(rootComponent, rootProps).use(plugin);
|
|
}
|
|
const createSSRApp = createApp;
|
|
|
|
|
|
|
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! @dcloudio/uni-mp-weixin/dist/uni.api.esm.js */ 10)["default"], __webpack_require__(/*! ./../../../webpack/buildin/global.js */ 11), __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/uni.mp.esm.js */ 13)["createApp"]))
|
|
|
|
/***/ })
|
|
|
|
}]);
|
|
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/vendor.js.map
|