mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:39:03 -04:00 
			
		
		
		
	chore(web) Add loading indicators to jobs panel (#1272)
This commit is contained in:
		
							parent
							
								
									e4e040f14b
								
							
						
					
					
						commit
						af2eac52a8
					
				| @ -8,6 +8,7 @@ | |||||||
| 	export let jobStatus: boolean; | 	export let jobStatus: boolean; | ||||||
| 	export let waitingJobCount: number; | 	export let waitingJobCount: number; | ||||||
| 	export let activeJobCount: number; | 	export let activeJobCount: number; | ||||||
|  | 
 | ||||||
| 	const dispatch = createEventDispatcher(); | 	const dispatch = createEventDispatcher(); | ||||||
| </script> | </script> | ||||||
| 
 | 
 | ||||||
| @ -36,8 +37,20 @@ | |||||||
| 			> | 			> | ||||||
| 				<tr class="text-center flex place-items-center w-full h-[60px]"> | 				<tr class="text-center flex place-items-center w-full h-[60px]"> | ||||||
| 					<td class="text-sm px-2 w-1/3 text-ellipsis">{jobStatus ? 'Active' : 'Idle'}</td> | 					<td class="text-sm px-2 w-1/3 text-ellipsis">{jobStatus ? 'Active' : 'Idle'}</td> | ||||||
| 					<td class="text-sm px-2 w-1/3 text-ellipsis">{activeJobCount}</td> | 					<td class="flex justify-center text-sm px-2 w-1/3 text-ellipsis"> | ||||||
| 					<td class="text-sm px-2 w-1/3 text-ellipsis">{waitingJobCount}</td> | 						{#if activeJobCount !== undefined} | ||||||
|  | 							{activeJobCount} | ||||||
|  | 						{:else} | ||||||
|  | 							<LoadingSpinner /> | ||||||
|  | 						{/if} | ||||||
|  | 					</td> | ||||||
|  | 					<td class="flex justify-center text-sm px-2 w-1/3 text-ellipsis"> | ||||||
|  | 						{#if waitingJobCount !== undefined} | ||||||
|  | 							{waitingJobCount} | ||||||
|  | 						{:else} | ||||||
|  | 							<LoadingSpinner /> | ||||||
|  | 						{/if} | ||||||
|  | 					</td> | ||||||
| 				</tr> | 				</tr> | ||||||
| 			</tbody> | 			</tbody> | ||||||
| 		</table> | 		</table> | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user