mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-10 07:48:53 +00:00
ed8fa7e11f
Complete frontend visual redesign using certctl logo color palette: - Deep teal sidebar (#0c2e25) with prominent centered logo (64px in white pill) - Light content area (#f0f4f8) with white cards and visible borders - Brand colors from logo: teal (#2ea88f), blue (#3b7dd8), orange (#e8873a), green (#4ebe6e) - Inter + JetBrains Mono typography, colored stat card top borders - All 17 pages + 7 components updated (25 files, ~700 lines changed) - 15 new dashboard screenshots replacing old dark theme screenshots - Prometheus metrics e2e test added, integration test mock fixes - Docs updated: architecture.md theme description, testing-guide.md DNS-PERSIST-01 coverage Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
157 lines
6.4 KiB
TypeScript
157 lines
6.4 KiB
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import { getCertificates, getProfiles } from '../api/client';
|
|
import PageHeader from '../components/PageHeader';
|
|
import DataTable from '../components/DataTable';
|
|
import type { Column } from '../components/DataTable';
|
|
import StatusBadge from '../components/StatusBadge';
|
|
import ErrorState from '../components/ErrorState';
|
|
import { formatDateTime, daysUntil } from '../api/utils';
|
|
import type { Certificate, CertificateProfile } from '../api/types';
|
|
|
|
function formatTTL(seconds: number): string {
|
|
if (seconds < 60) return `${seconds}s`;
|
|
if (seconds < 3600) return `${Math.round(seconds / 60)}m`;
|
|
if (seconds < 86400) return `${Math.round(seconds / 3600)}h`;
|
|
return `${Math.round(seconds / 86400)}d`;
|
|
}
|
|
|
|
function ttlRemaining(expiresAt: string): { text: string; color: string; seconds: number } {
|
|
const diff = new Date(expiresAt).getTime() - Date.now();
|
|
const secs = Math.floor(diff / 1000);
|
|
if (secs <= 0) return { text: 'Expired', color: 'text-red-600', seconds: 0 };
|
|
if (secs < 300) return { text: `${secs}s`, color: 'text-red-600', seconds: secs };
|
|
if (secs < 1800) return { text: `${Math.round(secs / 60)}m`, color: 'text-amber-600', seconds: secs };
|
|
return { text: formatTTL(secs), color: 'text-emerald-600', seconds: secs };
|
|
}
|
|
|
|
export default function ShortLivedPage() {
|
|
const navigate = useNavigate();
|
|
|
|
const { data: certsData, isLoading: certsLoading, error: certsError, refetch } = useQuery({
|
|
queryKey: ['certificates', {}],
|
|
queryFn: () => getCertificates(),
|
|
refetchInterval: 10000, // Refresh every 10s for short-lived certs
|
|
});
|
|
|
|
const { data: profilesData } = useQuery({
|
|
queryKey: ['profiles'],
|
|
queryFn: () => getProfiles(),
|
|
});
|
|
|
|
// Build profile lookup
|
|
const profileMap = new Map<string, CertificateProfile>();
|
|
profilesData?.data?.forEach(p => profileMap.set(p.id, p));
|
|
|
|
// Filter to short-lived certificates (profile with allow_short_lived and max_ttl < 1 hour)
|
|
const shortLivedProfileIds = new Set(
|
|
(profilesData?.data || [])
|
|
.filter(p => p.allow_short_lived && p.max_ttl_seconds > 0 && p.max_ttl_seconds < 3600)
|
|
.map(p => p.id)
|
|
);
|
|
|
|
// Include certs that match short-lived profiles OR certs that expire within 1 hour
|
|
const allCerts = certsData?.data || [];
|
|
const shortLivedCerts = allCerts.filter(c => {
|
|
if (c.status === 'Archived') return false;
|
|
if (shortLivedProfileIds.has(c.certificate_profile_id)) return true;
|
|
// Also include any cert with < 1 hour of life remaining that is active
|
|
const secsRemaining = (new Date(c.expires_at).getTime() - Date.now()) / 1000;
|
|
if (secsRemaining > 0 && secsRemaining < 3600 && c.status === 'Active') return true;
|
|
return false;
|
|
});
|
|
|
|
// Sort by expiration (soonest first)
|
|
shortLivedCerts.sort((a, b) => new Date(a.expires_at).getTime() - new Date(b.expires_at).getTime());
|
|
|
|
// Stats
|
|
const active = shortLivedCerts.filter(c => c.status === 'Active' && daysUntil(c.expires_at) >= 0).length;
|
|
const expired = shortLivedCerts.filter(c => c.status === 'Expired' || daysUntil(c.expires_at) < 0).length;
|
|
const profiles = new Set(shortLivedCerts.map(c => c.certificate_profile_id).filter(Boolean));
|
|
|
|
const columns: Column<Certificate>[] = [
|
|
{
|
|
key: 'name',
|
|
label: 'Certificate',
|
|
render: (c) => (
|
|
<div>
|
|
<div className="font-medium text-ink">{c.common_name}</div>
|
|
<div className="text-xs text-ink-faint mt-0.5">{c.id}</div>
|
|
</div>
|
|
),
|
|
},
|
|
{ key: 'status', label: 'Status', render: (c) => <StatusBadge status={c.status} /> },
|
|
{
|
|
key: 'ttl',
|
|
label: 'TTL Remaining',
|
|
render: (c) => {
|
|
const ttl = ttlRemaining(c.expires_at);
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<div className={`font-mono text-sm font-medium ${ttl.color}`}>{ttl.text}</div>
|
|
{ttl.seconds > 0 && ttl.seconds < 300 && (
|
|
<div className="w-2 h-2 rounded-full bg-red-500 animate-pulse" />
|
|
)}
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
key: 'profile',
|
|
label: 'Profile',
|
|
render: (c) => {
|
|
const profile = profileMap.get(c.certificate_profile_id);
|
|
return (
|
|
<div>
|
|
<div className="text-sm text-ink">{profile?.name || c.certificate_profile_id || '—'}</div>
|
|
{profile && <div className="text-xs text-ink-faint">Max TTL: {formatTTL(profile.max_ttl_seconds)}</div>}
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{ key: 'env', label: 'Environment', render: (c) => <span className="text-ink">{c.environment || '—'}</span> },
|
|
{ key: 'issuer', label: 'Issuer', render: (c) => <span className="text-ink-muted text-xs">{c.issuer_id}</span> },
|
|
{ key: 'expires', label: 'Expires At', render: (c) => <span className="text-xs text-ink-muted">{formatDateTime(c.expires_at)}</span> },
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<PageHeader
|
|
title="Short-Lived Credentials"
|
|
subtitle={`${shortLivedCerts.length} active ephemeral certificates`}
|
|
/>
|
|
{/* Stats bar */}
|
|
<div className="px-6 py-3 flex gap-6 border-b border-surface-border/50">
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-2 h-2 rounded-full bg-emerald-500" />
|
|
<span className="text-xs text-ink-muted">Active:</span>
|
|
<span className="text-xs font-medium text-emerald-600">{active}</span>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-2 h-2 rounded-full bg-red-500" />
|
|
<span className="text-xs text-ink-muted">Expired:</span>
|
|
<span className="text-xs font-medium text-red-600">{expired}</span>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-2 h-2 rounded-full bg-brand-400" />
|
|
<span className="text-xs text-ink-muted">Profiles:</span>
|
|
<span className="text-xs font-medium text-brand-400">{profiles.size}</span>
|
|
</div>
|
|
</div>
|
|
<div className="flex-1 overflow-y-auto">
|
|
{certsError ? (
|
|
<ErrorState error={certsError as Error} onRetry={() => refetch()} />
|
|
) : (
|
|
<DataTable
|
|
columns={columns}
|
|
data={shortLivedCerts}
|
|
isLoading={certsLoading}
|
|
onRowClick={(c) => navigate(`/certificates/${c.id}`)}
|
|
emptyMessage="No short-lived credentials found. Certificates with profiles that have TTL < 1 hour will appear here."
|
|
/>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|