mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
Livewire UI installed
This commit is contained in:
47
resources/views/vendor/wireui/components/modal.blade.php
vendored
Normal file
47
resources/views/vendor/wireui/components/modal.blade.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
@php($name = $name ?? $attributes->wire('model')->value())
|
||||
|
||||
<div class="fixed inset-0 overflow-y-auto {{ $spacing }} {{ $zIndex }}"
|
||||
x-data="wireui_modal({
|
||||
show: @toJs($show),
|
||||
@if ($attributes->wire('model')->value())
|
||||
model: @entangle($attributes->wire('model'))
|
||||
@endif
|
||||
})"
|
||||
x-on:keydown.escape.window="handleEscape"
|
||||
x-on:keydown.tab.prevent="handleTab"
|
||||
x-on:keydown.shift.tab.prevent="handleShiftTab"
|
||||
x-on:open-wireui-modal:{{ Str::kebab($name) }}.window="open"
|
||||
{{ $attributes
|
||||
->whereDoesntStartWith('wire:model')
|
||||
->whereStartsWith(['x-on:', '@', 'wire:']) }}
|
||||
style="display: none"
|
||||
x-cloak
|
||||
x-show="show"
|
||||
wireui-modal>
|
||||
<div @class([
|
||||
'fixed inset-0 bg-secondary-400 dark:bg-secondary-700 bg-opacity-60',
|
||||
'dark:bg-opacity-60 transform transition-opacity',
|
||||
$blur => (bool) $blur
|
||||
])
|
||||
x-show="show"
|
||||
x-on:click="close"
|
||||
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">
|
||||
</div>
|
||||
|
||||
<div class="w-full min-h-full transform flex items-end justify-center mx-auto {{ $align }} {{ $maxWidth }}"
|
||||
x-show="show"
|
||||
x-on:click.self="close"
|
||||
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">
|
||||
{{ $slot }}
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user