mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-05 16:02:34 +00:00
migrating tests (Metrics, NotificationChannels, PHP, Profile and Projects)
This commit is contained in:
@ -2,8 +2,13 @@
|
||||
|
||||
namespace App\Web\Pages\Servers\Metrics;
|
||||
|
||||
use App\Actions\Monitoring\UpdateMetricSettings;
|
||||
use App\Models\Metric;
|
||||
use App\Web\Pages\Servers\Page;
|
||||
use Filament\Actions\Action;
|
||||
use Filament\Forms\Components\Select;
|
||||
use Filament\Notifications\Notification;
|
||||
use Filament\Support\Enums\MaxWidth;
|
||||
|
||||
class Index extends Page
|
||||
{
|
||||
@ -26,6 +31,37 @@ public function getWidgets(): array
|
||||
|
||||
protected function getHeaderActions(): array
|
||||
{
|
||||
return [];
|
||||
return [
|
||||
Action::make('data-retention')
|
||||
->button()
|
||||
->color('gray')
|
||||
->icon('heroicon-o-trash')
|
||||
->label('Data Retention')
|
||||
->modalWidth(MaxWidth::Large)
|
||||
->form([
|
||||
Select::make('data_retention')
|
||||
->options([
|
||||
7 => '7 days',
|
||||
14 => '14 days',
|
||||
30 => '30 days',
|
||||
60 => '60 days',
|
||||
90 => '90 days',
|
||||
180 => '180 days',
|
||||
365 => '365 days',
|
||||
])
|
||||
->rules(UpdateMetricSettings::rules()['data_retention'])
|
||||
->label('Data Retention')
|
||||
->default($this->server->monitoring()?->type_data['data_retention'] ?? 30),
|
||||
])
|
||||
->modalSubmitActionLabel('Save')
|
||||
->action(function (array $data) {
|
||||
app(UpdateMetricSettings::class)->update($this->server, $data);
|
||||
|
||||
Notification::make()
|
||||
->success()
|
||||
->title('Data retention updated')
|
||||
->send();
|
||||
}),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
@ -7,8 +7,9 @@
|
||||
use App\Web\Pages\Servers\Page;
|
||||
use App\Web\Pages\Servers\PHP\Widgets\PHPList;
|
||||
use Filament\Actions\Action;
|
||||
use Filament\Actions\ActionGroup;
|
||||
use Filament\Support\Enums\IconPosition;
|
||||
use Filament\Forms\Components\Select;
|
||||
use Filament\Notifications\Notification;
|
||||
use Filament\Support\Enums\MaxWidth;
|
||||
|
||||
class Index extends Page
|
||||
{
|
||||
@ -30,31 +31,35 @@ public function getWidgets(): array
|
||||
|
||||
protected function getHeaderActions(): array
|
||||
{
|
||||
$phps = [];
|
||||
foreach (config('core.php_versions') as $version) {
|
||||
if (! $this->server->service('php', $version) && $version !== 'none') {
|
||||
$phps[] = Action::make($version)
|
||||
->label($version)
|
||||
->requiresConfirmation()
|
||||
->modalHeading('Install PHP '.$version)
|
||||
->modalSubmitActionLabel('Install')
|
||||
->action(function () use ($version) {
|
||||
app(InstallNewPHP::class)->install($this->server, ['version' => $version]);
|
||||
|
||||
$this->dispatch('$refresh');
|
||||
});
|
||||
}
|
||||
}
|
||||
$installedPHPs = $this->server->installedPHPVersions();
|
||||
|
||||
return [
|
||||
ActionGroup::make($phps)
|
||||
Action::make('install')
|
||||
->authorize(fn () => auth()->user()?->can('create', [Service::class, $this->server]))
|
||||
->label('Install PHP')
|
||||
->icon('heroicon-o-chevron-up-down')
|
||||
->iconPosition(IconPosition::After)
|
||||
->dropdownPlacement('bottom-end')
|
||||
->color('primary')
|
||||
->button(),
|
||||
->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, $installedPHPs))
|
||||
->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');
|
||||
}),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user