mirror of
https://github.com/Drop-OSS/drop-base.git
synced 2025-11-10 04:22:15 +10:00
fix: fade in fade out + styling
This commit is contained in:
@ -1,36 +1,10 @@
|
||||
<template>
|
||||
<TransitionRoot
|
||||
as="template"
|
||||
:show="true"
|
||||
:style="{ 'z-index': props.zHeight }"
|
||||
>
|
||||
<Dialog class="relative z-50" @close="emit('event', 'cancel')">
|
||||
<TransitionChild
|
||||
as="template"
|
||||
enter="ease-out duration-300"
|
||||
enter-from="opacity-0"
|
||||
enter-to="opacity-100"
|
||||
leave="ease-in duration-200"
|
||||
leave-from="opacity-100"
|
||||
leave-to="opacity-0"
|
||||
>
|
||||
<div
|
||||
class="fixed inset-0 bg-zinc-950 bg-opacity-75 transition-opacity"
|
||||
/>
|
||||
</TransitionChild>
|
||||
<div class="relative z-50" @close="emit('event', 'cancel')">
|
||||
<div class="fixed inset-0 bg-zinc-950/75" />
|
||||
|
||||
<div class="fixed inset-0 z-10 w-screen overflow-y-auto">
|
||||
<div
|
||||
class="flex min-h-full items-start justify-center p-4 text-center sm:items-center sm:p-0"
|
||||
>
|
||||
<TransitionChild
|
||||
as="template"
|
||||
enter="ease-out duration-300"
|
||||
enter-from="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||||
enter-to="opacity-100 translate-y-0 sm:scale-100"
|
||||
leave="ease-in duration-200"
|
||||
leave-from="opacity-100 translate-y-0 sm:scale-100"
|
||||
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||||
>
|
||||
<div
|
||||
class="relative transform rounded-lg bg-zinc-900 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg"
|
||||
@ -38,11 +12,9 @@
|
||||
<div class="px-4 pb-4 pt-5 space-y-4 sm:p-6 sm:pb-4">
|
||||
<div class="sm:flex sm:items-start">
|
||||
<div class="mt-3 text-center sm:mt-0 sm:text-left">
|
||||
<DialogTitle
|
||||
as="h3"
|
||||
class="text-base font-semibold text-zinc-100"
|
||||
>{{ props.data.title }}
|
||||
</DialogTitle>
|
||||
<h3 class="text-base font-semibold text-zinc-100">
|
||||
{{ props.data.title }}
|
||||
</h3>
|
||||
<div class="mt-2">
|
||||
<p class="text-sm text-zinc-400">
|
||||
{{ props.data.description }}
|
||||
@ -72,11 +44,9 @@
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</TransitionChild>
|
||||
</div>
|
||||
</div>
|
||||
</Dialog>
|
||||
</TransitionRoot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
@ -1,15 +1,39 @@
|
||||
<template>
|
||||
<TransitionGroup name="modal">
|
||||
<component
|
||||
v-for="(modal, modalIdx) in stack"
|
||||
:key="modal.data"
|
||||
:is="modal.component"
|
||||
:z-height="(modalIdx + 1) * 50"
|
||||
:loading="modal.loading"
|
||||
:data="modal.data"
|
||||
@event="(event: string, ...args: any[]) => handleCallback(modalIdx, event, args)"
|
||||
@event="
|
||||
(event: string, ...args: any[]) => handleCallback(modalIdx, event, args)
|
||||
"
|
||||
/>
|
||||
</TransitionGroup>
|
||||
<div id="modalstack" />
|
||||
</template>
|
||||
|
||||
<style>
|
||||
.modal-enter-active,
|
||||
.modal-leave-active {
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
.modal-enter-from {
|
||||
opacity: 0;
|
||||
}
|
||||
.modal-enter-to {
|
||||
opacity: 100;
|
||||
}
|
||||
.modal-leave-from {
|
||||
opacity: 100;
|
||||
}
|
||||
.modal-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script setup lang="ts">
|
||||
const stack = useModalStack();
|
||||
|
||||
|
||||
@ -1,36 +1,12 @@
|
||||
<template>
|
||||
<TransitionRoot
|
||||
as="template"
|
||||
:show="true"
|
||||
:style="{ 'z-index': props.zHeight }"
|
||||
>
|
||||
<Dialog class="relative z-50" @close="emit('event', 'close')">
|
||||
<TransitionChild
|
||||
as="template"
|
||||
enter="ease-out duration-300"
|
||||
enter-from="opacity-0"
|
||||
enter-to="opacity-100"
|
||||
leave="ease-in duration-200"
|
||||
leave-from="opacity-100"
|
||||
leave-to="opacity-0"
|
||||
>
|
||||
<div class="relative z-50" @close="emit('event', 'close')">
|
||||
<div
|
||||
class="fixed inset-0 bg-zinc-950 bg-opacity-75 transition-opacity"
|
||||
class="fixed inset-0 bg-zinc-950/75"
|
||||
/>
|
||||
</TransitionChild>
|
||||
|
||||
<div class="fixed inset-0 z-10 w-screen overflow-y-auto">
|
||||
<div
|
||||
class="flex min-h-full items-start justify-center p-4 text-center sm:items-center sm:p-0"
|
||||
>
|
||||
<TransitionChild
|
||||
as="template"
|
||||
enter="ease-out duration-300"
|
||||
enter-from="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||||
enter-to="opacity-100 translate-y-0 sm:scale-100"
|
||||
leave="ease-in duration-200"
|
||||
leave-from="opacity-100 translate-y-0 sm:scale-100"
|
||||
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||||
>
|
||||
<div
|
||||
class="relative transform rounded-lg bg-zinc-900 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg"
|
||||
@ -38,11 +14,10 @@
|
||||
<div class="px-4 pb-4 pt-5 space-y-4 sm:p-6 sm:pb-4">
|
||||
<div class="sm:flex sm:items-start">
|
||||
<div class="mt-3 text-center sm:mt-0 sm:text-left">
|
||||
<DialogTitle
|
||||
as="h3"
|
||||
<h3
|
||||
class="text-base font-semibold text-zinc-100"
|
||||
>{{ props.data.title }}
|
||||
</DialogTitle>
|
||||
</h3>
|
||||
<div class="mt-2">
|
||||
<p class="text-sm text-zinc-400">
|
||||
{{ props.data.description }}
|
||||
@ -64,11 +39,9 @@
|
||||
</LoadingButton>
|
||||
</div>
|
||||
</div>
|
||||
</TransitionChild>
|
||||
</div>
|
||||
</div>
|
||||
</Dialog>
|
||||
</TransitionRoot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
@ -1,58 +1,33 @@
|
||||
<template>
|
||||
<TransitionRoot
|
||||
as="template"
|
||||
:show="true"
|
||||
:style="{ 'z-index': props.zHeight }"
|
||||
>
|
||||
<Dialog class="relative z-50" @close="emit('event', 'cancel')">
|
||||
<TransitionChild
|
||||
as="template"
|
||||
enter="ease-out duration-300"
|
||||
enter-from="opacity-0"
|
||||
enter-to="opacity-100"
|
||||
leave="ease-in duration-200"
|
||||
leave-from="opacity-100"
|
||||
leave-to="opacity-0"
|
||||
>
|
||||
<div
|
||||
class="fixed inset-0 bg-zinc-950 bg-opacity-75 transition-opacity"
|
||||
/>
|
||||
</TransitionChild>
|
||||
<div class="relative z-50" @close="emit('event', 'cancel')">
|
||||
<div class="fixed inset-0 bg-zinc-950/75" />
|
||||
|
||||
<div class="fixed inset-0 z-10 w-screen overflow-y-auto">
|
||||
<div
|
||||
class="flex min-h-full items-start justify-center p-4 text-center sm:items-center sm:p-0"
|
||||
>
|
||||
<TransitionChild
|
||||
as="template"
|
||||
enter="ease-out duration-300"
|
||||
enter-from="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||||
enter-to="opacity-100 translate-y-0 sm:scale-100"
|
||||
leave="ease-in duration-200"
|
||||
leave-from="opacity-100 translate-y-0 sm:scale-100"
|
||||
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||||
>
|
||||
<div
|
||||
class="relative transform rounded-lg bg-zinc-900 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg"
|
||||
>
|
||||
<div class="px-4 pb-4 pt-5 space-y-4 sm:p-6 sm:pb-4">
|
||||
<div class="sm:flex sm:items-start">
|
||||
<div class="mt-3 text-center sm:mt-0 sm:text-left">
|
||||
<DialogTitle
|
||||
as="h3"
|
||||
class="text-base font-semibold text-zinc-100"
|
||||
>{{ props.data.title }}
|
||||
</DialogTitle>
|
||||
<div class="mt-2">
|
||||
<div class="mt-3 text-center sm:mt-0 sm:text-left w-full">
|
||||
<h3 class="text-base font-semibold text-zinc-100">
|
||||
{{ props.data.title }}
|
||||
</h3>
|
||||
<div class="mt-1">
|
||||
<p class="text-sm text-zinc-400">
|
||||
{{ props.data.description }}
|
||||
</p>
|
||||
</div>
|
||||
<form @submit.prevent="() => emit('event', 'submit', v)">
|
||||
<form
|
||||
class="mt-4 w-full"
|
||||
@submit.prevent="() => emit('event', 'submit', v)"
|
||||
>
|
||||
<input
|
||||
v-model="v"
|
||||
type="text"
|
||||
:placeholder="$t('library.collection.namePlaceholder')"
|
||||
:placeholder="props.data.placeholder"
|
||||
class="block w-full rounded-md border-0 bg-zinc-800 py-1.5 text-white shadow-sm ring-1 ring-inset ring-zinc-700 placeholder:text-zinc-400 focus:ring-2 focus:ring-inset focus:ring-blue-600 sm:text-sm sm:leading-6"
|
||||
/>
|
||||
<button class="hidden" type="submit" />
|
||||
@ -69,7 +44,7 @@
|
||||
type="submit"
|
||||
class="w-full sm:w-fit"
|
||||
>
|
||||
{{ props.data.buttonText ?? "Confirm" }}
|
||||
{{ props.data.buttonText ?? "Submit" }}
|
||||
</LoadingButton>
|
||||
<button
|
||||
type="button"
|
||||
@ -81,11 +56,9 @@
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</TransitionChild>
|
||||
</div>
|
||||
</div>
|
||||
</Dialog>
|
||||
</TransitionRoot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
Reference in New Issue
Block a user