lasthourcloud/app/Http/Livewire/Project/Service/Index.php

61 lines
1.6 KiB
PHP
Raw Normal View History

2023-09-20 13:42:41 +00:00
<?php
namespace App\Http\Livewire\Project\Service;
use App\Models\Service;
2023-09-25 13:48:43 +00:00
use App\Models\ServiceApplication;
2023-09-20 13:42:41 +00:00
use Livewire\Component;
class Index extends Component
{
public Service $service;
2023-09-25 13:48:43 +00:00
public $applications;
public $databases;
2023-09-20 13:42:41 +00:00
public array $parameters;
public array $query;
2023-09-25 13:48:43 +00:00
2023-09-21 15:48:31 +00:00
protected $rules = [
2023-09-22 09:23:49 +00:00
'service.docker_compose_raw' => 'required',
'service.docker_compose' => 'required',
'service.name' => 'required',
'service.description' => 'nullable',
2023-09-21 15:48:31 +00:00
];
public function mount()
{
2023-09-20 13:42:41 +00:00
$this->parameters = get_route_parameters();
$this->query = request()->query();
$this->service = Service::whereUuid($this->parameters['service_uuid'])->firstOrFail();
2023-09-25 13:48:43 +00:00
$this->applications = $this->service->applications->sort();
$this->databases = $this->service->databases->sort();
2023-09-20 13:42:41 +00:00
}
public function render()
{
2023-09-22 09:23:49 +00:00
return view('livewire.project.service.index');
2023-09-20 13:42:41 +00:00
}
public function save()
{
2023-09-25 13:48:43 +00:00
try {
$this->service->save();
$this->service->parse();
$this->service->refresh();
$this->emit('refreshEnvs');
$this->emit('success', 'Service saved successfully.');
$this->service->saveComposeConfigs();
} catch(\Throwable $e) {
return handleError($e, $this);
}
2023-09-21 19:30:13 +00:00
}
public function submit()
{
try {
$this->validate();
$this->service->save();
$this->emit('success', 'Service saved successfully.');
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2023-09-20 13:42:41 +00:00
}