95 lines
3.3 KiB
Plaintext
95 lines
3.3 KiB
Plaintext
package popup
|
|
|
|
// ConfirmModal provides a reusable confirmation modal for delete/remove actions
|
|
templ ConfirmModal() {
|
|
<div
|
|
x-data="{
|
|
open: false,
|
|
title: '',
|
|
message: '',
|
|
confirmAction: null,
|
|
show(title, message, action) {
|
|
this.title = title;
|
|
this.message = message;
|
|
this.confirmAction = action;
|
|
this.open = true;
|
|
},
|
|
confirm() {
|
|
if (this.confirmAction) {
|
|
this.confirmAction();
|
|
}
|
|
this.open = false;
|
|
},
|
|
cancel() {
|
|
this.open = false;
|
|
}
|
|
}"
|
|
@confirm-action.window="show($event.detail.title, $event.detail.message, $event.detail.action)"
|
|
x-show="open"
|
|
x-cloak
|
|
class="fixed inset-0 z-50 overflow-y-auto"
|
|
aria-labelledby="modal-title"
|
|
role="dialog"
|
|
aria-modal="true"
|
|
>
|
|
<!-- Background overlay -->
|
|
<div
|
|
x-show="open"
|
|
x-transition:enter="ease-out duration-300"
|
|
x-transition:enter-start="opacity-0"
|
|
x-transition:enter-end="opacity-100"
|
|
x-transition:leave="ease-in duration-200"
|
|
x-transition:leave-start="opacity-100"
|
|
x-transition:leave-end="opacity-0"
|
|
class="fixed inset-0 bg-base/75 transition-opacity"
|
|
@click="cancel()"
|
|
></div>
|
|
<!-- Modal panel -->
|
|
<div class="flex min-h-full items-center justify-center p-4">
|
|
<div
|
|
x-show="open"
|
|
x-transition:enter="ease-out duration-300"
|
|
x-transition:enter-start="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
x-transition:enter-end="opacity-100 translate-y-0 sm:scale-100"
|
|
x-transition:leave="ease-in duration-200"
|
|
x-transition:leave-start="opacity-100 translate-y-0 sm:scale-100"
|
|
x-transition:leave-end="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
class="relative transform overflow-hidden rounded-lg bg-mantle border-2 border-surface1 shadow-xl transition-all sm:w-full sm:max-w-lg"
|
|
@click.stop
|
|
>
|
|
<div class="bg-mantle px-4 pb-4 pt-5 sm:p-6 sm:pb-4">
|
|
<div class="sm:flex sm:items-start">
|
|
<div class="mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full bg-red/10 sm:mx-0 sm:h-10 sm:w-10">
|
|
<svg class="h-6 w-6 text-red" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z"></path>
|
|
</svg>
|
|
</div>
|
|
<div class="mt-3 text-center sm:ml-4 sm:mt-0 sm:text-left">
|
|
<h3 class="text-lg font-semibold leading-6 text-text" id="modal-title" x-text="title"></h3>
|
|
<div class="mt-2">
|
|
<p class="text-sm text-subtext0" x-text="message"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="bg-surface0 px-4 py-3 sm:flex sm:flex-row-reverse sm:px-6 gap-2">
|
|
<button
|
|
type="button"
|
|
@click="confirm()"
|
|
class="inline-flex w-full justify-center rounded-lg bg-red px-4 py-2 text-sm font-semibold text-mantle shadow-sm hover:bg-red/75 hover:cursor-pointer transition sm:w-auto"
|
|
>
|
|
Confirm
|
|
</button>
|
|
<button
|
|
type="button"
|
|
@click="cancel()"
|
|
class="mt-3 inline-flex w-full justify-center rounded-lg bg-surface1 px-4 py-2 text-sm font-semibold text-text shadow-sm hover:bg-surface2 hover:cursor-pointer transition sm:mt-0 sm:w-auto"
|
|
>
|
|
Cancel
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|