xdesign-vue-next
Version:
XDesign Component for vue-next
153 lines (149 loc) • 6.52 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import { _ as __unplugin_components_4 } from '../_chunks/dep-cb88bacb.js';
import { _ as __unplugin_components_1 } from '../_chunks/dep-8eef0183.js';
import { _ as __unplugin_components_0$1 } from '../_chunks/dep-b09ff084.js';
import { _ as __unplugin_components_0 } from '../_chunks/dep-2f5ed418.js';
import { _ as __unplugin_components_2 } from '../_chunks/dep-ae5efda0.js';
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, ref, computed, onBeforeMount, onMounted, createVNode, h } from 'vue';
import { Loading } from '../loading/index.js';
import { THEME_LIST } from './const.js';
import props from './props.js';
import { usePrefixClass } from '../hooks/useConfig.js';
import { fadeIn, fadeOut } from './animation.js';
import { useTNodeJSX, useContent } from '../hooks/tnode.js';
import isFunction from 'lodash/isFunction';
import '../loading/directive.js';
import '../loading/plugin.js';
import '../loading/loading.js';
import '@babel/runtime/helpers/slicedToArray';
import '../loading/icon/gradient.js';
import '../_common/js/loading/circle-adapter.js';
import '../_common/js/utils/set-style.js';
import '../_common/js/utils/helper.js';
import '@babel/runtime/helpers/toConsumableArray';
import '@babel/runtime/helpers/objectWithoutProperties';
import 'lodash/isString';
import 'lodash/isNull';
import 'lodash/isUndefined';
import 'lodash/isNumber';
import 'lodash/isArray';
import '../utils/dom.js';
import '../_chunks/dep-3a1cce9f.js';
import '../utils/easing.js';
import '../utils/render-tnode.js';
import 'lodash/isEmpty';
import 'lodash/isObject';
import 'lodash/camelCase';
import 'lodash/kebabCase';
import '../loading/props.js';
import '../hooks/useTeleport.js';
import '../config-provider/useConfig.js';
import 'lodash/cloneDeep';
import '../config-provider/context.js';
import 'lodash/mergeWith';
import 'lodash/merge';
import '../_common/js/global-config/default-config.js';
import '../_common/js/global-config/locale/en_US.js';
import '../utils/withInstall.js';
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 _Message = defineComponent({
name: "XMessage",
props: _objectSpread(_objectSpread({}, props), {}, {
placement: String
}),
setup: function setup(props2, _ref) {
var slots = _ref.slots,
expose = _ref.expose;
var COMPONENT_NAME = usePrefixClass("message");
var classPrefix = usePrefixClass();
var renderTNode = useTNodeJSX();
var renderContent = useContent();
var msgRef = ref(null);
var timer = ref(null);
var classes = computed(function () {
var status = {};
THEME_LIST.forEach(function (t) {
return status["".concat(classPrefix.value, "-is-").concat(t)] = props2.theme === t;
});
return [COMPONENT_NAME.value, status, _defineProperty({}, "".concat(classPrefix.value, "-is-closable"), props2.closeBtn || slots.closeBtn)];
});
var close = function close(e) {
var _props2$onClose, _props2$onCloseBtnCli;
(_props2$onClose = props2.onClose) === null || _props2$onClose === void 0 ? void 0 : _props2$onClose.call(props2, {
trigger: "close-click",
e: e
});
(_props2$onCloseBtnCli = props2.onCloseBtnClick) === null || _props2$onCloseBtnCli === void 0 ? void 0 : _props2$onCloseBtnCli.call(props2, {
e: e
});
};
var clearTimer = function clearTimer() {
props2.duration && clearTimeout(timer.value);
};
var setTimer = function setTimer() {
if (!props2.duration) {
return;
}
timer.value = Number(setTimeout(function () {
clearTimer();
var msgDom = msgRef.value;
fadeOut(msgDom, props2.placement, function () {
var _props2$onClose2, _props2$onDurationEnd;
(_props2$onClose2 = props2.onClose) === null || _props2$onClose2 === void 0 ? void 0 : _props2$onClose2.call(props2, {
trigger: "duration-end"
});
(_props2$onDurationEnd = props2.onDurationEnd) === null || _props2$onDurationEnd === void 0 ? void 0 : _props2$onDurationEnd.call(props2);
});
}, props2.duration));
};
var renderClose = function renderClose() {
var defaultClose = createVNode(__unplugin_components_2, null, null);
return createVNode("span", {
"class": "".concat(COMPONENT_NAME.value, "__close"),
"onClick": close
}, [renderTNode("closeBtn", defaultClose)]);
};
var renderIcon = function renderIcon() {
if (props2.icon === false) return;
if (isFunction(props2.icon)) return props2.icon(h);
if (slots.icon) {
return slots.icon(null);
}
var Icon = {
info: createVNode(__unplugin_components_0, null, null),
success: createVNode(__unplugin_components_0$1, null, null),
warning: createVNode(__unplugin_components_1, null, null),
error: createVNode(__unplugin_components_1, null, null),
question: createVNode(__unplugin_components_4, null, null),
loading: Loading
}[props2.theme];
return createVNode(Icon, null, null);
};
onBeforeMount(function () {
props2.duration && setTimer();
});
onMounted(function () {
var msgDom = msgRef.value;
fadeIn(msgDom, props2.placement);
});
expose({
close: close
});
return function () {
return createVNode("div", {
"ref": msgRef,
"class": classes.value,
"onMouseenter": clearTimer,
"onMouseleave": setTimer
}, [renderIcon(), renderContent("content", "default"), renderClose()]);
};
}
});
export { _Message as default };
//# sourceMappingURL=message.js.map