refactor: application status changed realtime

This commit is contained in:
Andras Bacsai
2023-12-11 13:43:16 +01:00
parent a8807b8d09
commit 1fd12832ca
9 changed files with 70 additions and 6 deletions

View File

@@ -34,10 +34,11 @@ class Heading extends Component
$this->check_status();
}
public function check_status()
public function check_status($showNotification = false)
{
dispatch_sync(new ContainerStatusJob($this->database->destination->server));
$this->database->refresh();
if ($showNotification) $this->dispatch('success', 'Database status updated.');
}
public function mount()