Deploy Ladill Care / deploy (push) Failing after 13s
Healthcare management app: patients, appointments, consultations, lab, pharmacy inventory, billing, and reports at care.ladill.com. Co-authored-by: Cursor <cursoragent@cursor.com>
89 lines
4.0 KiB
PHP
89 lines
4.0 KiB
PHP
@props([
|
|
'name',
|
|
'show' => false,
|
|
'maxWidth' => '2xl'
|
|
])
|
|
|
|
@php
|
|
$maxWidth = [
|
|
'sm' => 'sm:max-w-sm',
|
|
'md' => 'sm:max-w-md',
|
|
'lg' => 'sm:max-w-lg',
|
|
'xl' => 'sm:max-w-xl',
|
|
'2xl' => 'sm:max-w-2xl',
|
|
][$maxWidth];
|
|
@endphp
|
|
|
|
<div
|
|
x-data="{
|
|
show: @js($show),
|
|
focusables() {
|
|
let selector = 'a, button, input:not([type=\'hidden\']), textarea, select, details, [tabindex]:not([tabindex=\'-1\'])'
|
|
return [...$el.querySelectorAll(selector)]
|
|
.filter(el => ! el.hasAttribute('disabled'))
|
|
},
|
|
firstFocusable() { return this.focusables()[0] },
|
|
lastFocusable() { return this.focusables().slice(-1)[0] },
|
|
nextFocusable() { return this.focusables()[this.nextFocusableIndex()] || this.firstFocusable() },
|
|
prevFocusable() { return this.focusables()[this.prevFocusableIndex()] || this.lastFocusable() },
|
|
nextFocusableIndex() { return (this.focusables().indexOf(document.activeElement) + 1) % (this.focusables().length + 1) },
|
|
prevFocusableIndex() { return Math.max(0, this.focusables().indexOf(document.activeElement)) -1 },
|
|
}"
|
|
x-init="$watch('show', value => {
|
|
if (value) {
|
|
document.body.classList.add('overflow-y-hidden');
|
|
{{ $attributes->has('focusable') ? 'setTimeout(() => firstFocusable().focus(), 100)' : '' }}
|
|
} else {
|
|
setTimeout(() => { if (!show) document.body.classList.remove('overflow-y-hidden'); }, 200);
|
|
}
|
|
})"
|
|
x-on:open-modal.window="String($event.detail) === @js($name) ? show = true : null"
|
|
data-modal-name="{{ $name }}"
|
|
x-on:close-modal.window="String($event.detail) === @js($name) ? show = false : null"
|
|
x-on:close.stop="show = false"
|
|
x-on:keydown.escape.window="show = false"
|
|
x-on:keydown.tab.prevent="$event.shiftKey || nextFocusable().focus()"
|
|
x-on:keydown.shift.tab.prevent="prevFocusable().focus()"
|
|
x-show="show"
|
|
x-cloak
|
|
x-transition:enter="transition-opacity ease-out duration-200"
|
|
x-transition:enter-start="opacity-0"
|
|
x-transition:enter-end="opacity-100"
|
|
x-transition:leave="transition-opacity ease-in duration-150"
|
|
x-transition:leave-start="opacity-100"
|
|
x-transition:leave-end="opacity-0"
|
|
class="fixed inset-0 z-50 flex items-end sm:items-center sm:justify-center"
|
|
style="background: rgba(0,0,0,0.45); backdrop-filter: blur(3px);"
|
|
>
|
|
{{-- Backdrop click to close --}}
|
|
<div class="absolute inset-0" x-on:click="show = false" data-close-modal="{{ $name }}"></div>
|
|
|
|
{{-- Panel: bottom-sheet on mobile, centered card on sm+ --}}
|
|
<div
|
|
x-show="show"
|
|
class="relative z-10 w-full max-h-[90vh] overflow-y-auto rounded-t-3xl bg-white shadow-2xl sm:mb-6 sm:max-h-[85vh] sm:rounded-2xl {{ $maxWidth }} sm:border sm:border-gray-200"
|
|
x-transition:enter="ease-out duration-300"
|
|
x-transition:enter-start="translate-y-full sm:translate-y-0 sm:opacity-0 sm:scale-95"
|
|
x-transition:enter-end="translate-y-0 sm:opacity-100 sm:scale-100"
|
|
x-transition:leave="ease-in duration-200"
|
|
x-transition:leave-start="translate-y-0 sm:opacity-100 sm:scale-100"
|
|
x-transition:leave-end="translate-y-full sm:translate-y-0 sm:opacity-0 sm:scale-95"
|
|
x-on:click.stop
|
|
>
|
|
{{-- Drag handle (mobile only) --}}
|
|
<div class="flex justify-center pb-1 pt-3 sm:hidden">
|
|
<div class="h-1 w-10 rounded-full bg-slate-200"></div>
|
|
</div>
|
|
|
|
{{-- Close button (desktop only) --}}
|
|
<button @click="show = false" data-close-modal="{{ $name }}" type="button"
|
|
class="absolute right-3 top-3 z-10 hidden h-8 w-8 items-center justify-center rounded-full text-gray-400 transition hover:bg-gray-100 hover:text-gray-600 sm:flex">
|
|
<svg class="h-5 w-5" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12"/>
|
|
</svg>
|
|
</button>
|
|
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|