UNPKG

vxe-pc-ui

Version:
1,215 lines 57.6 kB
import { defineComponent, h, Teleport, ref, inject, computed, reactive, provide, nextTick, watch, onMounted, onUnmounted, createCommentVNode } from 'vue'; import XEUtils from 'xe-utils'; import { getDomNode, getEventTargetNode, toCssUnit } from '../../ui/src/dom'; import { getLastZIndex, nextZIndex, getFuncText, handleBooleanDefaultValue } from '../../ui/src/utils'; import { VxeUI, getConfig, getIcon, getI18n, globalEvents, GLOBAL_EVENT_KEYS, createEvent, useSize } from '../../ui'; import VxeButtonComponent from '../../button/src/button'; import VxeLoadingComponent from '../../loading/index'; import { getSlotVNs } from '../../ui/src/vn'; import { warnLog, errLog } from '../../ui/src/log'; export const allActiveModals = []; const msgQueue = []; const notifyQueue = []; const lockScrollAttrKey = 'data-vxe-lock-scroll'; const lockScrollCssWidthKey = '--vxe-ui-modal-lock-scroll-view-width'; export default defineComponent({ name: 'VxeModal', props: { modelValue: Boolean, id: String, type: { type: String, default: 'modal' }, loading: { type: Boolean, default: null }, status: String, iconStatus: String, className: String, top: { type: [Number, String], default: () => getConfig().modal.top }, position: [String, Object], title: String, duration: { type: [Number, String], default: () => getConfig().modal.duration }, content: [Number, String], showCancelButton: { type: Boolean, default: null }, cancelButtonText: { type: String, default: () => getConfig().modal.cancelButtonText }, showConfirmButton: { type: Boolean, default: () => getConfig().modal.showConfirmButton }, confirmButtonText: { type: String, default: () => getConfig().modal.confirmButtonText }, lockView: { type: Boolean, default: () => getConfig().modal.lockView }, lockScroll: Boolean, mask: { type: Boolean, default: () => getConfig().modal.mask }, maskClosable: { type: Boolean, default: () => getConfig().modal.maskClosable }, escClosable: { type: Boolean, default: () => getConfig().modal.escClosable }, cancelClosable: { type: Boolean, default: () => getConfig().modal.cancelClosable }, confirmClosable: { type: Boolean, default: () => getConfig().modal.confirmClosable }, resize: Boolean, showHeader: { type: Boolean, default: () => getConfig().modal.showHeader }, showFooter: { type: Boolean, default: () => getConfig().modal.showFooter }, showZoom: Boolean, zoomConfig: Object, showMaximize: { type: Boolean, default: () => handleBooleanDefaultValue(getConfig().modal.showMaximize) }, showMinimize: { type: Boolean, default: () => handleBooleanDefaultValue(getConfig().modal.showMinimize) }, showClose: { type: Boolean, default: () => getConfig().modal.showClose }, dblclickZoom: { type: Boolean, default: () => getConfig().modal.dblclickZoom }, width: [Number, String], height: [Number, String], minWidth: { type: [Number, String], default: () => getConfig().modal.minWidth }, minHeight: { type: [Number, String], default: () => getConfig().modal.minHeight }, zIndex: Number, marginSize: { type: [Number, String], default: () => getConfig().modal.marginSize }, fullscreen: Boolean, draggable: { type: Boolean, default: () => getConfig().modal.draggable }, remember: { type: Boolean, default: () => getConfig().modal.remember }, destroyOnClose: { type: Boolean, default: () => getConfig().modal.destroyOnClose }, showTitleOverflow: { type: Boolean, default: () => getConfig().modal.showTitleOverflow }, transfer: { type: Boolean, default: () => getConfig().modal.transfer }, storage: { type: Boolean, default: () => getConfig().modal.storage }, storageKey: { type: String, default: () => getConfig().modal.storageKey }, padding: { type: Boolean, default: () => getConfig().modal.padding }, size: { type: String, default: () => getConfig().modal.size || getConfig().size }, beforeHideMethod: Function, slots: Object, /** * 已废弃 * @deprecated */ message: [Number, String], /** * 已废弃 * @deprecated */ animat: { type: Boolean, default: () => getConfig().modal.animat } }, emits: [ 'update:modelValue', 'show', 'hide', 'before-hide', 'close', 'confirm', 'cancel', 'zoom', 'resize', 'move' ], setup(props, context) { const { slots, emit } = context; const xID = XEUtils.uniqueId(); const $xeParentModal = inject('$xeModal', null); const $xeDrawer = inject('$xeDrawer', null); const $xeTable = inject('$xeTable', null); const $xeForm = inject('$xeForm', null); const { computeSize } = useSize(props); const reactData = reactive({ initialized: false, visible: false, contentVisible: false, modalTop: 0, modalZindex: 0, prevZoomStatus: '', zoomStatus: '', revertLocat: null, prevLocat: null, firstOpen: true, resizeFlag: 1 }); const internalData = { msgTimeout: undefined }; const refElem = ref(); const refModalBox = ref(); const refHeaderElem = ref(); const refConfirmBtn = ref(); const refCancelBtn = ref(); const refMaps = { refElem }; const computeBtnTransfer = computed(() => { const { transfer } = props; if (transfer === null) { const globalTransfer = getConfig().modal.transfer; if (XEUtils.isBoolean(globalTransfer)) { return globalTransfer; } if ($xeTable || $xeParentModal || $xeDrawer || $xeForm) { return true; } } return transfer; }); const computeIsMsg = computed(() => { return props.type === 'message' || props.type === 'notification'; }); const computeIsMinimizeStatus = computed(() => { return reactData.zoomStatus === 'minimize'; }); const computeIsMaximizeStatus = computed(() => { return reactData.zoomStatus === 'maximize'; }); const computeZoomOpts = computed(() => { return Object.assign({}, getConfig().modal.zoomConfig, props.zoomConfig); }); const computeMaps = { computeSize, computeZoomOpts }; const $xeModal = { xID, props, context, reactData, internalData, getRefMaps: () => refMaps, getComputeMaps: () => computeMaps }; let modalMethods = {}; const getBox = () => { const boxElem = refModalBox.value; return boxElem; }; const recalculate = () => { const { width, height } = props; const boxElem = getBox(); if (boxElem) { boxElem.style.width = width ? toCssUnit(width) : ''; boxElem.style.height = height ? toCssUnit(height) : ''; } return nextTick(); }; const updateZindex = () => { const { zIndex } = props; const { modalZindex } = reactData; if (zIndex) { reactData.modalZindex = zIndex; } else if (modalZindex < getLastZIndex()) { reactData.modalZindex = nextZIndex(); } }; const updatePosition = () => { return nextTick().then(() => { const { position } = props; const marginSize = XEUtils.toNumber(props.marginSize); const boxElem = getBox(); if (!boxElem) { return; } const clientVisibleWidth = document.documentElement.clientWidth || document.body.clientWidth; const clientVisibleHeight = document.documentElement.clientHeight || document.body.clientHeight; const isPosCenter = position === 'center'; const { top, left } = XEUtils.isString(position) ? { top: position, left: position } : Object.assign({}, position); const topCenter = isPosCenter || top === 'center'; const leftCenter = isPosCenter || left === 'center'; let posTop = ''; let posLeft = ''; if (left && !leftCenter) { posLeft = isNaN(left) ? left : `${left}px`; } else { posLeft = `${Math.max(marginSize, clientVisibleWidth / 2 - boxElem.offsetWidth / 2)}px`; } if (top && !topCenter) { posTop = isNaN(top) ? top : `${top}px`; } else { posTop = `${Math.max(marginSize, clientVisibleHeight / 2 - boxElem.offsetHeight / 2)}px`; } boxElem.style.top = posTop; boxElem.style.left = posLeft; }); }; const updateStyle = () => { nextTick(() => { const { type } = props; const queueList = type === 'notification' ? notifyQueue : msgQueue; let offsetTop = 0; queueList.forEach(comp => { const boxElem = comp.getBox(); if (boxElem) { offsetTop += XEUtils.toNumber(comp.props.top); comp.reactData.modalTop = offsetTop; offsetTop += boxElem.clientHeight; } }); }); }; const removeMsgQueue = () => { const { type } = props; const queueList = type === 'notification' ? notifyQueue : msgQueue; if (queueList.indexOf($xeModal) > -1) { XEUtils.remove(queueList, comp => comp === $xeModal); } updateStyle(); }; const closeModal = (type) => { const { remember } = props; const { visible } = reactData; const isMsg = computeIsMsg.value; const beforeHideFn = props.beforeHideMethod || getConfig().modal.beforeHideMethod; const params = { type }; if (visible) { Promise.resolve(beforeHideFn ? beforeHideFn(params) : null).then((rest) => { if (!XEUtils.isError(rest)) { if (isMsg) { removeMsgQueue(); } reactData.contentVisible = false; if (!remember) { handleRevert(); } XEUtils.remove(allActiveModals, item => item === $xeModal); dispatchEvent('before-hide', params, null); setTimeout(() => { reactData.visible = false; emit('update:modelValue', false); dispatchEvent('hide', params, null); }, 200); removeBodyLockScroll(); } }).catch(e => e); } return nextTick(); }; const closeEvent = (evnt) => { const type = 'close'; dispatchEvent(type, { type }, evnt); closeModal(type); }; const confirmEvent = (evnt) => { const { confirmClosable } = props; const type = 'confirm'; dispatchEvent(type, { type }, evnt); if (confirmClosable) { closeModal(type); } }; const cancelEvent = (evnt) => { const { cancelClosable } = props; const type = 'cancel'; dispatchEvent(type, { type }, evnt); if (cancelClosable) { closeModal(type); } }; const getStorageMap = (key) => { const version = getConfig().version; const rest = XEUtils.toStringJSON(localStorage.getItem(key) || ''); return rest && rest._v === version ? rest : { _v: version }; }; const hasPosStorage = () => { const { id, storage, storageKey } = props; return !!(id && storage && getStorageMap(storageKey)[id]); }; const restorePosStorage = () => { const { id, storage, storageKey } = props; if (id && storage) { const posStorage = getStorageMap(storageKey)[id]; if (posStorage) { const boxElem = getBox(); const [left, top, width, height, zoomLeft, zoomTop, zoomWidth, zoomHeight] = posStorage.split(','); if (boxElem) { if (left) { boxElem.style.left = `${left}px`; } if (top) { boxElem.style.top = `${top}px`; } if (width) { boxElem.style.width = `${width}px`; } if (height) { boxElem.style.height = `${height}px`; } } if (zoomLeft && zoomTop) { reactData.revertLocat = { left: zoomLeft, top: zoomTop, width: zoomWidth, height: zoomHeight }; } } } }; const addMsgQueue = () => { const { type } = props; const queueList = type === 'notification' ? notifyQueue : msgQueue; if (queueList.indexOf($xeModal) === -1) { queueList.push($xeModal); } updateStyle(); }; const savePosStorage = () => { const { id, storage, storageKey } = props; const { zoomStatus, revertLocat } = reactData; if (zoomStatus) { return; } if (id && storage) { const boxElem = getBox(); if (!boxElem) { return; } const posStorageMap = getStorageMap(storageKey); posStorageMap[id] = [ boxElem.style.left, boxElem.style.top, boxElem.style.width, boxElem.style.height ].concat(revertLocat ? [ revertLocat.left, revertLocat.top, revertLocat.width, revertLocat.height ] : []).map(val => val ? XEUtils.toNumber(val) : '').join(','); localStorage.setItem(storageKey, XEUtils.toJSONString(posStorageMap)); } }; const handleMinimize = () => { const zoomOpts = computeZoomOpts.value; const { minimizeLayout, minimizeMaxSize, minimizeHorizontalOffset, minimizeVerticalOffset, minimizeOffsetMethod } = zoomOpts; const isHorizontalLayout = minimizeLayout === 'horizontal'; const prevZoomStatus = reactData.zoomStatus; const hlMList = []; const vlMList = []; allActiveModals.forEach(item => { if (item.xID !== $xeModal.xID && item.props.type === 'modal' && item.reactData.zoomStatus === 'minimize') { const itemZoomOpts = item.getComputeMaps().computeZoomOpts.value; if (itemZoomOpts.minimizeLayout === 'horizontal') { hlMList.push(item); } else { vlMList.push(item); } } }); const mList = isHorizontalLayout ? hlMList : vlMList; // 如果配置最小化最大数量 if (minimizeMaxSize && mList.length >= minimizeMaxSize) { if (VxeUI.modal) { VxeUI.modal.message({ status: 'error', content: getI18n('vxe.modal.miniMaxSize', [minimizeMaxSize]) }); } return Promise.resolve({ status: false }); } reactData.prevZoomStatus = prevZoomStatus; reactData.zoomStatus = 'minimize'; return nextTick().then(() => { const boxElem = getBox(); if (!boxElem) { return { status: false }; } const headerEl = refHeaderElem.value; if (!headerEl) { return { status: false }; } const { visibleHeight } = getDomNode(); // 如果当前处于复原状态 if (!prevZoomStatus) { reactData.revertLocat = { top: boxElem.offsetTop, left: boxElem.offsetLeft, width: boxElem.offsetWidth + (boxElem.style.width ? 0 : 1), height: boxElem.offsetHeight + (boxElem.style.height ? 0 : 1) }; } const targetModal = XEUtils[isHorizontalLayout ? 'max' : 'min'](mList, ($modal) => { const boxElem = $modal.getBox(); return boxElem ? XEUtils.toNumber(boxElem.style[isHorizontalLayout ? 'left' : 'top']) : 0; }); let targetTop = visibleHeight - headerEl.offsetHeight - 16; let targetLeft = 16; if (targetModal) { const minBoxElem = targetModal.getBox(); if (minBoxElem) { const boxLeft = XEUtils.toNumber(minBoxElem.style.left); const boxTop = XEUtils.toNumber(minBoxElem.style.top); let offsetObj = {}; if (isHorizontalLayout) { offsetObj = Object.assign({}, minimizeHorizontalOffset); } else { offsetObj = Object.assign({}, minimizeVerticalOffset); } targetLeft = boxLeft + XEUtils.toNumber(offsetObj.left); targetTop = boxTop + XEUtils.toNumber(offsetObj.top); if (minimizeOffsetMethod) { offsetObj = minimizeOffsetMethod({ $modal: $xeModal, left: targetLeft, top: targetTop }); targetLeft = XEUtils.toNumber(offsetObj.left); targetTop = XEUtils.toNumber(offsetObj.top); } } } Object.assign(boxElem.style, { top: `${targetTop}px`, left: `${targetLeft}px`, width: '200px', height: `${headerEl.offsetHeight}px` }); savePosStorage(); return { status: true }; }); }; const handleMaximize = () => { const prevZoomStatus = reactData.zoomStatus; reactData.prevZoomStatus = prevZoomStatus; reactData.zoomStatus = 'maximize'; return nextTick().then(() => { const boxElem = getBox(); if (boxElem) { // 如果当前处于复原状态 if (!prevZoomStatus) { const marginSize = XEUtils.toNumber(props.marginSize); const clientVisibleWidth = document.documentElement.clientWidth || document.body.clientWidth; const clientVisibleHeight = document.documentElement.clientHeight || document.body.clientHeight; reactData.revertLocat = { top: Math.max(marginSize, clientVisibleHeight / 2 - boxElem.offsetHeight / 2), left: Math.max(marginSize, clientVisibleWidth / 2 - boxElem.offsetWidth / 2), width: boxElem.offsetWidth + (boxElem.style.width ? 0 : 1), height: boxElem.offsetHeight + (boxElem.style.height ? 0 : 1) }; } Object.assign(boxElem.style, { top: '0', left: '0', width: '100%', height: '100%' }); } savePosStorage(); return { status: true }; }); }; const handleMsgAutoClose = () => { const { duration } = props; if (duration !== -1) { internalData.msgTimeout = setTimeout(() => closeModal('close'), XEUtils.toNumber(duration)); } }; const removeBodyLockScroll = () => { const htmlElem = document.documentElement; const lockData = htmlElem.getAttribute(lockScrollAttrKey); if (lockData) { const lockList = lockData.split(',').filter(key => key !== xID); if (lockList.length) { htmlElem.setAttribute(lockScrollAttrKey, lockList.join(',')); } else { htmlElem.removeAttribute(lockScrollAttrKey); htmlElem.style.removeProperty(lockScrollCssWidthKey); } } }; const addBodyLockScroll = () => { const { lockScroll } = props; const isMsg = computeIsMsg.value; if (lockScroll && !isMsg) { const htmlElem = document.documentElement; const clientWidth = document.body.clientWidth; const lockData = htmlElem.getAttribute(lockScrollAttrKey); const lockList = lockData ? lockData.split(',') : []; if (!lockList.includes(xID)) { lockList.push(xID); htmlElem.setAttribute(lockScrollAttrKey, lockList.join(',')); } htmlElem.style.setProperty(lockScrollCssWidthKey, `${clientWidth}px`); } }; const openModal = () => { const { remember, showFooter } = props; const { initialized, visible } = reactData; const isMsg = computeIsMsg.value; if (!initialized) { reactData.initialized = true; } if (!visible) { addBodyLockScroll(); reactData.visible = true; reactData.contentVisible = false; updateZindex(); allActiveModals.push($xeModal); setTimeout(() => { reactData.contentVisible = true; nextTick(() => { if (showFooter) { const confirmBtn = refConfirmBtn.value; const cancelBtn = refCancelBtn.value; const operBtn = confirmBtn || cancelBtn; if (operBtn) { operBtn.focus(); } } const type = ''; const params = { type }; emit('update:modelValue', true); dispatchEvent('show', params, null); }); }, 10); if (isMsg) { addMsgQueue(); handleMsgAutoClose(); } else { nextTick(() => { const { fullscreen } = props; const { firstOpen } = reactData; if (firstOpen) { reactData.firstOpen = false; if (hasPosStorage()) { restorePosStorage(); } else { if (fullscreen) { nextTick(() => handleMaximize()); } else { recalculate(); updatePosition().then(() => { setTimeout(() => updatePosition(), 20); }); } } } else { if (!remember) { recalculate(); updatePosition().then(() => { setTimeout(() => updatePosition(), 20); }); } } }); } } return nextTick(); }; const selfClickEvent = (evnt) => { const el = refElem.value; if (props.maskClosable && evnt.target === el) { const type = 'mask'; closeModal(type); } }; const selfMouseoverEvent = () => { const { msgTimeout } = internalData; if (!msgTimeout) { return; } const isMsg = computeIsMsg.value; if (isMsg) { clearTimeout(msgTimeout); internalData.msgTimeout = undefined; } }; const selfMouseoutEvent = () => { const { msgTimeout } = internalData; if (!msgTimeout) { const isMsg = computeIsMsg.value; if (isMsg) { handleMsgAutoClose(); } } }; const handleGlobalKeydownEvent = (evnt) => { const isEsc = globalEvents.hasKey(evnt, GLOBAL_EVENT_KEYS.ESCAPE); if (isEsc) { const lastModal = XEUtils.max(allActiveModals, (item) => item.reactData.modalZindex); // 多个时,只关掉最上层的窗口 if (lastModal) { setTimeout(() => { if (lastModal === $xeModal && lastModal.props.escClosable) { const type = 'exit'; dispatchEvent('close', { type }, evnt); closeModal(type); } }, 10); } } }; const isMinimized = () => { return reactData.zoomStatus === 'minimize'; }; const isMaximized = () => { return reactData.zoomStatus === 'maximize'; }; const handleRevert = () => { reactData.prevZoomStatus = reactData.zoomStatus; reactData.zoomStatus = ''; return nextTick().then(() => { const { revertLocat } = reactData; if (revertLocat) { const boxElem = getBox(); reactData.revertLocat = null; if (boxElem) { Object.assign(boxElem.style, { top: `${revertLocat.top}px`, left: `${revertLocat.left}px`, width: `${revertLocat.width}px`, height: `${revertLocat.height}px` }); } savePosStorage(); return nextTick().then(() => { return { status: true }; }); } return { status: false }; }); }; const handleZoom = (type) => { const { zoomStatus } = reactData; return new Promise(resolve => { if (type) { if (type === 'maximize') { resolve(handleMaximize()); return; } if (type === 'minimize') { resolve(handleMinimize()); return; } resolve(handleRevert()); return; } resolve(zoomStatus ? handleRevert() : handleMaximize()); }).then(() => { return reactData.zoomStatus || 'revert'; }); }; const toggleZoomMinEvent = (evnt) => { const { zoomStatus, prevZoomStatus } = reactData; return handleZoom(zoomStatus === 'minimize' ? (prevZoomStatus || 'revert') : 'minimize').then((type) => { const params = { type }; dispatchEvent('zoom', params, evnt); }); }; const toggleZoomMaxEvent = (evnt) => { return handleZoom().then((type) => { const params = { type }; dispatchEvent('zoom', params, evnt); }); }; const getPosition = () => { const isMsg = computeIsMsg.value; if (!isMsg) { const boxElem = getBox(); if (boxElem) { return { top: boxElem.offsetTop, left: boxElem.offsetLeft }; } } return null; }; const setPosition = (top, left) => { const isMsg = computeIsMsg.value; if (!isMsg) { const boxElem = getBox(); if (boxElem) { if (XEUtils.isNumber(top)) { boxElem.style.top = `${top}px`; } if (XEUtils.isNumber(left)) { boxElem.style.left = `${left}px`; } } } return nextTick(); }; const boxMousedownEvent = () => { const { modalZindex } = reactData; if (allActiveModals.some(comp => comp.reactData.visible && comp.reactData.modalZindex > modalZindex)) { updateZindex(); } }; const mousedownEvent = (evnt) => { const { storage } = props; const { zoomStatus } = reactData; const marginSize = XEUtils.toNumber(props.marginSize); const boxElem = getBox(); if (!boxElem) { return; } if (zoomStatus !== 'maximize' && evnt.button === 0 && !getEventTargetNode(evnt, boxElem, 'trigger--btn').flag) { evnt.preventDefault(); const disX = evnt.clientX - boxElem.offsetLeft; const disY = evnt.clientY - boxElem.offsetTop; const { visibleHeight, visibleWidth } = getDomNode(); document.onmousemove = evnt => { evnt.preventDefault(); const offsetWidth = boxElem.offsetWidth; const offsetHeight = boxElem.offsetHeight; const minX = marginSize; const maxX = visibleWidth - offsetWidth - marginSize - 1; const minY = marginSize; const maxY = visibleHeight - offsetHeight - marginSize - 1; let left = evnt.clientX - disX; let top = evnt.clientY - disY; if (left > maxX) { left = maxX; } if (left < minX) { left = minX; } if (top > maxY) { top = maxY; } if (top < minY) { top = minY; } boxElem.style.left = `${left}px`; boxElem.style.top = `${top}px`; boxElem.className = boxElem.className.replace(/\s?is--drag/, '') + ' is--drag'; dispatchEvent('move', { type: 'move' }, evnt); reactData.resizeFlag++; }; document.onmouseup = () => { document.onmousemove = null; document.onmouseup = null; if (storage) { nextTick(() => { savePosStorage(); }); } reactData.resizeFlag++; setTimeout(() => { boxElem.className = boxElem.className.replace(/\s?is--drag/, ''); }, 50); }; } }; const dragEvent = (evnt) => { evnt.preventDefault(); const { storage } = props; const { visibleHeight, visibleWidth } = getDomNode(); const marginSize = XEUtils.toNumber(props.marginSize); const targetElem = evnt.target; const type = targetElem.getAttribute('type'); const minWidth = XEUtils.toNumber(props.minWidth); const minHeight = XEUtils.toNumber(props.minHeight); const maxWidth = visibleWidth; const maxHeight = visibleHeight; const boxElem = getBox(); const clientWidth = boxElem.clientWidth; const clientHeight = boxElem.clientHeight; const disX = evnt.clientX; const disY = evnt.clientY; const offsetTop = boxElem.offsetTop; const offsetLeft = boxElem.offsetLeft; const params = { type: 'resize' }; document.onmousemove = evnt => { evnt.preventDefault(); let dragLeft; let dragTop; let width; let height; switch (type) { case 'wl': dragLeft = disX - evnt.clientX; width = dragLeft + clientWidth; if (offsetLeft - dragLeft > marginSize) { if (width > minWidth) { boxElem.style.width = `${width < maxWidth ? width : maxWidth}px`; boxElem.style.left = `${offsetLeft - dragLeft}px`; } } break; case 'swst': dragLeft = disX - evnt.clientX; dragTop = disY - evnt.clientY; width = dragLeft + clientWidth; height = dragTop + clientHeight; if (offsetLeft - dragLeft > marginSize) { if (width > minWidth) { boxElem.style.width = `${width < maxWidth ? width : maxWidth}px`; boxElem.style.left = `${offsetLeft - dragLeft}px`; } } if (offsetTop - dragTop > marginSize) { if (height > minHeight) { boxElem.style.height = `${height < maxHeight ? height : maxHeight}px`; boxElem.style.top = `${offsetTop - dragTop}px`; } } break; case 'swlb': dragLeft = disX - evnt.clientX; dragTop = evnt.clientY - disY; width = dragLeft + clientWidth; height = dragTop + clientHeight; if (offsetLeft - dragLeft > marginSize) { if (width > minWidth) { boxElem.style.width = `${width < maxWidth ? width : maxWidth}px`; boxElem.style.left = `${offsetLeft - dragLeft}px`; } } if (offsetTop + height + marginSize < visibleHeight) { if (height > minHeight) { boxElem.style.height = `${height < maxHeight ? height : maxHeight}px`; } } break; case 'st': dragTop = disY - evnt.clientY; height = clientHeight + dragTop; if (offsetTop - dragTop > marginSize) { if (height > minHeight) { boxElem.style.height = `${height < maxHeight ? height : maxHeight}px`; boxElem.style.top = `${offsetTop - dragTop}px`; } } break; case 'wr': dragLeft = evnt.clientX - disX; width = dragLeft + clientWidth; if (offsetLeft + width + marginSize < visibleWidth) { if (width > minWidth) { boxElem.style.width = `${width < maxWidth ? width : maxWidth}px`; } } break; case 'sest': dragLeft = evnt.clientX - disX; dragTop = disY - evnt.clientY; width = dragLeft + clientWidth; height = dragTop + clientHeight; if (offsetLeft + width + marginSize < visibleWidth) { if (width > minWidth) { boxElem.style.width = `${width < maxWidth ? width : maxWidth}px`; } } if (offsetTop - dragTop > marginSize) { if (height > minHeight) { boxElem.style.height = `${height < maxHeight ? height : maxHeight}px`; boxElem.style.top = `${offsetTop - dragTop}px`; } } break; case 'selb': dragLeft = evnt.clientX - disX; dragTop = evnt.clientY - disY; width = dragLeft + clientWidth; height = dragTop + clientHeight; if (offsetLeft + width + marginSize < visibleWidth) { if (width > minWidth) { boxElem.style.width = `${width < maxWidth ? width : maxWidth}px`; } } if (offsetTop + height + marginSize < visibleHeight) { if (height > minHeight) { boxElem.style.height = `${height < maxHeight ? height : maxHeight}px`; } } break; case 'sb': dragTop = evnt.clientY - disY; height = dragTop + clientHeight; if (offsetTop + height + marginSize < visibleHeight) { if (height > minHeight) { boxElem.style.height = `${height < maxHeight ? height : maxHeight}px`; } } break; } boxElem.className = boxElem.className.replace(/\s?is--drag/, '') + ' is--drag'; if (storage) { savePosStorage(); } dispatchEvent('resize', params, evnt); }; document.onmouseup = () => { reactData.revertLocat = null; document.onmousemove = null; document.onmouseup = null; setTimeout(() => { boxElem.className = boxElem.className.replace(/\s?is--drag/, ''); }, 50); }; }; const dispatchEvent = (type, params, evnt) => { emit(type, createEvent(evnt, { $modal: $xeModal }, params)); }; modalMethods = { dispatchEvent, open: openModal, close() { return closeModal('close'); }, getBox, getPosition, setPosition, isMinimized, isMaximized, zoom() { return handleZoom(); }, minimize() { if (!reactData.visible) { return Promise.resolve({ status: false }); } return handleMinimize(); }, maximize() { if (!reactData.visible) { return Promise.resolve({ status: false }); } return handleMaximize(); }, revert() { if (!reactData.visible) { return Promise.resolve({ status: false }); } return handleRevert(); } }; Object.assign($xeModal, modalMethods); const renderTitles = () => { const { slots: propSlots = {}, showClose, showZoom, showMaximize, showMinimize, title } = props; const { zoomStatus } = reactData; const titleSlot = slots.title || propSlots.title; const cornerSlot = slots.corner || propSlots.corner; const isMinimizeStatus = computeIsMinimizeStatus.value; const isMaximizeStatus = computeIsMaximizeStatus.value; return [ h('div', { class: 'vxe-modal--header-title' }, titleSlot ? getSlotVNs(titleSlot({ $modal: $xeModal, minimized: isMinimizeStatus, maximized: isMaximizeStatus })) : (title ? getFuncText(title) : getI18n('vxe.alert.title'))), h('div', { class: 'vxe-modal--header-right' }, [ cornerSlot && !isMinimizeStatus ? h('div', { class: 'vxe-modal--corner-wrapper' }, getSlotVNs(cornerSlot({ $modal: $xeModal }))) : createCommentVNode(), (XEUtils.isBoolean(showMinimize) ? showMinimize : showZoom) ? h('div', { class: ['vxe-modal--zoom-btn', 'trigger--btn'], title: getI18n(`vxe.modal.zoom${zoomStatus === 'minimize' ? 'Out' : 'Min'}`), onClick: toggleZoomMinEvent }, [ h('i', { class: zoomStatus === 'minimize' ? getIcon().MODAL_ZOOM_REVERT : getIcon().MODAL_ZOOM_MIN }) ]) : createCommentVNode(), (XEUtils.isBoolean(showMaximize) ? showMaximize : showZoom) && zoomStatus !== 'minimize' ? h('div', { class: ['vxe-modal--zoom-btn', 'trigger--btn'], title: getI18n(`vxe.modal.zoom${zoomStatus === 'maximize' ? 'Out' : 'In'}`), onClick: toggleZoomMaxEvent }, [ h('i', { class: zoomStatus === 'maximize' ? getIcon().MODAL_ZOOM_OUT : getIcon().MODAL_ZOOM_IN }) ]) : createCommentVNode(), showClose ? h('div', { class: ['vxe-modal--close-btn', 'trigger--btn'], title: getI18n('vxe.modal.close'), onClick: closeEvent }, [ h('i', { class: getIcon().MODAL_CLOSE }) ]) : createCommentVNode() ]) ]; }; const renderHeader = () => { const { slots: propSlots = {}, showZoom, showMaximize, draggable } = props; const headerSlot = slots.header || propSlots.header; if (props.showHeader) { const headerOns = {}; if (draggable) { headerOns.onMousedown = mousedownEvent; } if ((XEUtils.isBoolean(showMaximize) ? showMaximize : showZoom) && props.dblclickZoom && props.type === 'modal') { headerOns.onDblclick = toggleZoomMaxEvent; } return h('div', Object.assign({ ref: refHeaderElem, class: ['vxe-modal--header', { 'is--ellipsis': props.showTitleOverflow }] }, headerOns), headerSlot ? getSlotVNs(headerSlot({ $modal: $xeModal })) : renderTitles()); } return createCommentVNode(); }; const renderBody = () => { const { slots: propSlots = {}, status, message, iconStatus } = props; const content = props.content || message; const isMsg = computeIsMsg.value; const defaultSlot = slots.default || propSlots.default; const leftSlot = slots.left || propSlots.left; const rightSlot = slots.right || propSlots.right; const contVNs = []; if (!isMsg && (status || iconStatus)) { contVNs.push(h('div', { class: 'vxe-modal--status-wrapper' }, [ h('i', { class: ['vxe-modal--status-icon', iconStatus || getIcon()[`MODAL_${status}`.toLocaleUpperCase()]] }) ])); } contVNs.push(h('div', { class: 'vxe-modal--content' }, defaultSlot ? getSlotVNs(defaultSlot({ $modal: $xeModal })) : getFuncText(content))); return h('div', { class: 'vxe-modal--body' }, [ leftSlot ? h('div', { class: 'vxe-modal--body-left' }, getSlotVNs(leftSlot({ $modal: $xeModal }))) : createCommentVNode(), h('div', { class: 'vxe-modal--body-default' }, contVNs), rightSlot ? h('div', { class: 'vxe-modal--body-right' }, getSlotVNs(rightSlot({ $modal: $xeModal }))) : createCommentVNode(), isMsg ? createCommentVNode() : h(VxeLoadingComponent, { class: 'vxe-modal--loading', modelValue: props.loading }) ]); }; const renderDefaultFooter = () => { const { slots: propSlots = {}, showCancelButton, showConfirmButton, type, loading } = props; const lfSlot = slots.leftfoot || propSl