2023-09-30 15:08:40 +02:00
|
|
|
<?php
|
|
|
|
|
2024-03-21 12:44:32 +01:00
|
|
|
namespace App\Livewire\Project\Service;
|
2023-09-30 15:08:40 +02:00
|
|
|
|
2023-12-06 14:57:03 +01:00
|
|
|
use App\Models\Service;
|
2024-03-21 12:44:32 +01:00
|
|
|
use Livewire\Component;
|
2023-09-30 15:08:40 +02:00
|
|
|
|
2024-03-21 12:44:32 +01:00
|
|
|
class EditCompose extends Component
|
2023-09-30 15:08:40 +02:00
|
|
|
{
|
2023-12-06 14:57:03 +01:00
|
|
|
public Service $service;
|
2023-12-06 15:50:13 +01:00
|
|
|
public $serviceId;
|
2023-12-06 14:57:03 +01:00
|
|
|
protected $rules = [
|
|
|
|
'service.docker_compose_raw' => 'required',
|
|
|
|
'service.docker_compose' => 'required',
|
|
|
|
];
|
2024-04-16 10:44:23 +02:00
|
|
|
public function mount()
|
|
|
|
{
|
2023-12-06 15:50:13 +01:00
|
|
|
$this->service = Service::find($this->serviceId);
|
|
|
|
}
|
2024-03-21 12:44:32 +01:00
|
|
|
|
2024-04-16 10:44:23 +02:00
|
|
|
public function saveEditedCompose()
|
|
|
|
{
|
2024-04-12 10:28:40 +02:00
|
|
|
$this->dispatch('info', "Saving new docker compose...");
|
2023-12-07 19:06:32 +01:00
|
|
|
$this->dispatch('saveCompose', $this->service->docker_compose_raw);
|
2024-03-21 12:44:32 +01:00
|
|
|
}
|
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return view('livewire.project.service.edit-compose');
|
2023-09-30 15:08:40 +02:00
|
|
|
}
|
|
|
|
}
|