| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- @php
- use Filament\Support\Enums\IconPosition;
- use Filament\Support\Enums\IconSize;
- use Filament\Support\Enums\Size;
- use Filament\Support\View\Components\BadgeComponent;
- use Illuminate\View\ComponentAttributeBag;
- @endphp
- @props([
- 'color' => 'primary',
- 'deleteButton' => null,
- 'disabled' => false,
- 'form' => null,
- 'formId' => null,
- 'href' => null,
- 'icon' => null,
- 'iconAlias' => null,
- 'iconPosition' => IconPosition::Before,
- 'iconSize' => null,
- 'keyBindings' => null,
- 'loadingIndicator' => true,
- 'size' => Size::Medium,
- 'spaMode' => null,
- 'tag' => 'span',
- 'target' => null,
- 'tooltip' => null,
- 'type' => 'button',
- ])
- @php
- if (! $iconPosition instanceof IconPosition) {
- $iconPosition = filled($iconPosition) ? (IconPosition::tryFrom($iconPosition) ?? $iconPosition) : null;
- }
- if (! $size instanceof Size) {
- $size = filled($size) ? (Size::tryFrom($size) ?? $size) : null;
- }
- if (filled($iconSize) && (! $iconSize instanceof IconSize)) {
- $iconSize = IconSize::tryFrom($iconSize) ?? $iconSize;
- }
- $isDeletable = count($deleteButton?->attributes->getAttributes() ?? []) > 0;
- $wireTarget = $loadingIndicator ? $attributes->whereStartsWith(['wire:target', 'wire:click'])->filter(fn ($value): bool => filled($value))->first() : null;
- $hasLoadingIndicator = filled($wireTarget) || ($type === 'submit' && filled($form));
- if ($hasLoadingIndicator) {
- $loadingIndicatorTarget = html_entity_decode($wireTarget ?: $form, ENT_QUOTES);
- }
- $hasTooltip = filled($tooltip);
- @endphp
- <{{ $tag }}
- @if (($tag === 'a') && (! ($disabled && $hasTooltip)))
- {{ \Filament\Support\generate_href_html($href, $target === '_blank', $spaMode) }}
- @endif
- @if ($keyBindings)
- x-bind:id="$id('key-bindings')"
- x-mousetrap.global.{{ collect($keyBindings)->map(fn (string $keyBinding): string => str_replace('+', '-', $keyBinding))->implode('.') }}="document.getElementById($el.id)?.click()"
- @endif
- @if ($hasTooltip)
- x-tooltip="{
- content: @js($tooltip),
- theme: $store.theme,
- allowHTML: @js($tooltip instanceof \Illuminate\Contracts\Support\Htmlable),
- }"
- @endif
- {{
- $attributes
- ->merge([
- 'aria-disabled' => $disabled ? 'true' : null,
- 'disabled' => $disabled && blank($tooltip),
- 'form' => $tag === 'button' ? $formId : null,
- 'type' => $tag === 'button' ? $type : null,
- 'wire:loading.attr' => $tag === 'button' ? 'disabled' : null,
- 'wire:target' => ($hasLoadingIndicator && $loadingIndicatorTarget) ? $loadingIndicatorTarget : null,
- ], escape: false)
- ->when(
- $disabled && $hasTooltip,
- fn (ComponentAttributeBag $attributes) => $attributes->filter(
- fn (mixed $value, string $key): bool => ! str($key)->startsWith(['href', 'x-on:', 'wire:click']),
- ),
- )
- ->class([
- 'fi-badge',
- 'fi-disabled' => $disabled,
- ($size instanceof Size) ? "fi-size-{$size->value}" : (is_string($size) ? $size : ''),
- ])
- ->color(BadgeComponent::class, $color)
- }}
- >
- @if ($iconPosition === IconPosition::Before)
- @if ($icon)
- {{
- \Filament\Support\generate_icon_html($icon, $iconAlias, (new \Illuminate\View\ComponentAttributeBag([
- 'wire:loading.remove.delay.' . config('filament.livewire_loading_delay', 'default') => $hasLoadingIndicator,
- 'wire:target' => $hasLoadingIndicator ? $loadingIndicatorTarget : false,
- ])), size: $iconSize ?? \Filament\Support\Enums\IconSize::Small)
- }}
- @endif
- @if ($hasLoadingIndicator)
- {{
- \Filament\Support\generate_loading_indicator_html((new \Illuminate\View\ComponentAttributeBag([
- 'wire:loading.delay.' . config('filament.livewire_loading_delay', 'default') => '',
- 'wire:target' => $loadingIndicatorTarget,
- ])), size: $iconSize ?? \Filament\Support\Enums\IconSize::Small)
- }}
- @endif
- @endif
- <span class="fi-badge-label-ctn">
- <span class="fi-badge-label">
- {{ $slot }}
- </span>
- </span>
- @if ($isDeletable)
- @php
- $deleteButtonWireTarget = $deleteButton->attributes->whereStartsWith(['wire:target', 'wire:click'])->filter(fn ($value): bool => filled($value))->first();
- $deleteButtonHasLoadingIndicator = filled($deleteButtonWireTarget);
- if ($deleteButtonHasLoadingIndicator) {
- $deleteButtonLoadingIndicatorTarget = html_entity_decode($deleteButtonWireTarget, ENT_QUOTES);
- }
- @endphp
- <button
- type="button"
- {{
- $deleteButton->attributes
- ->except(['label'])
- ->class([
- 'fi-badge-delete-btn',
- ])
- }}
- >
- {{
- \Filament\Support\generate_icon_html(\Filament\Support\Icons\Heroicon::XMark, alias: \Filament\Support\View\SupportIconAlias::BADGE_DELETE_BUTTON, attributes: (new \Illuminate\View\ComponentAttributeBag([
- 'wire:loading.remove.delay.' . config('filament.livewire_loading_delay', 'default') => $deleteButtonHasLoadingIndicator,
- 'wire:target' => $deleteButtonHasLoadingIndicator ? $deleteButtonLoadingIndicatorTarget : false,
- ])), size: \Filament\Support\Enums\IconSize::ExtraSmall)
- }}
- @if ($deleteButtonHasLoadingIndicator)
- {{
- \Filament\Support\generate_loading_indicator_html((new \Illuminate\View\ComponentAttributeBag([
- 'wire:loading.delay.' . config('filament.livewire_loading_delay', 'default') => '',
- 'wire:target' => $deleteButtonLoadingIndicatorTarget,
- ])), size: \Filament\Support\Enums\IconSize::ExtraSmall)
- }}
- @endif
- @if (filled($label = $deleteButton->attributes->get('label')))
- <span class="fi-sr-only">
- {{ $label }}
- </span>
- @endif
- </button>
- @elseif ($iconPosition === IconPosition::After)
- @if ($icon)
- {{
- \Filament\Support\generate_icon_html($icon, $iconAlias, (new \Illuminate\View\ComponentAttributeBag([
- 'wire:loading.remove.delay.' . config('filament.livewire_loading_delay', 'default') => $hasLoadingIndicator,
- 'wire:target' => $hasLoadingIndicator ? $loadingIndicatorTarget : false,
- ])), size: $iconSize ?? \Filament\Support\Enums\IconSize::Small)
- }}
- @endif
- @if ($hasLoadingIndicator)
- {{
- \Filament\Support\generate_loading_indicator_html((new \Illuminate\View\ComponentAttributeBag([
- 'wire:loading.delay.' . config('filament.livewire_loading_delay', 'default') => '',
- 'wire:target' => $loadingIndicatorTarget,
- ])), size: $iconSize ?? \Filament\Support\Enums\IconSize::Small)
- }}
- @endif
- @endif
- </{{ $tag }}>
|