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.
59 lines
2.0 KiB
59 lines
2.0 KiB
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var vue = require('vue');
|
|
var shared = require('@vue/shared');
|
|
var fromPairs = require('lodash/fromPairs');
|
|
|
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
|
|
var fromPairs__default = /*#__PURE__*/_interopDefaultLegacy(fromPairs);
|
|
|
|
const wrapperKey = Symbol();
|
|
const propKey = "__elPropsReservedKey";
|
|
function buildProp(option, key) {
|
|
if (!shared.isObject(option) || !!option[propKey])
|
|
return option;
|
|
const { values, required, default: defaultValue, type, validator } = option;
|
|
const _validator = values || validator ? (val) => {
|
|
let valid = false;
|
|
let allowedValues = [];
|
|
if (values) {
|
|
allowedValues = [...values, defaultValue];
|
|
valid || (valid = allowedValues.includes(val));
|
|
}
|
|
if (validator)
|
|
valid || (valid = validator(val));
|
|
if (!valid && allowedValues.length > 0) {
|
|
const allowValuesText = [...new Set(allowedValues)].map((value) => JSON.stringify(value)).join(", ");
|
|
vue.warn(`Invalid prop: validation failed${key ? ` for prop "${key}"` : ""}. Expected one of [${allowValuesText}], got value ${JSON.stringify(val)}.`);
|
|
}
|
|
return valid;
|
|
} : void 0;
|
|
return {
|
|
type: typeof type === "object" && Object.getOwnPropertySymbols(type).includes(wrapperKey) ? type[wrapperKey] : type,
|
|
required: !!required,
|
|
default: defaultValue,
|
|
validator: _validator,
|
|
[propKey]: true
|
|
};
|
|
}
|
|
const buildProps = (props) => fromPairs__default["default"](Object.entries(props).map(([key, option]) => [
|
|
key,
|
|
buildProp(option, key)
|
|
]));
|
|
const definePropType = (val) => ({ [wrapperKey]: val });
|
|
const keyOf = (arr) => Object.keys(arr);
|
|
const mutable = (val) => val;
|
|
const componentSize = ["large", "default", "small"];
|
|
|
|
exports.buildProp = buildProp;
|
|
exports.buildProps = buildProps;
|
|
exports.componentSize = componentSize;
|
|
exports.definePropType = definePropType;
|
|
exports.keyOf = keyOf;
|
|
exports.mutable = mutable;
|
|
exports.propKey = propKey;
|
|
//# sourceMappingURL=props.js.map
|