- 2.x - scripts

This commit is contained in:
Saeed Vaziry
2024-10-06 20:49:59 +02:00
parent c24b4b7333
commit 8b2338cb41
32 changed files with 936 additions and 79 deletions

View File

@ -0,0 +1,63 @@
<?php
namespace App\Web\Pages\Settings\SSHKeys;
use App\Actions\SshKey\CreateSshKey;
use App\Models\SshKey;
use App\Web\Components\Page;
use Filament\Actions\CreateAction;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\TextInput;
use Filament\Support\Enums\MaxWidth;
class Index extends Page
{
protected static ?string $navigationGroup = 'Settings';
protected static ?string $slug = 'settings/ssh-keys';
protected static ?string $title = 'SSH Keys';
protected static ?string $navigationIcon = 'heroicon-o-key';
protected static ?int $navigationSort = 9;
public static function canAccess(): bool
{
return auth()->user()?->can('viewAny', SshKey::class) ?? false;
}
public function getWidgets(): array
{
return [
[Widgets\SshKeysList::class],
];
}
protected function getHeaderActions(): array
{
return [
CreateAction::make('add')
->label('Add Key')
->icon('heroicon-o-plus')
->modalHeading('Add a new Key')
->modalSubmitActionLabel('Add')
->createAnother(false)
->form([
TextInput::make('name')
->label('Name')
->rules(CreateSshKey::rules()['name']),
Textarea::make('public_key')
->label('Public Key')
->rules(CreateSshKey::rules()['public_key']),
])
->authorize('create', SshKey::class)
->modalWidth(MaxWidth::Large)
->using(function (array $data) {
app(CreateSshKey::class)->create(auth()->user(), $data);
$this->dispatch('$refresh');
}),
];
}
}

View File

@ -0,0 +1,53 @@
<?php
namespace App\Web\Pages\Settings\SSHKeys\Widgets;
use App\Models\SshKey;
use Filament\Tables\Actions\DeleteAction;
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Table;
use Filament\Widgets\TableWidget;
use Illuminate\Database\Eloquent\Builder;
class SshKeysList extends TableWidget
{
protected $listeners = ['$refresh'];
protected function getTableQuery(): Builder
{
return SshKey::query()->where('user_id', auth()->id());
}
protected static ?string $heading = '';
protected function getTableColumns(): array
{
return [
TextColumn::make('name')
->sortable()
->searchable(),
TextColumn::make('public_key')
->tooltip('Copy')
->limit(20)
->copyable(),
TextColumn::make('created_at')
->sortable(),
];
}
public function getTable(): Table
{
return $this->table
->actions([
DeleteAction::make('delete')
->requiresConfirmation()
->authorize(fn (SshKey $record) => auth()->user()->can('delete', $record))
->action(function (SshKey $record) {
run_action($this, function () use ($record) {
$record->delete();
$this->dispatch('$refresh');
});
}),
]);
}
}