 1072a0c17c
			
		
	
	1072a0c17c
	
	
	
		
			
			- fix: show time details even if a deployment has failed - feat: added back "finished x min ago" to make it easier to see how long ago a deployment was finished
		
			
				
	
	
		
			86 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div wire:init='refreshBackupExecutions'>
 | |
|     @isset($backup)
 | |
|         <div class="flex items-center gap-2">
 | |
|             <h3 class="py-4">Executions</h3>
 | |
|             <x-forms.button wire:click='cleanupFailed'>Cleanup Failed Backups</x-forms.button>
 | |
|         </div>
 | |
|         <div wire:poll.5000ms="refreshBackupExecutions" class="flex flex-col gap-4">
 | |
|             @forelse($executions as $execution)
 | |
|                 <div wire:key="{{ data_get($execution, 'id') }}" @class([
 | |
|                     'flex flex-col border-l-2 transition-colors p-4 bg-white dark:bg-coolgray-100 text-black dark:text-white',
 | |
|                     'border-blue-500/50 border-dashed' => data_get($execution, 'status') === 'running',
 | |
|                     'border-error' => data_get($execution, 'status') === 'failed',
 | |
|                     'border-success' => data_get($execution, 'status') === 'success',
 | |
|                 ])>
 | |
|                     @if (data_get($execution, 'status') === 'running')
 | |
|                         <div class="absolute top-2 right-2">
 | |
|                             <x-loading />
 | |
|                         </div>
 | |
|                     @endif
 | |
|                     <div class="flex items-center gap-2 mb-2">
 | |
|                         <span @class([
 | |
|                             'px-3 py-1 rounded-md text-xs font-medium tracking-wide shadow-sm',
 | |
|                             'bg-blue-100/80 text-blue-700 dark:bg-blue-500/20 dark:text-blue-300 dark:shadow-blue-900/5' => data_get($execution, 'status') === 'running',
 | |
|                             'bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-200 dark:shadow-red-900/5' => data_get($execution, 'status') === 'failed',
 | |
|                             'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-200 dark:shadow-green-900/5' => data_get($execution, 'status') === 'success',
 | |
|                         ])>
 | |
|                             @php
 | |
|                                 $statusText = match(data_get($execution, 'status')) {
 | |
|                                     'success' => 'Success',
 | |
|                                     'running' => 'In Progress',
 | |
|                                     'failed' => 'Failed',
 | |
|                                     default => ucfirst(data_get($execution, 'status'))
 | |
|                                 };
 | |
|                             @endphp
 | |
|                             {{ $statusText }}
 | |
|                         </span>
 | |
|                     </div>
 | |
|                     <div class="text-gray-600 dark:text-gray-400 text-sm">
 | |
|                         Started: {{ formatDateInServerTimezone(data_get($execution, 'created_at'), $this->server()) }}
 | |
|                         @if(data_get($execution, 'status') !== 'running')
 | |
|                             <br>Ended: {{ formatDateInServerTimezone(data_get($execution, 'finished_at'), $this->server()) }}
 | |
|                             <br>Duration: {{ calculateDuration(data_get($execution, 'created_at'), data_get($execution, 'finished_at')) }}
 | |
|                             <br>Finished {{ \Carbon\Carbon::parse(data_get($execution, 'finished_at'))->diffForHumans() }}
 | |
|                         @endif
 | |
|                     </div>
 | |
|                     <div class="text-gray-600 dark:text-gray-400 text-sm">
 | |
|                         Database: {{ data_get($execution, 'database_name', 'N/A') }}
 | |
|                     </div>
 | |
|                     <div class="text-gray-600 dark:text-gray-400 text-sm">
 | |
|                         Size: {{ data_get($execution, 'size') }} B /
 | |
|                         {{ round((int) data_get($execution, 'size') / 1024, 2) }} kB /
 | |
|                         {{ round((int) data_get($execution, 'size') / 1024 / 1024, 3) }} MB
 | |
|                     </div>
 | |
|                     <div class="text-gray-600 dark:text-gray-400 text-sm">
 | |
|                         Location: {{ data_get($execution, 'filename', 'N/A') }}
 | |
|                     </div>
 | |
|                     @if (data_get($execution, 'message'))
 | |
|                         <div class="mt-2 p-2 bg-gray-100 dark:bg-coolgray-200 rounded">
 | |
|                             <pre class="whitespace-pre-wrap text-sm">{{ data_get($execution, 'message') }}</pre>
 | |
|                         </div>
 | |
|                     @endif
 | |
|                     <div class="flex gap-2 mt-4">
 | |
|                         @if (data_get($execution, 'status') === 'success')
 | |
|                             <x-forms.button class="dark:hover:bg-coolgray-400"
 | |
|                                 x-on:click="download_file('{{ data_get($execution, 'id') }}')">Download</x-forms.button>
 | |
|                         @endif
 | |
|                         <x-modal-confirmation title="Confirm Backup Deletion?" buttonTitle="Delete" isErrorButton
 | |
|                             submitAction="deleteBackup({{ data_get($execution, 'id') }})"
 | |
|                             :checkboxes="$checkboxes"
 | |
|                             :actions="['This backup will be permanently deleted from local storage.']" confirmationText="{{ data_get($execution, 'filename') }}"
 | |
|                             confirmationLabel="Please confirm the execution of the actions by entering the Backup Filename below"
 | |
|                             shortConfirmationLabel="Backup Filename" step3ButtonText="Permanently Delete" />
 | |
|                     </div>
 | |
|                 </div>
 | |
|             @empty
 | |
|                 <div class="p-4 bg-gray-100 dark:bg-coolgray-100 rounded">No executions found.</div>
 | |
|             @endforelse
 | |
|         </div>
 | |
|         <script>
 | |
|             function download_file(executionId) {
 | |
|                 window.open('/download/backup/' + executionId, '_blank');
 | |
|             }
 | |
|         </script>
 | |
|     @endisset
 | |
| </div>
 |