xdesign-vue-next
Version:
XDesign Component for vue-next
219 lines (215 loc) • 7.07 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import { _ as _defineProperty } from '../_chunks/dep-f9e836af.mjs';
import { defineComponent, ref, createVNode, h, watch } from 'vue';
import { i as isNumber_1 } from '../_chunks/dep-23f91684.mjs';
import { i as isFunction_1 } from '../_chunks/dep-1cc1c24f.mjs';
import props from './props.mjs';
import { usePrefixClass } from '../hooks/useConfig.mjs';
import { useContent } from '../hooks/tnode.mjs';
import { i as isArray_1 } from '../_chunks/dep-a95026f2.mjs';
import '../_chunks/dep-82805301.mjs';
import '../_chunks/dep-10a947a6.mjs';
import '../_chunks/dep-b75d8d74.mjs';
import '../_chunks/dep-addc2a84.mjs';
import '../_chunks/dep-6ad18815.mjs';
import '../config-provider/useConfig.mjs';
import '../_chunks/dep-91ac8f71.mjs';
import '../_chunks/dep-c4737535.mjs';
import '../_chunks/dep-81c83986.mjs';
import '../_chunks/dep-6aa0223b.mjs';
import '../_chunks/dep-db381ece.mjs';
import '../_chunks/dep-5755c21c.mjs';
import '../_chunks/dep-7f239c43.mjs';
import '../_chunks/dep-6f04869e.mjs';
import '../_chunks/dep-d32fbbb3.mjs';
import '../_chunks/dep-dafada74.mjs';
import '../_chunks/dep-068e912d.mjs';
import '../_chunks/dep-6e7b37b8.mjs';
import '../_chunks/dep-e1ab85c5.mjs';
import '../_chunks/dep-5f0e0453.mjs';
import '../_chunks/dep-71f84cf2.mjs';
import '../_chunks/dep-0e832fc7.mjs';
import '../_chunks/dep-69963a8c.mjs';
import '../_chunks/dep-8d1c9a23.mjs';
import '../_chunks/dep-03412fab.mjs';
import '../_chunks/dep-205ff58d.mjs';
import '../_chunks/dep-11fa9c2c.mjs';
import '../_chunks/dep-b09f48fa.mjs';
import '../_chunks/dep-26bf361a.mjs';
import '../_chunks/dep-3ec3335a.mjs';
import '../_chunks/dep-ed4e7c50.mjs';
import '../_chunks/dep-a666b9ad.mjs';
import '../_common/js/global-config/default-config.mjs';
import '../_common/js/global-config/locale/en_US.mjs';
import '../config-provider/type.mjs';
import '../_chunks/dep-a628549d.mjs';
import '../_chunks/dep-4903a8a8.mjs';
import '../_chunks/dep-7dcfa37a.mjs';
import '../_chunks/dep-f4eba04c.mjs';
import '../_chunks/dep-735bcd0d.mjs';
import '../_chunks/dep-765678ef.mjs';
import '../_chunks/dep-8db27830.mjs';
import '../_chunks/dep-ae4bffa5.mjs';
import '../utils/render-tnode.mjs';
import '../_chunks/dep-9d7ebc32.mjs';
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); 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 = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
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 getColItemStyle = function getColItemStyle(obj) {
var styleName = ["width", "height", "marginRight", "marginLeft", "margin", "size", "background", "backgroundColor"];
var style = /* @__PURE__ */Object.create(null);
styleName.forEach(function (name) {
if (name in obj) {
var px = isNumber_1(obj[name]) ? "".concat(obj[name], "px") : obj[name];
if (name === "size") {
var _ref = [px, px];
style.width = _ref[0];
style.height = _ref[1];
} else {
style[name] = px;
}
}
});
return style;
};
var _Skeleton = defineComponent({
name: "XSkeleton",
props: _objectSpread({}, props),
setup: function setup(props2, _ref2) {
var slots = _ref2.slots;
var isShow = ref(false);
var COMPONENT_NAME = usePrefixClass("skeleton");
var renderContent = useContent();
var getColItemClass = function getColItemClass(obj) {
return ["".concat(COMPONENT_NAME.value, "__col"), "".concat(COMPONENT_NAME.value, "--type-").concat(obj.type || "text"), _defineProperty({}, "".concat(COMPONENT_NAME.value, "--animation-").concat(props2.animation), props2.animation)];
};
var renderCols = function renderCols(_cols) {
var cols = [];
if (isArray_1(_cols)) {
cols = _cols;
} else if (isNumber_1(_cols)) {
cols = new Array(_cols).fill({
type: "text"
});
} else {
cols = [_cols];
}
return cols.map(function (obj) {
return createVNode("div", {
"class": getColItemClass(obj),
"style": getColItemStyle(obj)
}, [isFunction_1(obj.content) ? obj.content(h) : obj.content]);
});
};
var renderRowCol = function renderRowCol(_rowCol) {
var rowCol = _rowCol || props2.rowCol;
var getBlockClass = function getBlockClass() {
return ["".concat(COMPONENT_NAME.value, "__row")];
};
return rowCol.map(function (item) {
return createVNode("div", {
"class": getBlockClass()
}, [renderCols(item)]);
});
};
watch(function () {
return props2.loading;
}, function (val) {
if (!val || props2.delay === 0) {
isShow.value = val;
return;
}
setTimeout(function () {
isShow.value = val;
}, props2.delay);
}, {
immediate: true
});
return function () {
var content = renderContent("default", "content");
if (slots["default"] && !isShow.value) {
return createVNode("div", null, [content]);
}
if (!isShow.value) {
return;
}
var children = [];
if (props2.theme) {
children.push(renderRowCol(ThemeMap[props2.theme]));
}
if (props2.rowCol) {
children.push(renderRowCol(props2.rowCol));
}
if (!props2.theme && !props2.rowCol) {
children.push(renderRowCol([1, 1, 1, {
width: "70%"
}]));
}
return createVNode("div", {
"class": COMPONENT_NAME.value
}, [children]);
};
}
});
export { _Skeleton as default };
//# sourceMappingURL=skeleton.mjs.map