2024-01-31 13:18:59 +00:00
|
|
|
@props([
|
|
|
|
'title' => 'Are you sure?',
|
|
|
|
'buttonTitle' => 'Open Modal',
|
|
|
|
'isErrorButton' => false,
|
|
|
|
'disabled' => false,
|
|
|
|
'action' => 'delete',
|
2024-02-04 13:07:08 +00:00
|
|
|
'content' => null,
|
2024-06-24 12:47:55 +00:00
|
|
|
'closeOutside' => true,
|
2024-01-31 13:18:59 +00:00
|
|
|
])
|
2024-06-24 12:47:55 +00:00
|
|
|
<div x-data="{ modalOpen: false }" :class="{ 'z-40': modalOpen }" @keydown.window.escape="modalOpen=false"
|
|
|
|
class="relative w-auto h-auto">
|
2024-02-04 13:07:08 +00:00
|
|
|
@if ($content)
|
|
|
|
<div @click="modalOpen=true">
|
|
|
|
{{ $content }}
|
|
|
|
</div>
|
2024-01-31 13:18:59 +00:00
|
|
|
@else
|
2024-02-04 13:07:08 +00:00
|
|
|
@if ($disabled)
|
|
|
|
<x-forms.button isError disabled>{{ $buttonTitle }}</x-forms.button>
|
|
|
|
@elseif ($isErrorButton)
|
|
|
|
<x-forms.button isError @click="modalOpen=true">{{ $buttonTitle }}</x-forms.button>
|
|
|
|
@else
|
|
|
|
<x-forms.button @click="modalOpen=true">{{ $buttonTitle }}</x-forms.button>
|
|
|
|
@endif
|
2024-01-31 13:18:59 +00:00
|
|
|
@endif
|
|
|
|
<template x-teleport="body">
|
2024-06-24 12:47:55 +00:00
|
|
|
<div x-show="modalOpen"
|
|
|
|
class="fixed top-0 left-0 lg:px-0 px-4 z-[99] flex items-center justify-center w-screen h-screen" x-cloak>
|
2024-05-29 08:43:49 +00:00
|
|
|
<div x-show="modalOpen" x-transition:enter="ease-out duration-100" x-transition:enter-start="opacity-0"
|
2024-01-31 15:14:12 +00:00
|
|
|
x-transition:enter-end="opacity-100" x-transition:leave="ease-in duration-100"
|
2024-03-20 11:54:06 +00:00
|
|
|
x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0"
|
2024-01-31 15:14:12 +00:00
|
|
|
class="absolute inset-0 w-full h-full bg-black bg-opacity-20 backdrop-blur-sm"></div>
|
2024-06-24 12:47:55 +00:00
|
|
|
<div x-show="modalOpen" x-trap.inert.noscroll="modalOpen"
|
|
|
|
@if ($closeOutside) @click.outside="modalOpen=false" @endif
|
|
|
|
x-transition:enter="ease-out duration-100"
|
2024-01-31 13:18:59 +00:00
|
|
|
x-transition:enter-start="opacity-0 -translate-y-2 sm:scale-95"
|
|
|
|
x-transition:enter-end="opacity-100 translate-y-0 sm:scale-100"
|
2024-01-31 15:14:12 +00:00
|
|
|
x-transition:leave="ease-in duration-100"
|
2024-01-31 13:18:59 +00:00
|
|
|
x-transition:leave-start="opacity-100 translate-y-0 sm:scale-100"
|
|
|
|
x-transition:leave-end="opacity-0 -translate-y-2 sm:scale-95"
|
2024-03-25 18:07:59 +00:00
|
|
|
class="relative w-full py-6 border rounded drop-shadow min-w-full lg:min-w-[36rem] max-w-fit bg-white border-neutral-200 dark:bg-base px-6 dark:border-coolgray-300">
|
2024-01-31 13:18:59 +00:00
|
|
|
<div class="flex items-center justify-between pb-3">
|
2024-01-31 15:14:12 +00:00
|
|
|
<h3 class="text-2xl font-bold">{{ $title }}</h3>
|
2024-03-20 11:54:06 +00:00
|
|
|
<button @click="modalOpen=false"
|
2024-03-25 18:07:59 +00:00
|
|
|
class="absolute top-0 right-0 flex items-center justify-center w-8 h-8 mt-5 mr-5 rounded-full dark:text-white hover:bg-neutral-100 dark:hover:bg-coolgray-300">
|
2024-01-31 13:18:59 +00:00
|
|
|
<svg class="w-5 h-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
|
|
|
|
stroke-width="1.5" stroke="currentColor">
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
|
|
|
|
</svg>
|
2024-03-20 11:54:06 +00:00
|
|
|
</button>
|
2024-01-31 13:18:59 +00:00
|
|
|
</div>
|
2024-03-25 18:07:59 +00:00
|
|
|
<div class="relative flex items-center justify-center w-auto">
|
2024-01-31 13:18:59 +00:00
|
|
|
{{ $slot }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|