UNPKG

tdesign-vue

Version:
238 lines (230 loc) 7.58 kB
/** * tdesign v1.11.2 * (c) 2025 tdesign * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var _defineProperty = require('@babel/runtime/helpers/defineProperty'); var utils_renderTnode = require('../utils/render-tnode.js'); var skeleton_props = require('./props.js'); var configProvider_configReceiver = require('../config-provider/config-receiver.js'); var utils_mixins = require('../utils/mixins.js'); var isNumber = require('../_chunks/dep-aa0a4aac.js'); require('@babel/runtime/helpers/readOnlyError'); require('@babel/runtime/helpers/typeof'); require('vue'); require('@vue/composition-api'); require('../_chunks/dep-7c854ec6.js'); require('../_chunks/dep-eceed11d.js'); require('../_chunks/dep-201f7798.js'); require('../_chunks/dep-a4308f57.js'); require('../_chunks/dep-fcf0662d.js'); require('../_chunks/dep-d3015b4c.js'); require('../_chunks/dep-e4278c54.js'); require('../_chunks/dep-f8a85d6a.js'); require('../_chunks/dep-5b117689.js'); require('../_chunks/dep-6478392e.js'); require('../_chunks/dep-47bca35e.js'); require('../_chunks/dep-07fb8c0e.js'); require('../_common/js/global-config/default-config.js'); require('../_common/js/global-config/locale/zh_CN.js'); require('../_chunks/dep-a4a18104.js'); require('../_chunks/dep-27dd8cc6.js'); require('dayjs'); require('../_chunks/dep-87c765cc.js'); require('../_chunks/dep-75cd6d52.js'); require('../_chunks/dep-b1a02818.js'); require('../_chunks/dep-3d8ab37d.js'); require('../_chunks/dep-ecccff93.js'); require('../_chunks/dep-a4cecac4.js'); require('../_chunks/dep-ab142eaf.js'); require('../_chunks/dep-6ad3de7c.js'); require('../_chunks/dep-8b1e056e.js'); require('../_chunks/dep-5db8defc.js'); require('../_chunks/dep-6e4c473c.js'); require('../_chunks/dep-234b7c02.js'); require('../_chunks/dep-a4747856.js'); require('../_chunks/dep-932dd69e.js'); require('../_chunks/dep-9f4caea4.js'); require('../_chunks/dep-dbd838d6.js'); require('../_chunks/dep-b3120c1b.js'); require('../_chunks/dep-68ba2357.js'); require('../_chunks/dep-173eb46c.js'); function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty); function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } var classPrefixMixins = configProvider_configReceiver.getClassPrefixMixins("skeleton"); var ThemeMap = { text: [1], avatar: [{ type: "circle", size: "56px" }], paragraph: [1, 1, { width: "70%" }], "avatar-text": [[{ type: "circle" }, { type: "text", height: "32px" }]], tab: [{ height: "30px" }, { height: "200px" }], article: [{ type: "rect", height: "30px", width: "100%" }, { type: "rect", height: "200px", width: "100%" }, [{ type: "text", height: "30px" }, { type: "text", height: "30px" }, { type: "text", height: "30px" }], [{ type: "text", height: "30px" }, { type: "text", height: "30px" }], [{ type: "text", height: "30px" }, { type: "text", height: "30px" }], [{ type: "text", height: "30px" }, { type: "text", height: "30px" }]] }; var _Skeleton = utils_mixins["default"](classPrefixMixins).extend({ name: "TSkeleton", props: _objectSpread({}, skeleton_props["default"]), data: function data() { return { delayShowLoading: this.delay <= 0 ? this.loading : false, delayTimer: 0 }; }, watch: { loading: { handler: function handler(val) { if (this.delay <= 0) { this.delayShowLoading = this.loading; return; } this.handleDelay(val); }, immediate: true } }, methods: { handleDelay: function handleDelay(loading) { var _this = this; if (loading) { clearTimeout(this.delayTimer); this.delayTimer = window.setTimeout(function () { _this.delayShowLoading = _this.loading; }, this.delay); } else { this.delayShowLoading = loading; } }, renderCols: function renderCols(_cols) { var _this2 = this; var h = this.$createElement; var getColItemClass = function getColItemClass(obj) { return ["".concat(_this2.componentName, "__col"), "".concat(_this2.componentName, "--type-").concat(obj.type || "text"), _defineProperty__default["default"]({}, "".concat(_this2.componentName, "--animation-").concat(_this2.animation), _this2.animation)]; }; var getColItemStyle = function getColItemStyle(obj) { var styleName = ["width", "height", "marginRight", "marginLeft", "margin", "size", "background", "backgroundColor"]; var style = {}; styleName.forEach(function (name) { if (name in obj) { var px = isNumber.isNumber(obj[name]) ? "".concat(obj[name], "px") : obj[name]; if (name === "size") { var _ref2 = [px, px]; style.width = _ref2[0]; style.height = _ref2[1]; } else { style[name] = px; } } }); return style; }; var cols = []; if (Array.isArray(_cols)) { cols = _cols; } else if (isNumber.isNumber(_cols)) { cols = new Array(_cols).fill({ type: "text" }); } else { cols = [_cols]; } return cols.map(function (obj) { return h("div", { "class": getColItemClass(obj), "style": getColItemStyle(obj) }, [typeof obj.content === "function" ? obj.content(_this2.$createElement) : obj.content]); }); }, renderRowCol: function renderRowCol(_rowCol) { var _this3 = this; var h = this.$createElement; var rowCol = _rowCol || this.rowCol; var getBlockClass = function getBlockClass() { return ["".concat(_this3.componentName, "__row")]; }; return rowCol.map(function (item) { return h("div", { "class": getBlockClass() }, [_this3.renderCols(item)]); }); } }, render: function render() { var h = arguments[0]; var content = utils_renderTnode.renderContent(this, "default", "content"); if (this.$scopedSlots["default"] && !this.delayShowLoading) { return h("div", [content]); } if (!this.delayShowLoading) { return; } var children = []; if (this.theme) { children.push(this.renderRowCol(ThemeMap[this.theme])); } if (this.rowCol) { children.push(this.renderRowCol(this.rowCol)); } if (!this.theme && !this.rowCol) { children.push(this.renderRowCol([1, 1, 1, { width: "70%" }])); } return h("div", { "class": this.componentName }, [children]); } }); exports["default"] = _Skeleton; //# sourceMappingURL=skeleton.js.map