2023-05-23 08:15:12 +00:00
|
|
|
<?php
|
|
|
|
|
2023-12-07 18:06:32 +00:00
|
|
|
namespace App\Livewire\Project;
|
2023-05-23 08:15:12 +00:00
|
|
|
|
|
|
|
use App\Models\Environment;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class DeleteEnvironment extends Component
|
|
|
|
{
|
|
|
|
public array $parameters;
|
|
|
|
public int $environment_id;
|
|
|
|
|
|
|
|
public function mount()
|
|
|
|
{
|
2023-08-09 13:57:53 +00:00
|
|
|
$this->parameters = get_route_parameters();
|
2023-05-23 08:15:12 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-05-23 08:15:12 +00:00
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
$this->validate([
|
|
|
|
'environment_id' => 'required|int',
|
|
|
|
]);
|
|
|
|
$environment = Environment::findOrFail($this->environment_id);
|
2023-10-24 08:11:21 +00:00
|
|
|
if ($environment->isEmpty()) {
|
|
|
|
$environment->delete();
|
2023-12-27 15:45:01 +00:00
|
|
|
return redirect()->route('project.show', ['project_uuid' => $this->parameters['project_uuid']]);
|
2023-05-23 08:15:12 +00:00
|
|
|
}
|
2023-12-07 18:06:32 +00:00
|
|
|
return $this->dispatch('error', 'Environment has defined resources, please delete them first.');
|
2023-05-23 08:15:12 +00:00
|
|
|
}
|
|
|
|
}
|