123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- import { defineComponent, ref, computed, onMounted, openBlock, createBlock, Transition, unref, withCtx, withDirectives, createElementVNode, normalizeClass, normalizeStyle, resolveDynamicComponent, createCommentVNode, toDisplayString, renderSlot, createElementBlock, Fragment, vShow, withModifiers } from 'vue';
- import { useEventListener, useTimeoutFn } from '@vueuse/core';
- import { ElIcon } from '../../icon/index.mjs';
- import { notificationProps, notificationEmits } from './notification.mjs';
- import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
- import { useGlobalComponentSettings } from '../../config-provider/src/hooks/use-global-config.mjs';
- import { TypeComponentsMap } from '../../../utils/vue/icon.mjs';
- import { EVENT_CODE } from '../../../constants/aria.mjs';
- const __default__ = defineComponent({
- name: "ElNotification"
- });
- const _sfc_main = /* @__PURE__ */ defineComponent({
- ...__default__,
- props: notificationProps,
- emits: notificationEmits,
- setup(__props, { expose }) {
- const props = __props;
- const { ns, zIndex } = useGlobalComponentSettings("notification");
- const { nextZIndex, currentZIndex } = zIndex;
- const visible = ref(false);
- let timer = void 0;
- const typeClass = computed(() => {
- const type = props.type;
- return type && TypeComponentsMap[props.type] ? ns.m(type) : "";
- });
- const iconComponent = computed(() => {
- if (!props.type)
- return props.icon;
- return TypeComponentsMap[props.type] || props.icon;
- });
- const horizontalClass = computed(() => props.position.endsWith("right") ? "right" : "left");
- const verticalProperty = computed(() => props.position.startsWith("top") ? "top" : "bottom");
- const positionStyle = computed(() => {
- var _a;
- return {
- [verticalProperty.value]: `${props.offset}px`,
- zIndex: (_a = props.zIndex) != null ? _a : currentZIndex.value
- };
- });
- function startTimer() {
- if (props.duration > 0) {
- ({ stop: timer } = useTimeoutFn(() => {
- if (visible.value)
- close();
- }, props.duration));
- }
- }
- function clearTimer() {
- timer == null ? void 0 : timer();
- }
- function close() {
- visible.value = false;
- }
- function onKeydown({ code }) {
- if (code === EVENT_CODE.delete || code === EVENT_CODE.backspace) {
- clearTimer();
- } else if (code === EVENT_CODE.esc) {
- if (visible.value) {
- close();
- }
- } else {
- startTimer();
- }
- }
- onMounted(() => {
- startTimer();
- nextZIndex();
- visible.value = true;
- });
- useEventListener(document, "keydown", onKeydown);
- expose({
- visible,
- close
- });
- return (_ctx, _cache) => {
- return openBlock(), createBlock(Transition, {
- name: unref(ns).b("fade"),
- onBeforeLeave: _ctx.onClose,
- onAfterLeave: ($event) => _ctx.$emit("destroy"),
- persisted: ""
- }, {
- default: withCtx(() => [
- withDirectives(createElementVNode("div", {
- id: _ctx.id,
- class: normalizeClass([unref(ns).b(), _ctx.customClass, unref(horizontalClass)]),
- style: normalizeStyle(unref(positionStyle)),
- role: "alert",
- onMouseenter: clearTimer,
- onMouseleave: startTimer,
- onClick: _ctx.onClick
- }, [
- unref(iconComponent) ? (openBlock(), createBlock(unref(ElIcon), {
- key: 0,
- class: normalizeClass([unref(ns).e("icon"), unref(typeClass)])
- }, {
- default: withCtx(() => [
- (openBlock(), createBlock(resolveDynamicComponent(unref(iconComponent))))
- ]),
- _: 1
- }, 8, ["class"])) : createCommentVNode("v-if", true),
- createElementVNode("div", {
- class: normalizeClass(unref(ns).e("group"))
- }, [
- createElementVNode("h2", {
- class: normalizeClass(unref(ns).e("title")),
- textContent: toDisplayString(_ctx.title)
- }, null, 10, ["textContent"]),
- withDirectives(createElementVNode("div", {
- class: normalizeClass(unref(ns).e("content")),
- style: normalizeStyle(!!_ctx.title ? void 0 : { margin: 0 })
- }, [
- renderSlot(_ctx.$slots, "default", {}, () => [
- !_ctx.dangerouslyUseHTMLString ? (openBlock(), createElementBlock("p", { key: 0 }, toDisplayString(_ctx.message), 1)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
- createCommentVNode(" Caution here, message could've been compromised, never use user's input as message "),
- createElementVNode("p", { innerHTML: _ctx.message }, null, 8, ["innerHTML"])
- ], 2112))
- ])
- ], 6), [
- [vShow, _ctx.message]
- ]),
- _ctx.showClose ? (openBlock(), createBlock(unref(ElIcon), {
- key: 0,
- class: normalizeClass(unref(ns).e("closeBtn")),
- onClick: withModifiers(close, ["stop"])
- }, {
- default: withCtx(() => [
- (openBlock(), createBlock(resolveDynamicComponent(_ctx.closeIcon)))
- ]),
- _: 1
- }, 8, ["class", "onClick"])) : createCommentVNode("v-if", true)
- ], 2)
- ], 46, ["id", "onClick"]), [
- [vShow, visible.value]
- ])
- ]),
- _: 3
- }, 8, ["name", "onBeforeLeave", "onAfterLeave"]);
- };
- }
- });
- var NotificationConstructor = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "notification.vue"]]);
- export { NotificationConstructor as default };
- //# sourceMappingURL=notification2.mjs.map
|