xdesign-vue-next
Version:
XDesign Component for vue-next
167 lines (163 loc) • 7.09 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import { _ as __unplugin_components_2 } from '../_chunks/dep-7f8588b1.mjs';
import { _ as __unplugin_components_0$1 } from '../_chunks/dep-bd64cde8.mjs';
import { _ as __unplugin_components_0 } from '../_chunks/dep-7b4b2cfc.mjs';
import { _ as _defineProperty } from '../_chunks/dep-f9e836af.mjs';
import { defineComponent, ref, h, createVNode, onBeforeMount, onMounted } from 'vue';
import { i as isFunction_1 } from '../_chunks/dep-1cc1c24f.mjs';
import { useTNodeJSX, useContent } from '../hooks/tnode.mjs';
import props from './props.mjs';
import { usePrefixClass } from '../hooks/useConfig.mjs';
import { fadeOut, fadeIn } from './animate.mjs';
import { useConfig } from '../config-provider/useConfig.mjs';
import '../_chunks/dep-82805301.mjs';
import '../_chunks/dep-10a947a6.mjs';
import '../_chunks/dep-b75d8d74.mjs';
import '../_chunks/dep-6ad18815.mjs';
import '../_chunks/dep-a628549d.mjs';
import '../_chunks/dep-4903a8a8.mjs';
import '../_chunks/dep-a95026f2.mjs';
import '../_chunks/dep-068e912d.mjs';
import '../_chunks/dep-7dcfa37a.mjs';
import '../_chunks/dep-addc2a84.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';
import '../_chunks/dep-69963a8c.mjs';
import '../_chunks/dep-6e7b37b8.mjs';
import '../_chunks/dep-e1ab85c5.mjs';
import '../_chunks/dep-5f0e0453.mjs';
import '../_chunks/dep-db381ece.mjs';
import '../_chunks/dep-5755c21c.mjs';
import '../_chunks/dep-8d1c9a23.mjs';
import '../_chunks/dep-dafada74.mjs';
import '../_chunks/dep-0e832fc7.mjs';
import '../_chunks/dep-11fa9c2c.mjs';
import './const.mjs';
import '../_chunks/dep-91ac8f71.mjs';
import '../_chunks/dep-c4737535.mjs';
import '../_chunks/dep-81c83986.mjs';
import '../_chunks/dep-6aa0223b.mjs';
import '../_chunks/dep-7f239c43.mjs';
import '../_chunks/dep-6f04869e.mjs';
import '../_chunks/dep-d32fbbb3.mjs';
import '../_chunks/dep-71f84cf2.mjs';
import '../_chunks/dep-03412fab.mjs';
import '../_chunks/dep-205ff58d.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';
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 _Notification = defineComponent({
name: "XNotification",
props: _objectSpread(_objectSpread({}, props), {}, {
placement: String
}),
setup: function setup(props2, _ref) {
var slots = _ref.slots,
expose = _ref.expose;
var COMPONENT_NAME = usePrefixClass("notification");
var _useConfig = useConfig("classPrefix"),
classPrefix = _useConfig.classPrefix;
var renderTNode = useTNodeJSX();
var renderContent = useContent();
var timer = ref(null);
var notificationRef = ref(null);
var close = function close(e) {
var dom = notificationRef.value;
fadeOut(dom, props2.placement, function () {
var _props2$onCloseBtnCli;
(_props2$onCloseBtnCli = props2.onCloseBtnClick) === null || _props2$onCloseBtnCli === void 0 ? void 0 : _props2$onCloseBtnCli.call(props2, {
e: e
});
});
};
var renderIcon = function renderIcon() {
var iconContent;
if (props2.icon === false) return null;
if (isFunction_1(props2.icon)) {
iconContent = props2.icon(h);
} else if (slots.icon) {
iconContent = slots.icon(null);
} else if (props2.theme) {
var iconType = props2.theme === "success" ? createVNode(__unplugin_components_0, {
"class": "".concat(classPrefix.value, "-is-").concat(props2.theme)
}, null) : createVNode(__unplugin_components_0$1, {
"class": "".concat(classPrefix.value, "-is-").concat(props2.theme)
}, null);
iconContent = createVNode("div", {
"class": "t-notification__icon"
}, [iconType]);
}
return iconContent;
};
var renderClose = function renderClose() {
var defaultClose = createVNode(__unplugin_components_2, null, null);
return createVNode("span", {
"class": "".concat(classPrefix.value, "-message__close"),
"onClick": close
}, [renderTNode("closeBtn", defaultClose)]);
};
var renderMainContent = function renderMainContent() {
return createVNode("div", {
"class": "".concat(COMPONENT_NAME.value, "__content")
}, [renderContent("default", "content")]);
};
var clearTimer = function clearTimer() {
props2.duration && clearTimeout(timer.value);
};
var setTimer = function setTimer() {
if (!props2.duration) {
return;
}
timer.value = Number(setTimeout(function () {
clearTimer();
var dom = notificationRef.value;
fadeOut(dom, props2.placement, function () {
var _props2$onDurationEnd;
(_props2$onDurationEnd = props2.onDurationEnd) === null || _props2$onDurationEnd === void 0 ? void 0 : _props2$onDurationEnd.call(props2);
});
}, props2.duration));
};
onBeforeMount(function () {
props2.duration && setTimer();
});
onMounted(function () {
var dom = notificationRef.value;
fadeIn(dom, props2.placement);
});
expose({
close: close
});
return function () {
return createVNode("div", {
"ref": notificationRef,
"class": "".concat(COMPONENT_NAME.value),
"onMouseenter": clearTimer,
"onMouseleave": setTimer
}, [renderIcon(), createVNode("div", {
"class": "".concat(COMPONENT_NAME.value, "__main")
}, [createVNode("div", {
"class": "".concat(COMPONENT_NAME.value, "__title__wrap")
}, [createVNode("span", {
"class": "".concat(COMPONENT_NAME.value, "__title")
}, [renderTNode("title")]), renderClose()]), renderMainContent(), renderTNode("footer")])]);
};
}
});
export { _Notification as default };
//# sourceMappingURL=notification.mjs.map