2023-12-09 14:47:03 +00:00
|
|
|
<template>
|
2024-01-03 10:19:36 +00:00
|
|
|
<div class="fixed top-0 bottom-24 right-0 flex gap-y-4 items-start justify-end z-50 pointer-events-auto">
|
2023-12-31 11:39:01 +00:00
|
|
|
<NuxtNotifications>
|
|
|
|
<template #body="props">
|
2024-01-03 10:19:36 +00:00
|
|
|
<div class="p-2">
|
2024-01-02 12:30:49 +00:00
|
|
|
<div
|
2024-01-02 13:40:47 +00:00
|
|
|
class="flex max-w-sm w-full mx-auto bg-white shadow-md rounded-lg overflow-hidden relative"
|
2024-01-02 12:30:49 +00:00
|
|
|
>
|
2024-01-03 10:19:36 +00:00
|
|
|
<div class="flex justify-center items-center w-12" :class="notifTypes[props.item.type].background"
|
|
|
|
v-html="notifTypes[props.item.type].svg"/>
|
2023-12-09 14:47:03 +00:00
|
|
|
|
2024-01-02 12:30:49 +00:00
|
|
|
<div class="-mx-3 py-2 px-4">
|
|
|
|
<div class="mx-3">
|
2024-01-02 13:40:47 +00:00
|
|
|
<span :class="notifTypes[props.item.type].text" class="font-semibold pr-6">{{ props.item.title }}</span>
|
2024-01-02 12:30:49 +00:00
|
|
|
<p class="text-gray-600 text-sm">{{ props.item.text }}</p>
|
2024-01-02 13:40:47 +00:00
|
|
|
<div class="w-full flex gap-2 mt-1" v-if="props.item.type == 'confirm'">
|
|
|
|
<v-button color="blue" size="small" @click.prevent="props.item.data.success();props.close()">Yes
|
|
|
|
</v-button>
|
|
|
|
<v-button color="white" size="small"
|
|
|
|
@click.prevent="props.item.data.failure();props.close()">No
|
|
|
|
</v-button>
|
|
|
|
</div>
|
2024-01-02 12:30:49 +00:00
|
|
|
</div>
|
2023-12-09 14:47:03 +00:00
|
|
|
</div>
|
|
|
|
|
2024-01-02 13:40:47 +00:00
|
|
|
<button @click="props.close()" class="absolute top-0 right-0 px-2 py-2 cursor-pointer">
|
2024-01-02 12:30:49 +00:00
|
|
|
<svg
|
2024-01-02 13:40:47 +00:00
|
|
|
class="fill-current h-6 w-6 text-gray-300 hover:text-gray-500"
|
|
|
|
role="button"
|
2024-01-02 12:30:49 +00:00
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
2024-01-02 13:40:47 +00:00
|
|
|
viewBox="0 0 20 20"
|
2024-01-02 12:30:49 +00:00
|
|
|
>
|
2024-01-02 13:40:47 +00:00
|
|
|
<title>Close</title>
|
2024-01-02 12:30:49 +00:00
|
|
|
<path
|
2024-01-02 13:40:47 +00:00
|
|
|
d="M14.348 14.849a1.2 1.2 0 0 1-1.697 0L10 11.819l-2.651 3.029a1.2 1.2 0 1 1-1.697-1.697l2.758-3.15-2.759-3.152a1.2 1.2 0 1 1 1.697-1.697L10 8.183l2.651-3.031a1.2 1.2 0 1 1 1.697 1.697l-2.758 3.152 2.758 3.15a1.2 1.2 0 0 1 0 1.698z"
|
2024-01-02 12:30:49 +00:00
|
|
|
/>
|
|
|
|
</svg>
|
2024-01-02 13:40:47 +00:00
|
|
|
</button>
|
2023-12-09 14:47:03 +00:00
|
|
|
</div>
|
2024-01-03 10:19:36 +00:00
|
|
|
</div>
|
2023-12-31 11:39:01 +00:00
|
|
|
</template>
|
|
|
|
</NuxtNotifications>
|
2024-01-03 10:19:36 +00:00
|
|
|
</div>
|
2023-12-09 14:47:03 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'Notifications',
|
|
|
|
|
|
|
|
data() {
|
2024-01-02 13:40:47 +00:00
|
|
|
return {
|
|
|
|
notifTypes: {
|
|
|
|
success: {
|
|
|
|
background: 'bg-green-500',
|
|
|
|
text: 'text-green-500',
|
|
|
|
svg: '<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-current text-white" viewBox="0 0 20 20" fill="currentColor">' +
|
|
|
|
' <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />' +
|
|
|
|
' </svg>'
|
|
|
|
},
|
|
|
|
warning: {
|
|
|
|
background: 'bg-yellow-500',
|
|
|
|
text: 'text-yellow-500',
|
|
|
|
svg: '<svg' +
|
|
|
|
' class="h-6 w-6 fill-current text-white"' +
|
|
|
|
' 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>',
|
|
|
|
},
|
|
|
|
error: {
|
|
|
|
background: 'bg-red-500',
|
|
|
|
text: 'text-red-500',
|
|
|
|
svg: '<svg' +
|
|
|
|
' class="h-6 w-6 fill-current text-white"' +
|
|
|
|
' 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>'
|
|
|
|
},
|
|
|
|
confirm: {
|
|
|
|
background: 'bg-blue-500',
|
|
|
|
text: 'text-blue-500',
|
|
|
|
svg: '<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-current text-white" viewBox="0 0 20 20" fill="currentColor">' +
|
|
|
|
' <path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd" />' +
|
|
|
|
' </svg>'
|
|
|
|
},
|
|
|
|
info: {
|
|
|
|
background: 'bg-blue-500',
|
|
|
|
text: 'text-blue-500',
|
|
|
|
svg: '<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-current text-white" viewBox="0 0 20 20" fill="currentColor">' +
|
|
|
|
' <path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd" />' +
|
|
|
|
' </svg>'
|
|
|
|
}
|
2023-12-09 14:47:03 +00:00
|
|
|
|
2024-01-02 13:40:47 +00:00
|
|
|
}
|
|
|
|
}
|
2023-12-09 14:47:03 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|