UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

136 lines (132 loc) 5.76 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import { _ as __unplugin_components_2 } from '../_chunks/dep-ae5efda0.js'; import { _ as __unplugin_components_0$1 } from '../_chunks/dep-2f5ed418.js'; import { _ as __unplugin_components_0 } from '../_chunks/dep-b09ff084.js'; import _defineProperty from '@babel/runtime/helpers/defineProperty'; import { defineComponent, ref, onBeforeMount, onMounted, createVNode, h } from 'vue'; import isFunction from 'lodash/isFunction'; import { useTNodeJSX, useContent } from '../hooks/tnode.js'; import props from './props.js'; import { usePrefixClass } from '../hooks/useConfig.js'; import { fadeIn, fadeOut } from './animate.js'; import { useConfig } from '../config-provider/useConfig.js'; import 'lodash/camelCase'; import 'lodash/kebabCase'; import '../utils/render-tnode.js'; import 'lodash/isEmpty'; import 'lodash/isString'; import 'lodash/isObject'; import './const.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 '../_chunks/dep-3a1cce9f.js'; import 'lodash/isArray'; 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(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.js.map