Files
einundzwanzig-app/resources/views/livewire/services/index.blade.php

184 lines
8.4 KiB
PHP

<?php
use App\Attributes\SeoDataAttribute;
use App\Models\SelfHostedService;
use App\Traits\SeoTrait;
use Livewire\Volt\Component;
use Livewire\WithPagination;
new
#[SeoDataAttribute(key: 'services_index')]
class extends Component {
use WithPagination;
use SeoTrait;
public string $country = 'de';
public string $search = '';
public ?string $typeFilter = null;
public function mount(): void
{
$this->country = request()->route('country', config('app.domain_country'));
}
public function filterByType(?string $type): void
{
$this->typeFilter = $this->typeFilter === $type ? null : $type;
$this->resetPage();
}
public function with(): array
{
return [
'services' => SelfHostedService::query()
->with('createdBy')
->when($this->search, fn($q) => $q->where('name', 'ilike', '%'.$this->search.'%'))
->when($this->typeFilter, fn($q) => $q->where('type', $this->typeFilter))
->orderBy('name')
->paginate(15),
'types' => \App\Enums\SelfHostedServiceType::cases(),
];
}
}; ?>
<div>
<div class="flex items-center justify-between flex-col md:flex-row mb-6">
<flux:heading size="xl">{{ __('Self Hosted Services') }}</flux:heading>
<div class="flex flex-col md:flex-row items-center gap-4">
<flux:input wire:model.live="search" :placeholder="__('Suche nach Services...')" clearable/>
@auth
<flux:button class="cursor-pointer" :href="route_with_country('services.create')" icon="plus"
variant="primary">
{{ __('Service erstellen') }}
</flux:button>
@endauth
</div>
</div>
<!-- Type Filter Cloud -->
<div class="flex flex-wrap gap-2 mb-6">
@foreach($types as $type)
<flux:badge
wire:click="filterByType('{{ $type->value }}')"
size="lg"
color="{{ $type->color() }}"
class="cursor-pointer transition-opacity {{ $typeFilter === $type->value ? 'ring-2 ring-offset-2' : 'opacity-70 hover:opacity-100' }}"
>
{{ $type->label() }}
</flux:badge>
@endforeach
@if($typeFilter)
<flux:badge
wire:click="filterByType(null)"
size="lg"
color="zinc"
class="cursor-pointer"
>
<flux:icon.x-mark variant="mini" class="inline"/>
{{ __('Filter zurücksetzen') }}
</flux:badge>
@endif
</div>
<flux:table :paginate="$services" class="mt-6">
<flux:table.columns>
<flux:table.column>{{ __('Name') }}</flux:table.column>
<flux:table.column>{{ __('Typ') }}</flux:table.column>
<flux:table.column>{{ __('Links') }}</flux:table.column>
<flux:table.column>{{ __('Erstellt von') }}</flux:table.column>
<flux:table.column>{{ __('Datum') }}</flux:table.column>
</flux:table.columns>
<flux:table.rows>
@foreach ($services as $service)
<flux:table.row :key="$service->id">
<flux:table.cell variant="strong">
<a href="{{ route('services.landingpage', ['service' => $service, 'country' => $country]) }}">{{ $service->name }}</a>
</flux:table.cell>
<flux:table.cell>
@if($service->type)
<flux:badge size="sm" color="{{ $service->type->color() }}">
{{ $service->type->label() }}
</flux:badge>
@endif
</flux:table.cell>
<flux:table.cell>
<div class="flex flex-col gap-1">
@if($service->url_clearnet)
<flux:tooltip content="{{ $service->url_clearnet }}">
<flux:link :href="$service->url_clearnet" external
class="text-blue-600 dark:text-blue-400">
<flux:icon.globe-alt variant="mini" class="inline"/>
Clearnet
</flux:link>
</flux:tooltip>
@endif
@if($service->url_onion)
<flux:tooltip content="{{ $service->url_onion }}">
<flux:link :href="$service->url_onion" external
class="text-purple-600 dark:text-purple-400">
<flux:icon.lock-closed variant="mini" class="inline"/>
Onion
</flux:link>
</flux:tooltip>
@endif
@if($service->url_i2p)
<flux:tooltip content="{{ $service->url_i2p }}">
<flux:link :href="$service->url_i2p" external
class="text-green-600 dark:text-green-400">
<flux:icon.link variant="mini" class="inline"/>
I2P
</flux:link>
</flux:tooltip>
@endif
@if($service->url_pkdns)
<flux:tooltip content="{{ $service->url_pkdns }}">
<flux:link :href="$service->url_pkdns" external
class="text-orange-600 dark:text-orange-400">
<flux:icon.link variant="mini" class="inline"/>
pkdns
</flux:link>
</flux:tooltip>
@endif
</div>
</flux:table.cell>
<flux:table.cell>
@if($service->createdBy)
<div class="flex items-center gap-2">
<flux:avatar size="xs" src="{{ $service->createdBy->profile_photo_url }}"/>
<span>{{ Str::length($service->createdBy->name) > 20 ? Str::substr($service->createdBy->name, 0, 4) . '...' . Str::substr($service->createdBy->name, -3) : $service->createdBy->name }}</span>
</div>
@else
<span class="text-gray-500 dark:text-gray-400 italic">{{ __('Anonymous') }}</span>
@endif
</flux:table.cell>
<flux:table.cell>
<div class="flex flex-col gap-1 text-sm">
<flux:tooltip content="{{ __('Created at') }}">
<div class="flex items-center gap-1">
<flux:icon.plus variant="micro" class="text-green-600 dark:text-green-400"/>
<span
class="text-gray-600 dark:text-gray-400">{{ $service->created_at->format('d.m.Y') }}</span>
</div>
</flux:tooltip>
@if($service->created_at->ne($service->updated_at))
<flux:tooltip content="{{ __('Updated at') }}">
<div class="flex items-center gap-1">
<flux:icon.pencil variant="micro" class="text-blue-600 dark:text-blue-400"/>
<span
class="text-gray-600 dark:text-gray-400">{{ $service->updated_at->format('d.m.Y') }}</span>
</div>
</flux:tooltip>
@endif
</div>
</flux:table.cell>
</flux:table.row>
@endforeach
</flux:table.rows>
</flux:table>
</div>