2023-03-24 10:41:52 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
|
|
import { Notification, NotificationGroup } from '@/notiwind';
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<NotificationGroup position="bottom">
|
|
|
|
<div class="z-50 fixed inset-x-0 top-0 flex items-start justify-end p-6 px-4 py-6 pointer-events-none">
|
|
|
|
<div class="w-full max-w-sm">
|
|
|
|
<Notification
|
|
|
|
v-slot="{ notifications }"
|
|
|
|
enter="transform ease-out duration-300 transition"
|
|
|
|
enter-from="translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-4"
|
|
|
|
enter-to="translate-y-0 opacity-100 sm:translate-x-0"
|
|
|
|
leave="transition ease-in duration-500"
|
|
|
|
leave-from="opacity-100"
|
|
|
|
leave-to="opacity-0"
|
|
|
|
move="transition duration-500"
|
|
|
|
move-delay="delay-300"
|
|
|
|
>
|
|
|
|
<div v-for="notification in notifications" :key="notification.id">
|
|
|
|
<div
|
|
|
|
v-if="notification.type === 'info'"
|
|
|
|
class="flex w-full max-w-sm mx-auto mt-4 overflow-hidden bg-white rounded-lg shadow-md"
|
|
|
|
>
|
|
|
|
<div class="flex items-center justify-center w-12 bg-blue-500">
|
|
|
|
<svg class="w-6 h-6 text-white fill-current" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path
|
|
|
|
d="M20 3.33331C10.8 3.33331 3.33337 10.8 3.33337 20C3.33337 29.2 10.8 36.6666 20 36.6666C29.2 36.6666 36.6667 29.2 36.6667 20C36.6667 10.8 29.2 3.33331 20 3.33331ZM21.6667 28.3333H18.3334V25H21.6667V28.3333ZM21.6667 21.6666H18.3334V11.6666H21.6667V21.6666Z"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="px-4 py-2 -mx-3">
|
|
|
|
<div class="mx-3">
|
|
|
|
<span class="font-semibold text-blue-500">{{ notification.title }}</span>
|
2023-03-31 12:54:15 +00:00
|
|
|
<p class="text-sm text-gray-600">{{ notification.text }}</p>
|
2023-03-24 10:41:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div
|
|
|
|
class="flex w-full max-w-sm mx-auto mt-4 overflow-hidden bg-white rounded-lg shadow-md"
|
|
|
|
v-if="notification.type === 'warning'"
|
|
|
|
>
|
|
|
|
<div class="flex items-center justify-center w-12 bg-yellow-500">
|
|
|
|
<svg class="w-6 h-6 text-white fill-current" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path
|
|
|
|
d="M20 3.33331C10.8 3.33331 3.33337 10.8 3.33337 20C3.33337 29.2 10.8 36.6666 20 36.6666C29.2 36.6666 36.6667 29.2 36.6667 20C36.6667 10.8 29.2 3.33331 20 3.33331ZM21.6667 28.3333H18.3334V25H21.6667V28.3333ZM21.6667 21.6666H18.3334V11.6666H21.6667V21.6666Z"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="px-4 py-2 -mx-3">
|
|
|
|
<div class="mx-3">
|
|
|
|
<span class="font-semibold text-yellow-500">{{ notification.title }}</span>
|
|
|
|
<p class="text-sm text-gray-600">{{ notification.text }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Notification>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</NotificationGroup>
|
|
|
|
</template>
|