coolify/app/Livewire/Project/Service/EditCompose.php

40 lines
1.1 KiB
PHP
Raw Normal View History

<?php
2024-03-21 12:44:32 +01:00
namespace App\Livewire\Project\Service;
2023-12-06 14:57:03 +01:00
use App\Models\Service;
2024-03-21 12:44:32 +01:00
use Livewire\Component;
2024-03-21 12:44:32 +01:00
class EditCompose extends Component
{
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-05-15 17:52:14 +02:00
'service.is_container_label_escape_enabled' => 'required',
2023-12-06 14:57:03 +01: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
public function saveEditedCompose()
{
$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
}
2024-05-15 17:52:14 +02:00
public function instantSave()
{
$this->validate([
'service.is_container_label_escape_enabled' => 'required',
]);
$this->service->save(['is_container_label_escape_enabled' => $this->service->is_container_label_escape_enabled]);
$this->dispatch('success', "Service updated successfully");
}
2024-03-21 12:44:32 +01:00
public function render()
{
return view('livewire.project.service.edit-compose');
}
}