mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
106 lines
3.9 KiB
PHP
106 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Tables;
|
|
|
|
use App\Models\Meetup;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Rappasoft\LaravelLivewireTables\DataTableComponent;
|
|
use Rappasoft\LaravelLivewireTables\Views\Column;
|
|
use Rappasoft\LaravelLivewireTables\Views\Filters\TextFilter;
|
|
|
|
class MeetupTable extends DataTableComponent
|
|
{
|
|
public ?string $country = null;
|
|
|
|
public string $tableName = 'meetups';
|
|
|
|
public function configure(): void
|
|
{
|
|
$this->setPrimaryKey('id')
|
|
->setAdditionalSelects(['id', 'slug'])
|
|
->setThAttributes(function (Column $column) {
|
|
return [
|
|
'class' => 'px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider dark:bg-gray-800 dark:text-gray-400',
|
|
'default' => false,
|
|
];
|
|
})
|
|
->setTdAttributes(function (Column $column, $row, $columnIndex, $rowIndex) {
|
|
return [
|
|
'class' => 'px-6 py-4 text-sm font-medium dark:text-white',
|
|
'default' => false,
|
|
];
|
|
})
|
|
->setColumnSelectStatus(false)
|
|
->setPerPage(10);
|
|
}
|
|
|
|
public function filters(): array
|
|
{
|
|
return [
|
|
TextFilter::make('Meetup by ID', 'byid')
|
|
->hiddenFromMenus()
|
|
->filter(function (Builder $builder, string $value) {
|
|
$builder->whereIn('meetups.id', str($value)->explode(','));
|
|
}),
|
|
];
|
|
}
|
|
|
|
public function columns(): array
|
|
{
|
|
return [
|
|
Column::make(__('Name'), 'name')
|
|
->format(
|
|
fn ($value, $row, Column $column) => view('columns.meetups.name')
|
|
->withRow($row)
|
|
)
|
|
->searchable(fn ($builder, $term) => $builder->where('meetups.name', 'ilike', '%'.$term.'%')),
|
|
Column::make(__('Plebs'))
|
|
->label(fn ($row, Column $column) => $row->users_count)
|
|
->collapseOnMobile(),
|
|
Column::make(__('Links'))
|
|
->label(
|
|
fn ($row, Column $column) => view('columns.meetups.action')
|
|
->withRow($row)
|
|
->withIcs(route('meetup.ics',
|
|
['country' => $this->country ?? $row->city->country->code, 'meetup' => $row->id]))
|
|
->withCountry($this->country)
|
|
)
|
|
->collapseOnMobile(),
|
|
];
|
|
}
|
|
|
|
public function builder(): Builder
|
|
{
|
|
return Meetup::query()
|
|
->with([
|
|
'users',
|
|
'city.country',
|
|
'meetupEvents',
|
|
])
|
|
->when($this->country,
|
|
fn ($query, $country) => $query->whereRelation('city.country', 'code', $this->country))
|
|
->withCount([
|
|
'users',
|
|
'meetupEvents' => fn ($query) => $query->where('start', '>=',
|
|
now()),
|
|
])
|
|
->when(! $this->country, fn ($query) => $query->orderByDesc('users_count')
|
|
->orderBy('meetups.id'))
|
|
->when($this->country, fn ($query) => $query->orderByDesc('meetup_events_count')
|
|
->orderBy('meetups.id'));
|
|
}
|
|
|
|
public function meetupEventSearch($id)
|
|
{
|
|
$meetup = Meetup::with(['city.country'])
|
|
->find($id);
|
|
|
|
return to_route('meetup.table.meetupEvent', [
|
|
'country' => $this->country ?? $meetup->city->country->code,
|
|
'meetup_events' => [
|
|
'filters' => ['bymeetupid' => $id],
|
|
],
|
|
]);
|
|
}
|
|
}
|