mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
36 lines
847 B
TypeScript
36 lines
847 B
TypeScript
import { watch } from 'vue'
|
|
import { isClient, useEventListener } from '@vueuse/core'
|
|
import { EVENT_CODE } from '@element-plus/constants'
|
|
|
|
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)
|