-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<script setup lang="ts"> | ||
import { Dialog, DialogDescription, DialogPanel, DialogTitle, TransitionChild, TransitionRoot } from '@headlessui/vue' | ||
withDefaults( | ||
defineProps<{ | ||
appear?: boolean | ||
title?: string | ||
noTitle?: boolean | ||
preventClose?: boolean | ||
overlay?: boolean | ||
}>(), | ||
{ | ||
appear: false, | ||
noTitle: false, | ||
preventClose: false, | ||
overlay: false, | ||
}, | ||
) | ||
const emits = defineEmits<{ | ||
close: [] | ||
}>() | ||
const isOpen = defineModel<boolean>({ | ||
default: false, | ||
}) | ||
const slots = useSlots() | ||
const overlayTransitionClass = ref({ | ||
enter: 'ease-in-out duration-500', | ||
enterFrom: 'opacity-0', | ||
enterTo: 'opacity-100', | ||
leave: 'ease-in-out duration-500', | ||
leaveFrom: 'opacity-100', | ||
leaveTo: 'opacity-0', | ||
}) | ||
const transitionClass = computed(() => { | ||
return { | ||
enter: 'ease-out duration-300', | ||
enterFrom: 'opacity-0 translate-y-4 lg-translate-y-0 lg-scale-95', | ||
enterTo: 'opacity-100 translate-y-0 lg-scale-100', | ||
leave: 'ease-in duration-200', | ||
leaveFrom: 'opacity-100 translate-y-0 lg-scale-100', | ||
leaveTo: 'opacity-0 translate-y-4 lg-translate-y-0 lg-scale-95', | ||
} | ||
}) | ||
function close() { | ||
isOpen.value = false | ||
emits('close') | ||
} | ||
</script> | ||
|
||
<template> | ||
<TransitionRoot as="template" :appear="appear" :show="isOpen"> | ||
<Dialog class="fixed inset-0 z-2000 flex" @close="!preventClose && close()"> | ||
<TransitionChild as="template" :appear="appear" v-bind="overlayTransitionClass"> | ||
<div class="fixed inset-0 bg-stone-2/75 transition-opacity dark-bg-stone-8/75" :class="{ 'backdrop-blur-sm': overlay }" /> | ||
</TransitionChild> | ||
<div class="fixed inset-0 overflow-y-auto"> | ||
<div class="min-h-full flex items-end justify-center p-4 text-center lg-items-center"> | ||
<TransitionChild as="template" :appear="appear" v-bind="transitionClass"> | ||
<DialogPanel class="relative w-full flex flex-col overflow-hidden rounded-xl bg-white text-left shadow-xl lg-my-8 lg-max-w-lg dark-bg-stone-8"> | ||
<div v-if="!noTitle" flex="~ items-center justify-between" px-4 py-3 border-b="~ solid stone/15" text-6> | ||
<DialogTitle m-0 text-lg text-dark dark-text-white> | ||
{{ title }} | ||
</DialogTitle> | ||
<SvgIcon name="i-carbon:close" cursor-pointer @click="close" /> | ||
</div> | ||
<DialogDescription m-0 overflow-y-auto p-4 text-start> | ||
<slot /> | ||
</DialogDescription> | ||
<div v-if="!!slots.footer" flex="~ items-center justify-end" px-4 py-3 border-t="~ solid stone/15"> | ||
<slot name="footer" /> | ||
</div> | ||
</DialogPanel> | ||
</TransitionChild> | ||
</div> | ||
</div> | ||
</Dialog> | ||
</TransitionRoot> | ||
</template> |