diff --git a/app/Livewire/Project/Application/Heading.php b/app/Livewire/Project/Application/Heading.php index 1bacc920f..06b29fad1 100644 --- a/app/Livewire/Project/Application/Heading.php +++ b/app/Livewire/Project/Application/Heading.php @@ -50,6 +50,8 @@ class Heading extends Component { if ($this->application->destination->server->isFunctional()) { GetContainersStatus::dispatch($this->application->destination->server); + } else { + $this->dispatch('error', 'Server is not functional.'); } } @@ -108,6 +110,7 @@ class Heading extends Component public function stop() { + $this->dispatch('info', 'Gracefully stopping application, it could take a while depending on the application.'); StopApplication::dispatch($this->application, false, $this->docker_cleanup); } diff --git a/app/Livewire/Project/Database/Heading.php b/app/Livewire/Project/Database/Heading.php index d5b65bf63..e11402844 100644 --- a/app/Livewire/Project/Database/Heading.php +++ b/app/Livewire/Project/Database/Heading.php @@ -51,6 +51,8 @@ class Heading extends Component { if ($this->database->destination->server->isFunctional()) { GetContainersStatus::dispatch($this->database->destination->server); + } else { + $this->dispatch('error', 'Server is not functional.'); } } @@ -62,7 +64,7 @@ class Heading extends Component public function stop() { try { - $this->dispatch('info', 'Stopping database.'); + $this->dispatch('info', 'Gracefully stopping database, it could take a while depending on the size of the database.'); StopDatabase::dispatch($this->database, false, $this->docker_cleanup); } catch (\Exception $e) { $this->dispatch('error', $e->getMessage()); diff --git a/app/Livewire/Project/Service/Heading.php b/app/Livewire/Project/Service/Heading.php index 0587a1ebc..153b10fc8 100644 --- a/app/Livewire/Project/Service/Heading.php +++ b/app/Livewire/Project/Service/Heading.php @@ -50,6 +50,8 @@ class Heading extends Component { if ($this->service->server->isFunctional()) { GetContainersStatus::dispatch($this->service->server); + } else { + $this->dispatch('error', 'Server is not functional.'); } } @@ -103,7 +105,7 @@ class Heading extends Component $activities = Activity::where('properties->type_uuid', $this->service->uuid) ->where(function ($q) { $q->where('properties->status', ProcessStatus::IN_PROGRESS->value) - ->orWhere('properties->status', ProcessStatus::QUEUED->value); + ->orWhere('properties->status', ProcessStatus::QUEUED->value); })->get(); foreach ($activities as $activity) { $activity->properties->status = ProcessStatus::ERROR->value; @@ -119,6 +121,7 @@ class Heading extends Component public function stop() { try { + $this->dispatch('info', 'Gracefully stopping service, it could take a while depending on the service.'); StopService::dispatch($this->service, false, $this->docker_cleanup); } catch (\Exception $e) { $this->dispatch('error', $e->getMessage());