Files
dockhand/lib/components/UpdateSummaryStats.svelte
Jarek Krochmalski 62e3c6439e Initial commit
2025-12-28 21:16:03 +01:00

70 lines
2.0 KiB
Svelte

<script lang="ts">
import { CheckCircle2, ShieldAlert, XCircle, Search } from 'lucide-svelte';
interface Props {
checked?: number;
updated: number;
blocked: number;
failed: number;
compact?: boolean;
}
let { checked, updated, blocked, failed, compact = false }: Props = $props();
</script>
{#if compact}
<!-- Inline compact layout -->
<div class="flex items-center gap-4 text-sm">
{#if checked !== undefined}
<div class="flex items-center gap-1.5">
<span class="font-bold">{checked}</span>
<span class="text-muted-foreground">Checked</span>
</div>
{/if}
{#if updated > 0}
<div class="flex items-center gap-1.5 text-green-600">
<CheckCircle2 class="w-4 h-4" />
<span>{updated} updated</span>
</div>
{/if}
{#if blocked > 0}
<div class="flex items-center gap-1.5 text-amber-600">
<ShieldAlert class="w-4 h-4" />
<span>{blocked} blocked</span>
</div>
{/if}
{#if failed > 0}
<div class="flex items-center gap-1.5 text-red-600">
<XCircle class="w-4 h-4" />
<span>{failed} failed</span>
</div>
{/if}
</div>
{:else}
<!-- Grid layout -->
<div class="flex items-center gap-4 text-sm pb-3 border-b">
{#if checked !== undefined}
<div class="flex items-center gap-1.5">
<Search class="w-4 h-4 text-muted-foreground" />
<span class="font-bold">{checked}</span>
<span class="text-muted-foreground">Checked</span>
</div>
{/if}
<div class="flex items-center gap-1.5">
<CheckCircle2 class="w-4 h-4 text-green-500" />
<span class="font-bold text-green-500">{updated}</span>
<span class="text-muted-foreground">Updated</span>
</div>
<div class="flex items-center gap-1.5">
<ShieldAlert class="w-4 h-4 text-amber-500" />
<span class="font-bold text-amber-500">{blocked}</span>
<span class="text-muted-foreground">Blocked</span>
</div>
<div class="flex items-center gap-1.5">
<XCircle class="w-4 h-4 text-red-500" />
<span class="font-bold text-red-500">{failed}</span>
<span class="text-muted-foreground">Failed</span>
</div>
</div>
{/if}