27 lines
		
	
	
		
			1006 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1006 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @props([
 | |
|     'status' => 'Restarting',
 | |
|     'title' => null,
 | |
|     'lastDeploymentLink' => null,
 | |
|     'noLoading' => false,
 | |
| ])
 | |
| <div class="flex items-center">
 | |
|     @if (!$noLoading)
 | |
|         <x-loading wire:loading.delay.longer />
 | |
|     @endif
 | |
|     <span wire:loading.remove.delay.longer class="flex items-center">
 | |
|         <div class="badge badge-warning "></div>
 | |
|         <div class="pl-2 pr-1 text-xs font-bold tracking-wider dark:text-warning" @if($title) title="{{$title}}" @endif>
 | |
|             @if ($lastDeploymentLink)
 | |
|               <a href="{{ $lastDeploymentLink }}" target="_blank" class="underline cursor-pointer">
 | |
|                   {{ str($status)->before(':')->headline() }}
 | |
|               </a>
 | |
|           @else
 | |
|               {{ str($status)->before(':')->headline() }}
 | |
|           @endif
 | |
|         </div>
 | |
|         @if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
 | |
|             <div class="text-xs dark:text-warning">({{ str($status)->after(':') }})</div>
 | |
|         @endif
 | |
|     </span>
 | |
| </div>
 | 
