mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
@aware(['component'])
|
|
@props(['row', 'rowIndex'])
|
|
|
|
@php
|
|
$attributes = $attributes->merge(['wire:key' => 'row-'.$rowIndex.'-'.$component->id]);
|
|
$theme = $component->getTheme();
|
|
$customAttributes = $this->getTrAttributes($row, $rowIndex);
|
|
@endphp
|
|
|
|
@if ($theme === 'tailwind')
|
|
<tr
|
|
wire:loading.class.delay="opacity-50 dark:bg-gray-900 dark:opacity-60"
|
|
|
|
@if ($component->reorderIsEnabled() && $component->currentlyReorderingIsEnabled())
|
|
wire:sortable.item="{{ $row->getKey() }}"
|
|
@endif
|
|
|
|
{{
|
|
$attributes->merge($customAttributes)
|
|
->class(['bg-white dark:bg-gray-700 dark:text-white' => ($customAttributes['default'] ?? true) && $rowIndex % 2 === 0])
|
|
->class(['bg-gray-50 dark:bg-gray-800 dark:text-white' => ($customAttributes['default'] ?? true) && $rowIndex % 2 !== 0])
|
|
->class(['cursor-pointer' => $component->hasTableRowUrl()])
|
|
->except('default')
|
|
}}
|
|
>
|
|
{{ $slot }}
|
|
</tr>
|
|
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
|
|
<tr
|
|
wire:loading.class.delay=""
|
|
|
|
@if ($component->reorderIsEnabled() && $component->currentlyReorderingIsEnabled())
|
|
wire:sortable.item="{{ $row->getKey() }}"
|
|
@endif
|
|
|
|
{{
|
|
$attributes->merge($customAttributes)
|
|
->class(['' => ($customAttributes['default'] ?? true) && $rowIndex % 2 === 0])
|
|
->class(['' => ($customAttributes['default'] ?? true) && $rowIndex % 2 !== 0])
|
|
->except('default')
|
|
}}
|
|
>
|
|
{{ $slot }}
|
|
</tr>
|
|
@endif
|