Abstracted deployment code into a job.

This commit is contained in:
Joao Patricio
2023-03-31 12:32:07 +01:00
parent 5d89df554a
commit ff3d0b29e3
8 changed files with 289 additions and 215 deletions

View File

@@ -3,15 +3,23 @@
namespace App\Http\Livewire;
use Livewire\Component;
use Spatie\Activitylog\Models\Activity;
class PollActivity extends Component
{
public $activity;
public $isKeepAliveOn = true;
public $deployment_uuid;
public function polling()
{
$this->activity?->refresh();
if ( is_null($this->activity) && isset($this->deployment_uuid)) {
$this->activity = Activity::where('properties->deployment_uuid', '=', $this->deployment_uuid)
->first();
} else {
$this->activity?->refresh();
}
if (data_get($this->activity, 'properties.exitCode') !== null) {
$this->isKeepAliveOn = false;
}