91 lines
2.6 KiB
Vue
91 lines
2.6 KiB
Vue
<script setup>
|
|
import { computed, watch, onBeforeMount, onMounted } from 'vue'
|
|
|
|
const emit = defineEmits(['close'])
|
|
|
|
const props = defineProps({
|
|
show: {
|
|
default: false
|
|
},
|
|
maxWidth: {
|
|
default: '2xl'
|
|
},
|
|
closeable: {
|
|
default: true
|
|
},
|
|
})
|
|
|
|
// computed properties
|
|
const maxWidthClass = computed(() => {
|
|
return {
|
|
'sm': 'sm:max-w-sm',
|
|
'md': 'sm:max-w-md',
|
|
'lg': 'sm:max-w-lg',
|
|
'xl': 'sm:max-w-xl',
|
|
'2xl': 'sm:max-w-2xl',
|
|
}[props.maxWidth]
|
|
})
|
|
|
|
// watchers
|
|
watch(() => props.show, (newShow) => {
|
|
if (newShow) {
|
|
document.body.style.overflow = 'hidden'
|
|
} else {
|
|
document.body.style.overflow = null
|
|
}
|
|
})
|
|
|
|
// lifecycle hooks
|
|
onBeforeMount(() => {
|
|
document.removeEventListener('keydown', closeOnEscape)
|
|
document.body.style.overflow = null
|
|
})
|
|
|
|
onMounted(() => {
|
|
document.addEventListener('keydown', closeOnEscape)
|
|
})
|
|
|
|
// methods
|
|
const close = (() => {
|
|
if (props.closeable) {
|
|
emit('close')
|
|
}
|
|
})
|
|
|
|
const closeOnEscape = ((event) => {
|
|
if (event.key === 'Escape' && props.show) {
|
|
close()
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<teleport to="body">
|
|
<transition leave-active-class="duration-200">
|
|
<div v-show="show" class="fixed inset-0 overflow-y-auto px-4 py-6 sm:px-0 z-50" scroll-region>
|
|
<transition enter-active-class="ease-out duration-300"
|
|
enter-from-class="opacity-0"
|
|
enter-to-class="opacity-100"
|
|
leave-active-class="ease-in duration-200"
|
|
leave-from-class="opacity-100"
|
|
leave-to-class="opacity-0">
|
|
<div v-show="show" class="fixed inset-0 transform transition-all" @click="close">
|
|
<div class="absolute inset-0 bg-gray-500 opacity-75"></div>
|
|
</div>
|
|
</transition>
|
|
|
|
<transition enter-active-class="ease-out duration-300"
|
|
enter-from-class="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
enter-to-class="opacity-100 translate-y-0 sm:scale-100"
|
|
leave-active-class="ease-in duration-200"
|
|
leave-from-class="opacity-100 translate-y-0 sm:scale-100"
|
|
leave-to-class="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95">
|
|
<div v-show="show" class="mb-6 bg-white rounded-lg overflow-hidden shadow-xl transform transition-all sm:w-full sm:mx-auto" :class="maxWidthClass">
|
|
<slot v-if="show"></slot>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</transition>
|
|
</teleport>
|
|
</template>
|