mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
bbd16a08e9
* refactor(hooks): remove use-css-var * refactor(hooks): remove use-events * refactor(hooks): remove use-migrating * refactor(hooks): remove use-transition * refactor(hooks): named export useAttrs * refactor(hooks): named export useFocus * refactor(hooks): refactor useFormItem * refactor(hooks): refactor useGlobalConfig * refactor(hooks): refactor useLocale * refactor(hooks): refactor useLockscreen * refactor(hooks): refactor useModal * refactor(hooks): refactor useModelToggle * refactor(hooks): refactor usePreventGlobal * refactor(hooks): refactor useRestoreActive * refactor(hooks): refactor useTeleport * refactor(hooks): refactor useThrottleRender * refactor(hooks): refactor useTimeout * refactor(hooks): refactor useTransitionFallthrogh
36 lines
848 B
TypeScript
36 lines
848 B
TypeScript
import { watch } from 'vue'
|
|
import { isClient, useEventListener } from '@vueuse/core'
|
|
import { EVENT_CODE } from '@element-plus/utils/aria'
|
|
|
|
import type { Ref } from 'vue'
|
|
|
|
type ModalInstance = {
|
|
handleClose: () => void
|
|
}
|
|
|
|
const modalStack: ModalInstance[] = []
|
|
|
|
const closeModal = (e: KeyboardEvent) => {
|
|
if (modalStack.length === 0) return
|
|
if (e.code === EVENT_CODE.esc) {
|
|
e.stopPropagation()
|
|
const topModal = modalStack[modalStack.length - 1]
|
|
topModal.handleClose()
|
|
}
|
|
}
|
|
|
|
export const useModal = (instance: ModalInstance, visibleRef: Ref<boolean>) => {
|
|
watch(visibleRef, (val) => {
|
|
if (val) {
|
|
modalStack.push(instance)
|
|
} else {
|
|
modalStack.splice(
|
|
modalStack.findIndex((modal) => modal === instance),
|
|
1
|
|
)
|
|
}
|
|
})
|
|
}
|
|
|
|
if (isClient) useEventListener(document, 'keydown', closeModal)
|