28 lines
		
	
	
		
			760 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			760 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Livewire\Project\Application;
 | |
| 
 | |
| use Livewire\Component;
 | |
| use Spatie\Activitylog\Models\Activity;
 | |
| 
 | |
| class PollDeployment extends Component
 | |
| {
 | |
|     public $activity;
 | |
|     public $isKeepAliveOn = true;
 | |
|     public $deployment_uuid;
 | |
| 
 | |
|     public function polling()
 | |
|     {
 | |
|         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.status') == 'finished' || data_get($this->activity, 'properties.status') == 'failed' ) {
 | |
|             $this->isKeepAliveOn = false;
 | |
|         }
 | |
|     }
 | |
| }
 | 
