coolify/app/Livewire/Project/Shared/HealthChecks.php

48 lines
1.3 KiB
PHP
Raw Normal View History

2023-09-22 15:29:19 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Shared;
2023-09-22 15:29:19 +02:00
use Livewire\Component;
class HealthChecks extends Component
{
public $resource;
protected $rules = [
'resource.health_check_enabled' => 'boolean',
2023-09-22 15:29:19 +02:00
'resource.health_check_path' => 'string',
'resource.health_check_port' => 'nullable|string',
'resource.health_check_host' => 'string',
'resource.health_check_method' => 'string',
'resource.health_check_return_code' => 'integer',
'resource.health_check_scheme' => 'string',
'resource.health_check_response_text' => 'nullable|string',
'resource.health_check_interval' => 'integer',
'resource.health_check_timeout' => 'integer',
'resource.health_check_retries' => 'integer',
'resource.health_check_start_period' => 'integer',
];
public function instantSave()
{
$this->resource->save();
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Health check updated.');
}
2023-09-22 15:29:19 +02:00
public function submit()
{
try {
$this->validate();
$this->resource->save();
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Health check updated.');
2023-09-22 15:29:19 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
public function render()
{
return view('livewire.project.shared.health-checks');
}
}