1
This commit is contained in:
498
admin/node_modules/element-plus/lib/components/message-box/src/index.js
generated
vendored
Normal file
498
admin/node_modules/element-plus/lib/components/message-box/src/index.js
generated
vendored
Normal file
@@ -0,0 +1,498 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var vue = require('vue');
|
||||
var index$1 = require('../../button/index.js');
|
||||
var index$2 = require('../../input/index.js');
|
||||
var index$3 = require('../../overlay/index.js');
|
||||
var index$4 = require('../../icon/index.js');
|
||||
var iconsVue = require('@element-plus/icons-vue');
|
||||
var focusTrap = require('../../focus-trap/src/focus-trap.js');
|
||||
var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
|
||||
var index = require('../../../directives/trap-focus/index.js');
|
||||
var icon = require('../../../utils/vue/icon.js');
|
||||
var validator = require('../../../utils/vue/validator.js');
|
||||
var useGlobalConfig = require('../../config-provider/src/hooks/use-global-config.js');
|
||||
var index$5 = require('../../../hooks/use-id/index.js');
|
||||
var index$6 = require('../../../hooks/use-draggable/index.js');
|
||||
var shared = require('@vue/shared');
|
||||
var index$7 = require('../../../hooks/use-lockscreen/index.js');
|
||||
var index$8 = require('../../../hooks/use-same-target/index.js');
|
||||
|
||||
const _sfc_main = vue.defineComponent({
|
||||
name: "ElMessageBox",
|
||||
directives: {
|
||||
TrapFocus: index["default"]
|
||||
},
|
||||
components: {
|
||||
ElButton: index$1.ElButton,
|
||||
ElFocusTrap: focusTrap["default"],
|
||||
ElInput: index$2.ElInput,
|
||||
ElOverlay: index$3.ElOverlay,
|
||||
ElIcon: index$4.ElIcon,
|
||||
...icon.TypeComponents
|
||||
},
|
||||
inheritAttrs: false,
|
||||
props: {
|
||||
buttonSize: {
|
||||
type: String,
|
||||
validator: validator.isValidComponentSize
|
||||
},
|
||||
modal: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
lockScroll: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
showClose: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
closeOnClickModal: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
closeOnPressEscape: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
closeOnHashChange: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
center: Boolean,
|
||||
draggable: Boolean,
|
||||
overflow: Boolean,
|
||||
roundButton: Boolean,
|
||||
container: {
|
||||
type: String,
|
||||
default: "body"
|
||||
},
|
||||
boxType: {
|
||||
type: String,
|
||||
default: ""
|
||||
}
|
||||
},
|
||||
emits: ["vanish", "action"],
|
||||
setup(props, { emit }) {
|
||||
const {
|
||||
locale,
|
||||
zIndex,
|
||||
ns,
|
||||
size: btnSize
|
||||
} = useGlobalConfig.useGlobalComponentSettings("message-box", vue.computed(() => props.buttonSize));
|
||||
const { t } = locale;
|
||||
const { nextZIndex } = zIndex;
|
||||
const visible = vue.ref(false);
|
||||
const state = vue.reactive({
|
||||
autofocus: true,
|
||||
beforeClose: null,
|
||||
callback: null,
|
||||
cancelButtonText: "",
|
||||
cancelButtonClass: "",
|
||||
confirmButtonText: "",
|
||||
confirmButtonClass: "",
|
||||
customClass: "",
|
||||
customStyle: {},
|
||||
dangerouslyUseHTMLString: false,
|
||||
distinguishCancelAndClose: false,
|
||||
icon: "",
|
||||
closeIcon: "",
|
||||
inputPattern: null,
|
||||
inputPlaceholder: "",
|
||||
inputType: "text",
|
||||
inputValue: "",
|
||||
inputValidator: void 0,
|
||||
inputErrorMessage: "",
|
||||
message: "",
|
||||
modalFade: true,
|
||||
modalClass: "",
|
||||
showCancelButton: false,
|
||||
showConfirmButton: true,
|
||||
type: "",
|
||||
title: void 0,
|
||||
showInput: false,
|
||||
action: "",
|
||||
confirmButtonLoading: false,
|
||||
cancelButtonLoading: false,
|
||||
confirmButtonLoadingIcon: vue.markRaw(iconsVue.Loading),
|
||||
cancelButtonLoadingIcon: vue.markRaw(iconsVue.Loading),
|
||||
confirmButtonDisabled: false,
|
||||
editorErrorMessage: "",
|
||||
validateError: false,
|
||||
zIndex: nextZIndex()
|
||||
});
|
||||
const typeClass = vue.computed(() => {
|
||||
const type = state.type;
|
||||
return { [ns.bm("icon", type)]: type && icon.TypeComponentsMap[type] };
|
||||
});
|
||||
const contentId = index$5.useId();
|
||||
const inputId = index$5.useId();
|
||||
const iconComponent = vue.computed(() => {
|
||||
const type = state.type;
|
||||
return state.icon || type && icon.TypeComponentsMap[type] || "";
|
||||
});
|
||||
const hasMessage = vue.computed(() => !!state.message);
|
||||
const rootRef = vue.ref();
|
||||
const headerRef = vue.ref();
|
||||
const focusStartRef = vue.ref();
|
||||
const inputRef = vue.ref();
|
||||
const confirmRef = vue.ref();
|
||||
const confirmButtonClasses = vue.computed(() => state.confirmButtonClass);
|
||||
vue.watch(() => state.inputValue, async (val) => {
|
||||
await vue.nextTick();
|
||||
if (props.boxType === "prompt" && val) {
|
||||
validate();
|
||||
}
|
||||
}, { immediate: true });
|
||||
vue.watch(() => visible.value, (val) => {
|
||||
var _a, _b;
|
||||
if (val) {
|
||||
if (props.boxType !== "prompt") {
|
||||
if (state.autofocus) {
|
||||
focusStartRef.value = (_b = (_a = confirmRef.value) == null ? void 0 : _a.$el) != null ? _b : rootRef.value;
|
||||
} else {
|
||||
focusStartRef.value = rootRef.value;
|
||||
}
|
||||
}
|
||||
state.zIndex = nextZIndex();
|
||||
}
|
||||
if (props.boxType !== "prompt")
|
||||
return;
|
||||
if (val) {
|
||||
vue.nextTick().then(() => {
|
||||
var _a2;
|
||||
if (inputRef.value && inputRef.value.$el) {
|
||||
if (state.autofocus) {
|
||||
focusStartRef.value = (_a2 = getInputElement()) != null ? _a2 : rootRef.value;
|
||||
} else {
|
||||
focusStartRef.value = rootRef.value;
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
state.editorErrorMessage = "";
|
||||
state.validateError = false;
|
||||
}
|
||||
});
|
||||
const draggable = vue.computed(() => props.draggable);
|
||||
const overflow = vue.computed(() => props.overflow);
|
||||
const { isDragging } = index$6.useDraggable(rootRef, headerRef, draggable, overflow);
|
||||
vue.onMounted(async () => {
|
||||
await vue.nextTick();
|
||||
if (props.closeOnHashChange) {
|
||||
window.addEventListener("hashchange", doClose);
|
||||
}
|
||||
});
|
||||
vue.onBeforeUnmount(() => {
|
||||
if (props.closeOnHashChange) {
|
||||
window.removeEventListener("hashchange", doClose);
|
||||
}
|
||||
});
|
||||
function doClose() {
|
||||
if (!visible.value)
|
||||
return;
|
||||
visible.value = false;
|
||||
vue.nextTick(() => {
|
||||
if (state.action)
|
||||
emit("action", state.action);
|
||||
});
|
||||
}
|
||||
const handleWrapperClick = () => {
|
||||
if (props.closeOnClickModal) {
|
||||
handleAction(state.distinguishCancelAndClose ? "close" : "cancel");
|
||||
}
|
||||
};
|
||||
const overlayEvent = index$8.useSameTarget(handleWrapperClick);
|
||||
const handleInputEnter = (e) => {
|
||||
if (state.inputType !== "textarea") {
|
||||
e.preventDefault();
|
||||
return handleAction("confirm");
|
||||
}
|
||||
};
|
||||
const handleAction = (action) => {
|
||||
var _a;
|
||||
if (props.boxType === "prompt" && action === "confirm" && !validate()) {
|
||||
return;
|
||||
}
|
||||
state.action = action;
|
||||
if (state.beforeClose) {
|
||||
(_a = state.beforeClose) == null ? void 0 : _a.call(state, action, state, doClose);
|
||||
} else {
|
||||
doClose();
|
||||
}
|
||||
};
|
||||
const validate = () => {
|
||||
if (props.boxType === "prompt") {
|
||||
const inputPattern = state.inputPattern;
|
||||
if (inputPattern && !inputPattern.test(state.inputValue || "")) {
|
||||
state.editorErrorMessage = state.inputErrorMessage || t("el.messagebox.error");
|
||||
state.validateError = true;
|
||||
return false;
|
||||
}
|
||||
const inputValidator = state.inputValidator;
|
||||
if (shared.isFunction(inputValidator)) {
|
||||
const validateResult = inputValidator(state.inputValue);
|
||||
if (validateResult === false) {
|
||||
state.editorErrorMessage = state.inputErrorMessage || t("el.messagebox.error");
|
||||
state.validateError = true;
|
||||
return false;
|
||||
}
|
||||
if (shared.isString(validateResult)) {
|
||||
state.editorErrorMessage = validateResult;
|
||||
state.validateError = true;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
state.editorErrorMessage = "";
|
||||
state.validateError = false;
|
||||
return true;
|
||||
};
|
||||
const getInputElement = () => {
|
||||
var _a, _b;
|
||||
const inputRefs = (_a = inputRef.value) == null ? void 0 : _a.$refs;
|
||||
return (_b = inputRefs == null ? void 0 : inputRefs.input) != null ? _b : inputRefs == null ? void 0 : inputRefs.textarea;
|
||||
};
|
||||
const handleClose = () => {
|
||||
handleAction("close");
|
||||
};
|
||||
const onCloseRequested = () => {
|
||||
if (props.closeOnPressEscape) {
|
||||
handleClose();
|
||||
}
|
||||
};
|
||||
if (props.lockScroll) {
|
||||
index$7.useLockscreen(visible);
|
||||
}
|
||||
return {
|
||||
...vue.toRefs(state),
|
||||
ns,
|
||||
overlayEvent,
|
||||
visible,
|
||||
hasMessage,
|
||||
typeClass,
|
||||
contentId,
|
||||
inputId,
|
||||
btnSize,
|
||||
iconComponent,
|
||||
confirmButtonClasses,
|
||||
rootRef,
|
||||
focusStartRef,
|
||||
headerRef,
|
||||
inputRef,
|
||||
isDragging,
|
||||
confirmRef,
|
||||
doClose,
|
||||
handleClose,
|
||||
onCloseRequested,
|
||||
handleWrapperClick,
|
||||
handleInputEnter,
|
||||
handleAction,
|
||||
t
|
||||
};
|
||||
}
|
||||
});
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
const _component_el_icon = vue.resolveComponent("el-icon");
|
||||
const _component_el_input = vue.resolveComponent("el-input");
|
||||
const _component_el_button = vue.resolveComponent("el-button");
|
||||
const _component_el_focus_trap = vue.resolveComponent("el-focus-trap");
|
||||
const _component_el_overlay = vue.resolveComponent("el-overlay");
|
||||
return vue.openBlock(), vue.createBlock(vue.Transition, {
|
||||
name: "fade-in-linear",
|
||||
onAfterLeave: ($event) => _ctx.$emit("vanish"),
|
||||
persisted: ""
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
vue.withDirectives(vue.createVNode(_component_el_overlay, {
|
||||
"z-index": _ctx.zIndex,
|
||||
"overlay-class": [_ctx.ns.is("message-box"), _ctx.modalClass],
|
||||
mask: _ctx.modal
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
vue.createElementVNode("div", {
|
||||
role: "dialog",
|
||||
"aria-label": _ctx.title,
|
||||
"aria-modal": "true",
|
||||
"aria-describedby": !_ctx.showInput ? _ctx.contentId : void 0,
|
||||
class: vue.normalizeClass(`${_ctx.ns.namespace.value}-overlay-message-box`),
|
||||
onClick: _ctx.overlayEvent.onClick,
|
||||
onMousedown: _ctx.overlayEvent.onMousedown,
|
||||
onMouseup: _ctx.overlayEvent.onMouseup
|
||||
}, [
|
||||
vue.createVNode(_component_el_focus_trap, {
|
||||
loop: "",
|
||||
trapped: _ctx.visible,
|
||||
"focus-trap-el": _ctx.rootRef,
|
||||
"focus-start-el": _ctx.focusStartRef,
|
||||
onReleaseRequested: _ctx.onCloseRequested
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
vue.createElementVNode("div", {
|
||||
ref: "rootRef",
|
||||
class: vue.normalizeClass([
|
||||
_ctx.ns.b(),
|
||||
_ctx.customClass,
|
||||
_ctx.ns.is("draggable", _ctx.draggable),
|
||||
_ctx.ns.is("dragging", _ctx.isDragging),
|
||||
{ [_ctx.ns.m("center")]: _ctx.center }
|
||||
]),
|
||||
style: vue.normalizeStyle(_ctx.customStyle),
|
||||
tabindex: "-1",
|
||||
onClick: vue.withModifiers(() => {
|
||||
}, ["stop"])
|
||||
}, [
|
||||
_ctx.title !== null && _ctx.title !== void 0 ? (vue.openBlock(), vue.createElementBlock("div", {
|
||||
key: 0,
|
||||
ref: "headerRef",
|
||||
class: vue.normalizeClass([_ctx.ns.e("header"), { "show-close": _ctx.showClose }])
|
||||
}, [
|
||||
vue.createElementVNode("div", {
|
||||
class: vue.normalizeClass(_ctx.ns.e("title"))
|
||||
}, [
|
||||
_ctx.iconComponent && _ctx.center ? (vue.openBlock(), vue.createBlock(_component_el_icon, {
|
||||
key: 0,
|
||||
class: vue.normalizeClass([_ctx.ns.e("status"), _ctx.typeClass])
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.iconComponent)))
|
||||
]),
|
||||
_: 1
|
||||
}, 8, ["class"])) : vue.createCommentVNode("v-if", true),
|
||||
vue.createElementVNode("span", null, vue.toDisplayString(_ctx.title), 1)
|
||||
], 2),
|
||||
_ctx.showClose ? (vue.openBlock(), vue.createElementBlock("button", {
|
||||
key: 0,
|
||||
type: "button",
|
||||
class: vue.normalizeClass(_ctx.ns.e("headerbtn")),
|
||||
"aria-label": _ctx.t("el.messagebox.close"),
|
||||
onClick: ($event) => _ctx.handleAction(_ctx.distinguishCancelAndClose ? "close" : "cancel"),
|
||||
onKeydown: vue.withKeys(vue.withModifiers(($event) => _ctx.handleAction(_ctx.distinguishCancelAndClose ? "close" : "cancel"), ["prevent"]), ["enter"])
|
||||
}, [
|
||||
vue.createVNode(_component_el_icon, {
|
||||
class: vue.normalizeClass(_ctx.ns.e("close"))
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.closeIcon || "close")))
|
||||
]),
|
||||
_: 1
|
||||
}, 8, ["class"])
|
||||
], 42, ["aria-label", "onClick", "onKeydown"])) : vue.createCommentVNode("v-if", true)
|
||||
], 2)) : vue.createCommentVNode("v-if", true),
|
||||
vue.createElementVNode("div", {
|
||||
id: _ctx.contentId,
|
||||
class: vue.normalizeClass(_ctx.ns.e("content"))
|
||||
}, [
|
||||
vue.createElementVNode("div", {
|
||||
class: vue.normalizeClass(_ctx.ns.e("container"))
|
||||
}, [
|
||||
_ctx.iconComponent && !_ctx.center && _ctx.hasMessage ? (vue.openBlock(), vue.createBlock(_component_el_icon, {
|
||||
key: 0,
|
||||
class: vue.normalizeClass([_ctx.ns.e("status"), _ctx.typeClass])
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.iconComponent)))
|
||||
]),
|
||||
_: 1
|
||||
}, 8, ["class"])) : vue.createCommentVNode("v-if", true),
|
||||
_ctx.hasMessage ? (vue.openBlock(), vue.createElementBlock("div", {
|
||||
key: 1,
|
||||
class: vue.normalizeClass(_ctx.ns.e("message"))
|
||||
}, [
|
||||
vue.renderSlot(_ctx.$slots, "default", {}, () => [
|
||||
!_ctx.dangerouslyUseHTMLString ? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.showInput ? "label" : "p"), {
|
||||
key: 0,
|
||||
for: _ctx.showInput ? _ctx.inputId : void 0,
|
||||
textContent: vue.toDisplayString(_ctx.message)
|
||||
}, null, 8, ["for", "textContent"])) : (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.showInput ? "label" : "p"), {
|
||||
key: 1,
|
||||
for: _ctx.showInput ? _ctx.inputId : void 0,
|
||||
innerHTML: _ctx.message
|
||||
}, null, 8, ["for", "innerHTML"]))
|
||||
])
|
||||
], 2)) : vue.createCommentVNode("v-if", true)
|
||||
], 2),
|
||||
vue.withDirectives(vue.createElementVNode("div", {
|
||||
class: vue.normalizeClass(_ctx.ns.e("input"))
|
||||
}, [
|
||||
vue.createVNode(_component_el_input, {
|
||||
id: _ctx.inputId,
|
||||
ref: "inputRef",
|
||||
modelValue: _ctx.inputValue,
|
||||
"onUpdate:modelValue": ($event) => _ctx.inputValue = $event,
|
||||
type: _ctx.inputType,
|
||||
placeholder: _ctx.inputPlaceholder,
|
||||
"aria-invalid": _ctx.validateError,
|
||||
class: vue.normalizeClass({ invalid: _ctx.validateError }),
|
||||
onKeydown: vue.withKeys(_ctx.handleInputEnter, ["enter"])
|
||||
}, null, 8, ["id", "modelValue", "onUpdate:modelValue", "type", "placeholder", "aria-invalid", "class", "onKeydown"]),
|
||||
vue.createElementVNode("div", {
|
||||
class: vue.normalizeClass(_ctx.ns.e("errormsg")),
|
||||
style: vue.normalizeStyle({
|
||||
visibility: !!_ctx.editorErrorMessage ? "visible" : "hidden"
|
||||
})
|
||||
}, vue.toDisplayString(_ctx.editorErrorMessage), 7)
|
||||
], 2), [
|
||||
[vue.vShow, _ctx.showInput]
|
||||
])
|
||||
], 10, ["id"]),
|
||||
vue.createElementVNode("div", {
|
||||
class: vue.normalizeClass(_ctx.ns.e("btns"))
|
||||
}, [
|
||||
_ctx.showCancelButton ? (vue.openBlock(), vue.createBlock(_component_el_button, {
|
||||
key: 0,
|
||||
loading: _ctx.cancelButtonLoading,
|
||||
"loading-icon": _ctx.cancelButtonLoadingIcon,
|
||||
class: vue.normalizeClass([_ctx.cancelButtonClass]),
|
||||
round: _ctx.roundButton,
|
||||
size: _ctx.btnSize,
|
||||
onClick: ($event) => _ctx.handleAction("cancel"),
|
||||
onKeydown: vue.withKeys(vue.withModifiers(($event) => _ctx.handleAction("cancel"), ["prevent"]), ["enter"])
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
vue.createTextVNode(vue.toDisplayString(_ctx.cancelButtonText || _ctx.t("el.messagebox.cancel")), 1)
|
||||
]),
|
||||
_: 1
|
||||
}, 8, ["loading", "loading-icon", "class", "round", "size", "onClick", "onKeydown"])) : vue.createCommentVNode("v-if", true),
|
||||
vue.withDirectives(vue.createVNode(_component_el_button, {
|
||||
ref: "confirmRef",
|
||||
type: "primary",
|
||||
loading: _ctx.confirmButtonLoading,
|
||||
"loading-icon": _ctx.confirmButtonLoadingIcon,
|
||||
class: vue.normalizeClass([_ctx.confirmButtonClasses]),
|
||||
round: _ctx.roundButton,
|
||||
disabled: _ctx.confirmButtonDisabled,
|
||||
size: _ctx.btnSize,
|
||||
onClick: ($event) => _ctx.handleAction("confirm"),
|
||||
onKeydown: vue.withKeys(vue.withModifiers(($event) => _ctx.handleAction("confirm"), ["prevent"]), ["enter"])
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
vue.createTextVNode(vue.toDisplayString(_ctx.confirmButtonText || _ctx.t("el.messagebox.confirm")), 1)
|
||||
]),
|
||||
_: 1
|
||||
}, 8, ["loading", "loading-icon", "class", "round", "disabled", "size", "onClick", "onKeydown"]), [
|
||||
[vue.vShow, _ctx.showConfirmButton]
|
||||
])
|
||||
], 2)
|
||||
], 14, ["onClick"])
|
||||
]),
|
||||
_: 3
|
||||
}, 8, ["trapped", "focus-trap-el", "focus-start-el", "onReleaseRequested"])
|
||||
], 42, ["aria-label", "aria-describedby", "onClick", "onMousedown", "onMouseup"])
|
||||
]),
|
||||
_: 3
|
||||
}, 8, ["z-index", "overlay-class", "mask"]), [
|
||||
[vue.vShow, _ctx.visible]
|
||||
])
|
||||
]),
|
||||
_: 3
|
||||
}, 8, ["onAfterLeave"]);
|
||||
}
|
||||
var MessageBoxConstructor = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["render", _sfc_render], ["__file", "index.vue"]]);
|
||||
|
||||
exports["default"] = MessageBoxConstructor;
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user