runtime.mjs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import { warn } from 'vue';
  2. import { fromPairs } from 'lodash-unified';
  3. import { isObject, hasOwn } from '@vue/shared';
  4. const epPropKey = "__epPropKey";
  5. const definePropType = (val) => val;
  6. const isEpProp = (val) => isObject(val) && !!val[epPropKey];
  7. const buildProp = (prop, key) => {
  8. if (!isObject(prop) || isEpProp(prop))
  9. return prop;
  10. const { values, required, default: defaultValue, type, validator } = prop;
  11. const _validator = values || validator ? (val) => {
  12. let valid = false;
  13. let allowedValues = [];
  14. if (values) {
  15. allowedValues = Array.from(values);
  16. if (hasOwn(prop, "default")) {
  17. allowedValues.push(defaultValue);
  18. }
  19. valid || (valid = allowedValues.includes(val));
  20. }
  21. if (validator)
  22. valid || (valid = validator(val));
  23. if (!valid && allowedValues.length > 0) {
  24. const allowValuesText = [...new Set(allowedValues)].map((value) => JSON.stringify(value)).join(", ");
  25. warn(`Invalid prop: validation failed${key ? ` for prop "${key}"` : ""}. Expected one of [${allowValuesText}], got value ${JSON.stringify(val)}.`);
  26. }
  27. return valid;
  28. } : void 0;
  29. const epProp = {
  30. type,
  31. required: !!required,
  32. validator: _validator,
  33. [epPropKey]: true
  34. };
  35. if (hasOwn(prop, "default"))
  36. epProp.default = defaultValue;
  37. return epProp;
  38. };
  39. const buildProps = (props) => fromPairs(Object.entries(props).map(([key, option]) => [
  40. key,
  41. buildProp(option, key)
  42. ]));
  43. export { buildProp, buildProps, definePropType, epPropKey, isEpProp };
  44. //# sourceMappingURL=runtime.mjs.map