ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
76 lines (59 loc) • 2.89 kB
JavaScript
import { isVNode as _isVNode, createVNode as _createVNode } from "vue";
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; }
import { defineComponent } from 'vue';
import PropTypes from '../_util/vue-types';
function _isSlot(s) {
return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !_isVNode(s);
}
var widthUnit = PropTypes.oneOfType([PropTypes.number, PropTypes.string]);
var skeletonParagraphProps = {
prefixCls: PropTypes.string,
width: PropTypes.oneOfType([widthUnit, PropTypes.arrayOf(widthUnit)]),
rows: PropTypes.number
};
export var SkeletonParagraphProps = PropTypes.shape(skeletonParagraphProps);
var Paragraph = defineComponent({
props: skeletonParagraphProps,
methods: {
getWidth: function getWidth(index) {
var width = this.width,
_this$rows = this.rows,
rows = _this$rows === void 0 ? 2 : _this$rows;
if (Array.isArray(width)) {
return width[index];
} // last paragraph
if (rows - 1 === index) {
return width;
}
return undefined;
}
},
render: function render() {
var _this = this;
var _this$$props = this.$props,
prefixCls = _this$$props.prefixCls,
rows = _this$$props.rows;
var rowList = _toConsumableArray(Array(rows)).map(function (_, index) {
var width = _this.getWidth(index);
return _createVNode("li", {
"key": index,
"style": {
width: typeof width === 'number' ? "".concat(width, "px") : width
}
}, null);
});
return _createVNode("ul", {
"class": prefixCls
}, _isSlot(rowList) ? rowList : {
default: function _default() {
return [rowList];
}
});
}
});
export default Paragraph;