vito/app/Web/Pages/Servers/PHP/Index.php
Saeed Vaziry f743611b22 fix enums
2024-11-01 22:08:02 +01:00

67 lines
2.1 KiB
PHP

<?php
namespace App\Web\Pages\Servers\PHP;
use App\Actions\PHP\InstallNewPHP;
use App\Enums\PHP;
use App\Models\Service;
use App\Web\Pages\Servers\Page;
use App\Web\Pages\Servers\PHP\Widgets\PHPList;
use Filament\Actions\Action;
use Filament\Forms\Components\Select;
use Filament\Notifications\Notification;
use Filament\Support\Enums\MaxWidth;
class Index extends Page
{
protected static ?string $slug = 'servers/{server}/php';
protected static ?string $title = 'PHP';
public function mount(): void
{
$this->authorize('viewAny', [Service::class, $this->server]);
}
public function getWidgets(): array
{
return [
[PHPList::class, ['server' => $this->server]],
];
}
protected function getHeaderActions(): array
{
$installedPHPs = $this->server->installedPHPVersions();
return [
Action::make('install')
->authorize(fn () => auth()->user()?->can('create', [Service::class, $this->server]))
->label('Install PHP')
->icon('heroicon-o-archive-box-arrow-down')
->modalWidth(MaxWidth::Large)
->form([
Select::make('version')
->options(
collect(config('core.php_versions'))
->filter(fn ($version) => ! in_array($version, array_merge($installedPHPs, [PHP::NONE])))
->mapWithKeys(fn ($version) => [$version => $version])
->toArray()
)
->rules(InstallNewPHP::rules($this->server)['version']),
])
->modalSubmitActionLabel('Install')
->action(function (array $data) {
app(InstallNewPHP::class)->install($this->server, $data);
Notification::make()
->success()
->title('Installing PHP...')
->send();
$this->dispatch('$refresh');
}),
];
}
}