Files

49 lines
1.4 KiB
PHP

@props([
'eventName' => 'showToast',
'position' => 'toast-top toast-center',
])
<div
x-data="{ toast: null }"
x-init="
window.addEventListener('{{ $eventName }}', event => {
toast = {
title: event.detail.title,
message: event.detail.message,
type: event.detail.type,
};
if (event.detail.scrollToTop) {
window.scrollTo({ top: 0, behavior: 'smooth' });
}
const delay = event.detail.timeout ?? 4000;
if (delay > 0) {
setTimeout(() => toast = null, delay);
}
})
"
class="toast {{ $position }} z-50"
>
<template x-if="toast">
<template x-if="toast">
<div
x-transition
class="alert shadow-lg"
:class="{
'alert-error': toast.type === 'error',
'alert-success': toast.type === 'success',
'alert-warning': toast.type === 'warning',
'alert-info': toast.type === 'info',
}"
>
<div>
<span class="font-bold" x-html="toast.title"></span>
<span class="block text-sm" x-html="toast.message"></span>
</div>
</div>
</template>
</template>
</div>