blob: 29305f2f02e3ecb031603e187193965a448756fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
<script lang="ts">
import UptimeTimeline from './UptimeTimeline.svelte';
import type { Service, Heartbeat } from '$lib/types';
let {
service,
heartbeats = [],
ondeleted
}: {
service: Service;
heartbeats: Heartbeat[];
ondeleted: (id: number) => void;
} = $props();
let isUp = $derived(service?.last_heartbeat?.is_up ?? true);
let lastMs = $derived(service?.last_heartbeat?.response_time_ms ?? null);
let statusColor = $derived(isUp ? 'var(--green)' : 'var(--red)');
let bgClass = $derived(isUp ? 'bg-emerald-500/10 text-emerald-500' : 'bg-rose-500/10 text-rose-500');
let dotGlow = $derived(isUp ? '0 0 6px var(--green)' : '0 0 6px var(--red)');
let uptime30d = $derived.by(() => {
const now = Date.now();
const cutoff30d = now - 30 * 24 * 60 * 60 * 1000;
const recent = heartbeats.filter((h) => new Date(h.tested_at).getTime() >= cutoff30d);
if (recent.length === 0) return null;
return (recent.filter((h) => h.is_up).length / recent.length) * 100;
});
let uptimeColor = $derived(uptime30d !== null && uptime30d < 99 ? 'var(--red)' : 'var(--green)');
</script>
{#if service}
<div
class="group relative overflow-hidden rounded-2xl border border-[var(--border-color)] bg-[var(--bg-card)] p-5 transition-all duration-300 hover:border-[var(--border-color)]/60 hover:shadow-2xl hover:shadow-black/30 hover:-translate-y-0.5"
>
<div
class="pointer-events-none absolute -inset-px rounded-2xl opacity-0 transition-opacity duration-500 group-hover:opacity-100"
style="background: radial-gradient(600px circle at 50% 50%, {statusColor}06 0%, transparent 60%)"
></div>
<div class="relative z-10">
<div class="mb-3 flex items-start justify-between gap-2">
<div class="min-w-0 flex-1">
<h3 class="truncate text-sm font-semibold text-white">{service.name}</h3>
<p class="mt-0.5 truncate font-mono text-xs text-[var(--text-muted)]">{service.url}</p>
</div>
<button
onclick={() => ondeleted(service.id)}
class="shrink-0 rounded-lg p-1.5 text-[var(--text-muted)] opacity-0 transition-all duration-200 hover:bg-rose-500/10 hover:text-rose-500 group-hover:opacity-100"
title="Remover serviço"
>
<svg class="h-3.5 w-3.5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="mb-4 flex items-center gap-3">
<span class="inline-flex items-center gap-1.5 rounded-lg px-2.5 py-1 text-xs font-semibold tracking-wide {bgClass}">
<span class="h-1.5 w-1.5 rounded-full" style="background-color: {statusColor}; box-shadow: {dotGlow}"></span>
{isUp ? 'UP' : 'DOWN'}
</span>
{#if lastMs !== null}
<span class="font-mono text-xs tabular-nums text-[var(--text-muted)]">
{lastMs}<span class="text-[var(--text-secondary)]">ms</span>
</span>
{/if}
{#if uptime30d !== null}
<span
class="ml-auto font-mono text-xs tabular-nums"
style="color: {uptimeColor}"
>
{uptime30d.toFixed(2)}%
</span>
{/if}
</div>
<UptimeTimeline {heartbeats} />
<a
href="/status/{service.id}"
class="mt-3 block text-center text-[10px] font-medium uppercase tracking-widest text-[var(--text-muted)] transition-colors hover:text-[var(--text-secondary)]"
>
Detalhes →
</a>
</div>
</div>
{/if}
|