mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Web\Pages\Settings\Projects\Widgets;
|
|
|
|
use App\Models\Project;
|
|
use App\Models\User;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
use Filament\Widgets\TableWidget as Widget;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
class ProjectUsersList extends Widget
|
|
{
|
|
protected $listeners = ['userAdded' => '$refresh'];
|
|
|
|
public Project $project;
|
|
|
|
public function mount(Project $project): void
|
|
{
|
|
$this->project = $project;
|
|
}
|
|
|
|
protected function getTableQuery(): Builder
|
|
{
|
|
return User::query()->whereHas('projects', function (Builder $query) {
|
|
$query->where('project_id', $this->project->id);
|
|
});
|
|
}
|
|
|
|
protected function getTableColumns(): array
|
|
{
|
|
return [
|
|
Tables\Columns\TextColumn::make('id')->width('20%'),
|
|
Tables\Columns\TextColumn::make('name')->width('20%'),
|
|
Tables\Columns\TextColumn::make('email')->width('20%'),
|
|
];
|
|
}
|
|
|
|
public function getTable(): Table
|
|
{
|
|
return $this->table->actions([
|
|
Tables\Actions\DeleteAction::make()
|
|
->label('Remove')
|
|
->modalHeading('Remove user from project')
|
|
->visible(function ($record) {
|
|
return $this->authorize('update', $this->project)->allowed() && $record->id !== auth()->id();
|
|
})
|
|
->using(function ($record) {
|
|
$this->project->users()->detach($record);
|
|
}),
|
|
])->paginated(false);
|
|
}
|
|
}
|