feat: dashboard visual overhaul — amber/blue/danger accents, Inter + JetBrains Mono, sharp corners, tighter density

- Tailwind config: semantic color tokens (amber/blue/danger), borderRadius all zero except full, Inter + JetBrains Mono font families
- index.css: Google Fonts imports, sharp scrollbar, scanline card texture, amber-glow utility
- Dashboard.tsx: three-color accent system (amber primary, blue informational, danger alerts), Inter for labels/prose, JetBrains Mono strictly for data values, all rounded corners removed, tighter spacing (p-4 cards, gap-4 grids, space-y-2 lists), underline-style tabs with amber active indicator, band condition dot indicators, source status dots remapped to semantic colors, StatCard supports per-instance value coloring, 36px minimum touch targets on interactive elements

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matt Johnson (via Claude) 2026-06-10 07:19:38 +00:00
commit 88554eb252
7 changed files with 221 additions and 164 deletions

View file

@ -1,3 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
@ -5,12 +8,12 @@
body { body {
background: #0a0e17; background: #0a0e17;
margin: 0; margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-family: 'Inter', system-ui, -apple-system, sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
/* Custom scrollbar */ /* Custom scrollbar — sharp, no radius */
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 8px; width: 8px;
height: 8px; height: 8px;
@ -22,13 +25,29 @@ body {
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: #2d3a4d; background: #2d3a4d;
border-radius: 4px; border-radius: 0;
} }
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background: #3b4a5d; background: #3b4a5d;
} }
/* Scanline texture on cards */
.bg-bg-card {
background-image: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(255,255,255,0.008) 2px,
rgba(255,255,255,0.008) 3px
);
}
/* Amber glow utility */
.amber-glow {
box-shadow: 0 0 12px rgba(245,158,11,0.25);
}
/* Data values use JetBrains Mono */ /* Data values use JetBrains Mono */
.font-mono { .font-mono {
font-family: 'JetBrains Mono', monospace; font-family: 'JetBrains Mono', monospace;
@ -48,7 +67,6 @@ body {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
} }
/* Toast slide-in animation */ /* Toast slide-in animation */
@keyframes slide-in { @keyframes slide-in {
from { from {

View file

@ -40,31 +40,23 @@ import {
function HealthGauge({ health }: { health: MeshHealth }) { function HealthGauge({ health }: { health: MeshHealth }) {
const score = health.score const score = health.score
const tier = health.tier const tier = health.tier
const getColor = (s: number) => {
if (s >= 80) return '#22c55e'
if (s >= 60) return '#f59e0b'
return '#ef4444'
}
const color = getColor(score)
const circumference = 2 * Math.PI * 45 const circumference = 2 * Math.PI * 45
const progress = (score / 100) * circumference const progress = (score / 100) * circumference
return ( return (
<div className="flex flex-col items-center"> <div className="flex flex-col items-center">
<svg width="140" height="140" viewBox="0 0 100 100"> <svg width="140" height="140" viewBox="0 0 100 100">
<circle cx="50" cy="50" r="45" fill="none" stroke="#1e2a3a" strokeWidth="8" /> <circle cx="50" cy="50" r="45" fill="none" stroke="#1c2a3a" strokeWidth="8" />
<circle <circle
cx="50" cy="50" r="45" fill="none" stroke={color} strokeWidth="8" cx="50" cy="50" r="45" fill="none" stroke="#f59e0b" strokeWidth="8"
strokeLinecap="round" strokeDasharray={circumference} strokeLinecap="round" strokeDasharray={circumference}
strokeDashoffset={circumference - progress} transform="rotate(-90 50 50)" strokeDashoffset={circumference - progress} transform="rotate(-90 50 50)"
className="transition-all duration-500" className="transition-all duration-500"
/> />
<text x="50" y="46" textAnchor="middle" className="fill-slate-100 font-mono text-2xl font-bold" style={{ fontSize: '24px' }}> <text x="50" y="46" textAnchor="middle" className="font-mono font-bold" style={{ fontSize: '24px', fill: '#f59e0b' }}>
{score.toFixed(1)} {score.toFixed(1)}
</text> </text>
<text x="50" y="62" textAnchor="middle" className="fill-slate-400 text-xs" style={{ fontSize: '10px' }}> <text x="50" y="62" textAnchor="middle" className="font-sans" style={{ fontSize: '10px', fill: '#94a3b8' }}>
{tier} {tier}
</text> </text>
</svg> </svg>
@ -74,15 +66,15 @@ function HealthGauge({ health }: { health: MeshHealth }) {
function PillarBar({ label, value }: { label: string; value: number }) { function PillarBar({ label, value }: { label: string; value: number }) {
const getColor = (v: number) => { const getColor = (v: number) => {
if (v >= 80) return 'bg-green-500' if (v > 66) return 'bg-amber'
if (v >= 60) return 'bg-amber-500' if (v > 33) return 'bg-amber-dim'
return 'bg-red-500' return 'bg-danger'
} }
return ( return (
<div className="flex items-center gap-3"> <div className="flex items-center gap-2">
<div className="w-24 text-xs text-slate-400 truncate">{label}</div> <div className="w-24 text-xs font-sans text-slate-400 truncate">{label}</div>
<div className="flex-1 h-2 bg-border rounded-full overflow-hidden"> <div className="flex-1 h-2 bg-border overflow-hidden">
<div className={`h-full ${getColor(value)} transition-all duration-300`} style={{ width: `${value}%` }} /> <div className={`h-full ${getColor(value)} transition-all duration-300`} style={{ width: `${value}%` }} />
</div> </div>
<div className="w-12 text-right text-xs font-mono text-slate-300">{value.toFixed(1)}</div> <div className="w-12 text-right text-xs font-mono text-slate-300">{value.toFixed(1)}</div>
@ -96,13 +88,13 @@ function AlertItem({ alert }: { alert: Alert }) {
case 'critical': case 'critical':
case 'emergency': case 'emergency':
case 'immediate': case 'immediate':
return { bg: 'bg-red-500/10', border: 'border-red-500', icon: AlertCircle, iconColor: 'text-red-500' } return { bg: 'bg-danger-muted', border: 'border-danger', icon: AlertCircle, iconColor: 'text-danger' }
case 'warning': case 'warning':
case 'priority': case 'priority':
return { bg: 'bg-amber-500/10', border: 'border-amber-500', icon: AlertTriangle, iconColor: 'text-amber-500' } return { bg: 'bg-amber-muted', border: 'border-amber', icon: AlertTriangle, iconColor: 'text-amber' }
case 'routine': case 'routine':
default: default:
return { bg: 'bg-blue-500/10', border: 'border-blue-500', icon: Info, iconColor: 'text-blue-500' } return { bg: 'bg-blue-muted', border: 'border-blue', icon: Info, iconColor: 'text-blue' }
} }
} }
@ -110,11 +102,11 @@ function AlertItem({ alert }: { alert: Alert }) {
const Icon = styles.icon const Icon = styles.icon
return ( return (
<div className={`p-3 rounded-lg ${styles.bg} border-l-2 ${styles.border} flex items-start gap-3`}> <div className={`p-3 ${styles.bg} border-l-2 ${styles.border} flex items-start gap-3`}>
<Icon size={16} className={styles.iconColor} /> <Icon size={16} className={styles.iconColor} />
<div className="flex-1 min-w-0"> <div className="flex-1 min-w-0">
<div className="text-sm text-slate-200">{alert.message}</div> <div className="text-sm font-sans text-slate-200">{alert.message}</div>
<div className="text-xs text-slate-500 mt-1">{alert.timestamp || 'Just now'}</div> <div className="text-xs font-mono text-slate-500 mt-1">{alert.timestamp || 'Just now'}</div>
</div> </div>
</div> </div>
) )
@ -122,31 +114,31 @@ function AlertItem({ alert }: { alert: Alert }) {
function SourceCard({ source }: { source: SourceHealth }) { function SourceCard({ source }: { source: SourceHealth }) {
const getStatusColor = () => { const getStatusColor = () => {
if (!source.is_loaded) return 'bg-red-500' if (!source.is_loaded) return 'bg-danger'
if (source.last_error) return 'bg-amber-500' if (source.last_error) return 'bg-amber'
return 'bg-green-500' return 'bg-blue'
} }
return ( return (
<div className="flex items-center gap-3 p-3 rounded-lg bg-bg-hover"> <div className="flex items-center gap-3 p-2 bg-bg-hover">
<div className={`w-2 h-2 rounded-full ${getStatusColor()}`} /> <div className={`w-2 h-2 rounded-full ${getStatusColor()}`} />
<div className="flex-1 min-w-0"> <div className="flex-1 min-w-0">
<div className="text-sm text-slate-200 truncate">{source.name}</div> <div className="text-sm font-sans font-medium text-slate-300 truncate">{source.name}</div>
<div className="text-xs text-slate-500">{source.node_count} nodes · {source.type}</div> <div className="text-xs font-sans text-slate-500">{source.node_count} nodes · {source.type}</div>
</div> </div>
</div> </div>
) )
} }
function StatCard({ icon: Icon, label, value, subvalue }: { icon: typeof Radio; label: string; value: string | number; subvalue?: string }) { function StatCard({ icon: Icon, label, value, subvalue, valueClass, subvalueClass }: { icon: typeof Radio; label: string; value: string | number; subvalue?: string; valueClass?: string; subvalueClass?: string }) {
return ( return (
<div className="bg-bg-card border border-border rounded-lg p-4"> <div className="bg-bg-card border border-border p-3">
<div className="flex items-center gap-2 text-slate-400 mb-2"> <div className="flex items-center gap-2 text-slate-400 mb-2">
<Icon size={14} /> <Icon size={14} />
<span className="text-xs">{label}</span> <span className="text-xs font-sans">{label}</span>
</div> </div>
<div className="font-mono text-xl text-slate-100">{value}</div> <div className={`font-mono text-xl ${valueClass || 'text-amber'}`}>{value}</div>
{subvalue && <div className="text-xs text-slate-500 mt-1">{subvalue}</div>} {subvalue && <div className={`text-xs font-sans mt-1 ${subvalueClass || 'text-slate-500'}`}>{subvalue}</div>}
</div> </div>
) )
} }
@ -157,12 +149,21 @@ function StatCard({ icon: Icon, label, value, subvalue }: { icon: typeof Radio;
// Band Conditions Card // Band Conditions Card
function BandConditionsCard({ bandConditions }: { bandConditions: BandConditionsStatus | null }) { function BandConditionsCard({ bandConditions }: { bandConditions: BandConditionsStatus | null }) {
const getRatingEmoji = (rating?: string) => { const getRatingColor = (rating?: string) => {
switch (rating) { switch (rating) {
case 'Good': return '🟢' // green circle case 'Good': return 'bg-blue'
case 'Fair': return '🟡' // yellow circle case 'Fair': return 'bg-amber-dim'
case 'Poor': return '🔴' // red circle case 'Poor': return 'bg-danger'
default: return '—' default: return 'bg-slate-600'
}
}
const getRatingTextColor = (rating?: string) => {
switch (rating) {
case 'Good': return 'text-blue'
case 'Fair': return 'text-amber-dim'
case 'Poor': return 'text-danger'
default: return 'text-slate-500'
} }
} }
@ -173,14 +174,14 @@ function BandConditionsCard({ bandConditions }: { bandConditions: BandConditions
if (!bandConditions?.enabled || !bandConditions?.ratings) { if (!bandConditions?.enabled || !bandConditions?.ratings) {
return ( return (
<div className="bg-bg-card border border-border rounded-lg p-4 flex flex-col h-full"> <div className="bg-bg-card border border-border p-4 flex flex-col h-full">
<h2 className="text-sm font-medium text-slate-400 mb-4 flex items-center gap-2"> <h2 className="text-sm font-sans font-medium text-slate-400 mb-3 flex items-center gap-2">
<Zap size={14} /> <Zap size={14} />
RF Propagation RF Propagation
</h2> </h2>
<div className="flex-1 flex items-center justify-center"> <div className="flex-1 flex items-center justify-center">
<div className="text-center py-8"> <div className="text-center py-8">
<div className="text-slate-400">No band conditions data</div> <div className="font-sans text-slate-400">No band conditions data</div>
</div> </div>
</div> </div>
</div> </div>
@ -190,32 +191,33 @@ function BandConditionsCard({ bandConditions }: { bandConditions: BandConditions
const bands = ['80-40m', '30-20m', '17-15m', '12-10m'] as const const bands = ['80-40m', '30-20m', '17-15m', '12-10m'] as const
return ( return (
<div className="bg-bg-card border border-border rounded-lg p-4 flex flex-col h-full"> <div className="bg-bg-card border border-border p-4 flex flex-col h-full">
<h2 className="text-sm font-medium text-slate-400 mb-4 flex items-center gap-2"> <h2 className="text-sm font-sans font-medium text-slate-400 mb-3 flex items-center gap-2">
<Zap size={14} /> <Zap size={14} />
RF Propagation RF Propagation
</h2> </h2>
{/* Slot label */} {/* Slot label */}
<div className="text-center mb-4"> <div className="text-center mb-3">
<span className="text-lg">{getSlotEmoji(bandConditions.slot_label)}</span> <span className="text-lg">{getSlotEmoji(bandConditions.slot_label)}</span>
<span className="text-sm text-slate-300 ml-2">{bandConditions.slot_label}</span> <span className="text-sm font-sans text-slate-300 ml-2">{bandConditions.slot_label}</span>
</div> </div>
{/* Band conditions header */} {/* Band conditions header */}
<div className="text-xs text-slate-500 mb-3 flex items-center gap-1"> <div className="text-xs font-sans text-slate-500 mb-2 flex items-center gap-1">
📡 Band Conditions: 📡 Band Conditions:
</div> </div>
{/* Band rows */} {/* Band rows */}
<div className="space-y-2"> <div className="space-y-1.5">
{bands.map(band => { {bands.map(band => {
const rating = bandConditions.ratings?.[band] const rating = bandConditions.ratings?.[band]
return ( return (
<div key={band} className="flex items-center justify-between px-2 py-1.5 rounded bg-bg-hover"> <div key={band} className="flex items-center justify-between px-2 py-1.5 bg-bg-hover">
<span className="text-sm font-mono text-slate-300">{band}</span> <span className="text-sm font-mono text-slate-300">{band}</span>
<span className="text-sm"> <span className="text-sm flex items-center gap-2">
{getRatingEmoji(rating)} <span className="text-slate-300 ml-1">{rating || '—'}</span> <span className={`inline-block w-2 h-2 rounded-full ${getRatingColor(rating)}`} />
<span className={`font-sans ${getRatingTextColor(rating)}`}>{rating || '—'}</span>
</span> </span>
</div> </div>
) )
@ -223,12 +225,12 @@ function BandConditionsCard({ bandConditions }: { bandConditions: BandConditions
</div> </div>
{/* Footer: source and time */} {/* Footer: source and time */}
<div className="mt-auto pt-3 border-t border-border text-xs text-slate-500"> <div className="mt-auto pt-3 border-t border-border text-xs font-sans text-slate-500">
{bandConditions.source && ( {bandConditions.source && (
<span>{bandConditions.source === 'swpc_local' ? 'SWPC' : 'HamQSL'}</span> <span>{bandConditions.source === 'swpc_local' ? 'SWPC' : 'HamQSL'}</span>
)} )}
{bandConditions.sent_at && ( {bandConditions.sent_at && (
<span className="ml-2"> <span className="font-mono ml-2">
{new Date(bandConditions.sent_at * 1000).toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })} {new Date(bandConditions.sent_at * 1000).toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })}
</span> </span>
)} )}
@ -299,18 +301,18 @@ function HepburnTropoCard() {
const regionLabel = TROPO_REGIONS.find(r => r.code === region)?.label || region const regionLabel = TROPO_REGIONS.find(r => r.code === region)?.label || region
return ( return (
<div className="bg-bg-card border border-border rounded-lg p-4 flex flex-col"> <div className="bg-bg-card border border-border p-4 flex flex-col">
<div className="flex items-center justify-between mb-3"> <div className="flex items-center justify-between mb-3">
<h2 className="text-sm font-medium text-slate-400 flex items-center gap-2"> <h2 className="text-sm font-sans font-medium text-slate-400 flex items-center gap-2">
<Radio size={14} /> <Radio size={14} />
Tropo Forecast (Hepburn) Tropo Forecast (Hepburn)
</h2> </h2>
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
{saving && <span className="text-xs text-slate-500">saving...</span>} {saving && <span className="text-xs font-sans text-slate-500">saving...</span>}
<select <select
value={region} value={region}
onChange={e => handleRegionChange(e.target.value)} onChange={e => handleRegionChange(e.target.value)}
className="text-xs bg-bg-hover border border-border rounded px-2 py-1 text-slate-300 focus:outline-none focus:border-slate-500" className="text-xs font-sans bg-bg-hover border border-border px-2 py-1 min-h-[36px] text-slate-300 focus:outline-none focus:border-amber"
> >
{TROPO_REGIONS.map(r => ( {TROPO_REGIONS.map(r => (
<option key={r.code} value={r.code}>{r.label}</option> <option key={r.code} value={r.code}>{r.label}</option>
@ -319,23 +321,23 @@ function HepburnTropoCard() {
</div> </div>
</div> </div>
<div className="text-xs text-slate-500 mb-2">{regionLabel} 6-day forecast</div> <div className="text-xs font-sans text-slate-500 mb-2">{regionLabel} 6-day forecast</div>
{imgError ? ( {imgError ? (
<div className="flex items-center justify-center h-48 text-slate-500 text-sm"> <div className="flex items-center justify-center h-48 text-slate-500 text-sm font-sans">
Failed to load forecast image Failed to load forecast image
</div> </div>
) : ( ) : (
<img <img
src={imgUrl} src={imgUrl}
alt={`Hepburn tropo forecast — ${regionLabel}`} alt={`Hepburn tropo forecast — ${regionLabel}`}
className="w-full rounded border border-border" className="w-full border border-border"
onError={() => setImgError(true)} onError={() => setImgError(true)}
/> />
)} )}
<div className="text-xs text-slate-600 mt-2"> <div className="text-xs font-sans text-slate-600 mt-2">
Source: <a href="https://www.dxinfocentre.com/tropo.html" target="_blank" rel="noopener noreferrer" className="text-slate-500 hover:text-slate-300">dxinfocentre.com</a> Source: <a href="https://www.dxinfocentre.com/tropo.html" target="_blank" rel="noopener noreferrer" className="text-blue hover:text-blue-dim">dxinfocentre.com</a>
</div> </div>
</div> </div>
) )
@ -343,33 +345,33 @@ function HepburnTropoCard() {
// Source icon mapping // Source icon mapping
const SOURCE_ICONS: Record<string, { icon: typeof Cloud; color: string; label: string }> = { const SOURCE_ICONS: Record<string, { icon: typeof Cloud; color: string; label: string }> = {
nws: { icon: Cloud, color: 'text-blue-400', label: 'NWS' }, nws: { icon: Cloud, color: 'text-blue', label: 'NWS' },
swpc: { icon: Sun, color: 'text-yellow-400', label: 'SWPC' }, swpc: { icon: Sun, color: 'text-amber', label: 'SWPC' },
ducting: { icon: Radio, color: 'text-cyan-400', label: 'Tropo' }, ducting: { icon: Radio, color: 'text-blue-dim', label: 'Tropo' },
nifc: { icon: Flame, color: 'text-orange-400', label: 'NIFC' }, nifc: { icon: Flame, color: 'text-danger', label: 'NIFC' },
firms: { icon: Satellite, color: 'text-red-400', label: 'FIRMS' }, firms: { icon: Satellite, color: 'text-danger-dim', label: 'FIRMS' },
avalanche: { icon: Mountain, color: 'text-slate-300', label: 'Avy' }, avalanche: { icon: Mountain, color: 'text-slate-300', label: 'Avy' },
usgs: { icon: Droplets, color: 'text-blue-300', label: 'USGS' }, usgs: { icon: Droplets, color: 'text-blue', label: 'USGS' },
traffic: { icon: Car, color: 'text-purple-400', label: 'Traffic' }, traffic: { icon: Car, color: 'text-slate-400', label: 'Traffic' },
roads: { icon: Construction, color: 'text-amber-400', label: '511' }, roads: { icon: Construction, color: 'text-amber-dim', label: '511' },
} }
// Severity badge colors (3-level system + legacy support) // Severity badge colors (3-level system + legacy support)
const SEVERITY_COLORS: Record<string, string> = { const SEVERITY_COLORS: Record<string, string> = {
// New 3-level system // New 3-level system
routine: 'bg-blue-500/20 text-blue-400 border-blue-500/30', routine: 'bg-slate-700/40 text-slate-400 border-slate-600/30',
priority: 'bg-amber-500/20 text-amber-400 border-amber-500/30', priority: 'bg-amber-muted text-amber border-amber/30',
immediate: 'bg-red-600/20 text-red-300 border-red-600/30', immediate: 'bg-danger-muted text-danger border-danger/30',
// NWS native (for raw event display) // NWS native (for raw event display)
info: 'bg-blue-500/20 text-blue-400 border-blue-500/30', info: 'bg-blue-muted text-blue border-blue/30',
advisory: 'bg-blue-500/20 text-blue-400 border-blue-500/30', advisory: 'bg-blue-muted text-blue border-blue/30',
moderate: 'bg-amber-500/20 text-amber-400 border-amber-500/30', moderate: 'bg-amber-muted text-amber-dim border-amber-dim/30',
watch: 'bg-amber-500/20 text-amber-400 border-amber-500/30', watch: 'bg-amber-muted text-amber border-amber/30',
warning: 'bg-amber-500/20 text-amber-400 border-amber-500/30', warning: 'bg-amber-muted text-amber border-amber/30',
severe: 'bg-red-500/20 text-red-400 border-red-500/30', severe: 'bg-danger-muted text-danger border-danger/30',
extreme: 'bg-red-600/20 text-red-300 border-red-600/30', extreme: 'bg-danger-muted text-danger border-danger/30',
critical: 'bg-red-600/20 text-red-300 border-red-600/30', critical: 'bg-danger-muted text-danger border-danger/30',
emergency: 'bg-red-700/20 text-red-200 border-red-700/30', emergency: 'bg-danger-muted text-danger border-danger/30',
} }
function EventFeedItem({ event, isLocal }: { event: EnvEvent; isLocal?: boolean }) { function EventFeedItem({ event, isLocal }: { event: EnvEvent; isLocal?: boolean }) {
@ -408,24 +410,24 @@ function EventFeedItem({ event, isLocal }: { event: EnvEvent; isLocal?: boolean
const subtitle = description ? description.split('. ')[0] : null const subtitle = description ? description.split('. ')[0] : null
return ( return (
<div className={`flex items-start gap-2 py-2 border-b border-border/50 last:border-0 ${isLocal ? 'border-l-2 border-l-blue-500 pl-2 -ml-2' : ''}`}> <div className={`flex items-start gap-2 py-2 border-b border-border/50 last:border-0 ${isLocal ? 'border-l-2 border-l-amber pl-2 -ml-2' : ''}`}>
<Icon size={14} className={`mt-0.5 flex-shrink-0 ${sourceConfig.color}`} /> <Icon size={14} className={`mt-0.5 flex-shrink-0 ${sourceConfig.color}`} />
<div className="flex-1 min-w-0"> <div className="flex-1 min-w-0">
<div className="flex items-center gap-2 mb-0.5"> <div className="flex items-center gap-2 mb-0.5">
<span className={`px-1.5 py-0.5 rounded text-xs border ${severityStyle}`}> <span className={`px-1.5 py-0.5 text-xs font-sans border ${severityStyle}`}>
{event.severity || 'info'} {event.severity || 'info'}
</span> </span>
{isLocal && ( {isLocal && (
<span className="px-1.5 py-0.5 rounded text-xs bg-blue-500/20 text-blue-400 border border-blue-500/30" title="LOCAL: event coordinates fall inside the mesh's monitoring area (per the adapter's bbox config on Environment) — operators in this region are directly affected."> <span className="px-1.5 py-0.5 text-xs font-sans bg-amber-muted text-amber border border-amber/30" title="LOCAL: event coordinates fall inside the mesh's monitoring area (per the adapter's bbox config on Environment) — operators in this region are directly affected.">
LOCAL LOCAL
</span> </span>
)} )}
<span className="text-xs text-slate-500">{sourceConfig.label}</span> <span className="text-xs font-sans text-slate-500">{sourceConfig.label}</span>
<span className="text-xs text-slate-600 ml-auto">{formatTime(event.fetched_at)}</span> <span className="text-xs font-mono text-slate-600 ml-auto">{formatTime(event.fetched_at)}</span>
</div> </div>
<div className={`text-sm truncate ${isLocal ? 'text-slate-100' : 'text-slate-300'}`}>{title}</div> <div className={`text-sm font-sans font-medium truncate ${isLocal ? 'text-slate-100' : 'text-slate-300'}`}>{title}</div>
{subtitle && ( {subtitle && (
<div className="text-xs text-slate-500 truncate mt-0.5">{subtitle}</div> <div className="text-xs font-sans text-slate-500 truncate mt-0.5">{subtitle}</div>
)} )}
</div> </div>
</div> </div>
@ -488,20 +490,20 @@ function LiveEventFeed({ events, envStatus, embedded }: { events: EnvEvent[]; en
) : ( ) : (
<div className="flex-1 flex items-center justify-center"> <div className="flex-1 flex items-center justify-center">
<div className="text-center py-8"> <div className="text-center py-8">
<CheckCircle size={24} className="text-green-500 mx-auto mb-2" /> <CheckCircle size={24} className="text-blue mx-auto mb-2" />
<div className="text-slate-400">No active events</div> <div className="font-sans text-slate-400">No active events</div>
<div className="text-xs text-slate-500">All clear</div> <div className="text-xs font-sans text-slate-500">All clear</div>
</div> </div>
</div> </div>
)} )}
{/* Feed health summary */} {/* Feed health summary */}
{feedSummary && ( {feedSummary && (
<div className={`text-xs mt-3 pt-3 border-t border-border ${feedSummary.errors.length > 0 ? 'text-amber-400' : 'text-slate-500'}`}> <div className={`text-xs font-sans mt-3 pt-3 border-t border-border ${feedSummary.errors.length > 0 ? 'text-danger' : 'text-slate-500'}`}>
{feedSummary.active} of {feedSummary.total} feeds active <span className="font-mono">{feedSummary.active}</span> of <span className="font-mono">{feedSummary.total}</span> feeds active
{feedSummary.secAgo !== null && ` · Last update ${feedSummary.secAgo}s ago`} {feedSummary.secAgo !== null && <> · Last update <span className="font-mono">{feedSummary.secAgo}s</span> ago</>}
{feedSummary.errors.length > 0 && ( {feedSummary.errors.length > 0 && (
<span className="text-amber-400"> · {feedSummary.errors.join(', ')}: error</span> <span className="text-danger"> · {feedSummary.errors.join(', ')}: error</span>
)} )}
</div> </div>
)} )}
@ -511,8 +513,8 @@ function LiveEventFeed({ events, envStatus, embedded }: { events: EnvEvent[]; en
if (embedded) return <div className="flex flex-col h-full">{content}</div> if (embedded) return <div className="flex flex-col h-full">{content}</div>
return ( return (
<div className="bg-bg-card border border-border rounded-lg p-4 flex flex-col h-full"> <div className="bg-bg-card border border-border p-4 flex flex-col h-full">
<h2 className="text-sm font-medium text-slate-400 mb-3 flex items-center gap-2"> <h2 className="text-sm font-sans font-medium text-slate-400 mb-3 flex items-center gap-2">
<Activity size={14} /> <Activity size={14} />
Live Event Feed Live Event Feed
</h2> </h2>
@ -582,7 +584,7 @@ export default function Dashboard() {
if (loading) { if (loading) {
return ( return (
<div className="flex items-center justify-center h-64"> <div className="flex items-center justify-center h-64">
<div className="text-slate-400">Loading...</div> <div className="font-sans text-slate-400">Loading...</div>
</div> </div>
) )
} }
@ -590,22 +592,22 @@ export default function Dashboard() {
if (error) { if (error) {
return ( return (
<div className="flex items-center justify-center h-64"> <div className="flex items-center justify-center h-64">
<div className="text-red-400">Error: {error}</div> <div className="font-sans text-danger">Error: {error}</div>
</div> </div>
) )
} }
return ( return (
<div className="space-y-6"> <div className="space-y-4">
{/* Top row: Health + Alerts + Stats */} {/* Top row: Health + Alerts + Stats */}
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6"> <div className="grid grid-cols-1 lg:grid-cols-3 gap-4">
{/* Mesh Health */} {/* Mesh Health */}
<div className="bg-bg-card border border-border rounded-lg p-6"> <div className="bg-bg-card border border-border p-4">
<h2 className="text-sm font-medium text-slate-400 mb-4">Mesh Health</h2> <h2 className="text-sm font-sans font-medium text-slate-400 mb-3">Mesh Health</h2>
{health && ( {health && (
<> <>
<HealthGauge health={health} /> <HealthGauge health={health} />
<div className="mt-6 space-y-3"> <div className="mt-4 space-y-2">
<PillarBar label="Infrastructure" value={health.pillars?.infrastructure ?? 0} /> <PillarBar label="Infrastructure" value={health.pillars?.infrastructure ?? 0} />
<PillarBar label="Utilization" value={health.pillars?.utilization ?? 0} /> <PillarBar label="Utilization" value={health.pillars?.utilization ?? 0} />
<PillarBar label="Coverage" value={health.pillars?.coverage ?? 0} /> <PillarBar label="Coverage" value={health.pillars?.coverage ?? 0} />
@ -617,26 +619,26 @@ export default function Dashboard() {
</div> </div>
{/* Alerts + Stats */} {/* Alerts + Stats */}
<div className="lg:col-span-2 space-y-6"> <div className="lg:col-span-2 space-y-4">
{/* Active Alerts / Event Feed — tabbed */} {/* Active Alerts / Event Feed — tabbed */}
<div className="bg-bg-card border border-border rounded-lg p-6"> <div className="bg-bg-card border border-border p-4">
<div className="flex items-center gap-1 mb-4"> <div className="flex items-center gap-4 mb-3 border-b border-border">
<button <button
onClick={() => setAlertTab('alerts')} onClick={() => setAlertTab('alerts')}
className={`px-3 py-1 rounded-full text-xs font-medium transition-colors ${ className={`py-2.5 -mb-px text-xs font-sans font-medium transition-colors border-b-2 ${
alertTab === 'alerts' alertTab === 'alerts'
? 'bg-slate-600 text-slate-100' ? 'border-amber text-slate-100'
: 'text-slate-400 hover:text-slate-300 hover:bg-bg-hover' : 'border-transparent text-slate-400 hover:text-slate-300'
}`} }`}
> >
Active Alerts Active Alerts
</button> </button>
<button <button
onClick={() => setAlertTab('feed')} onClick={() => setAlertTab('feed')}
className={`px-3 py-1 rounded-full text-xs font-medium transition-colors ${ className={`py-2.5 -mb-px text-xs font-sans font-medium transition-colors border-b-2 ${
alertTab === 'feed' alertTab === 'feed'
? 'bg-slate-600 text-slate-100' ? 'border-amber text-slate-100'
: 'text-slate-400 hover:text-slate-300 hover:bg-bg-hover' : 'border-transparent text-slate-400 hover:text-slate-300'
}`} }`}
> >
Event Feed Event Feed
@ -646,7 +648,7 @@ export default function Dashboard() {
{alertTab === 'alerts' ? ( {alertTab === 'alerts' ? (
<> <>
{alerts.length > 0 ? ( {alerts.length > 0 ? (
<div className="space-y-3 max-h-48 overflow-y-auto"> <div className="space-y-2 max-h-48 overflow-y-auto">
{alerts.map((alert, i) => ( {alerts.map((alert, i) => (
<AlertItem key={i} alert={alert} /> <AlertItem key={i} alert={alert} />
))} ))}
@ -663,22 +665,22 @@ export default function Dashboard() {
.slice(0, 5) .slice(0, 5)
if (highSeverityEnv.length > 0) { if (highSeverityEnv.length > 0) {
return ( return (
<div className="space-y-3 max-h-48 overflow-y-auto"> <div className="space-y-2 max-h-48 overflow-y-auto">
{highSeverityEnv.map((ev, i) => { {highSeverityEnv.map((ev, i) => {
const sevStyle = ev.severity === 'immediate' const sevStyle = ev.severity === 'immediate'
? { bg: 'bg-red-500/10', border: 'border-red-500', icon: AlertCircle, iconColor: 'text-red-500' } ? { bg: 'bg-danger-muted', border: 'border-danger', icon: AlertCircle, iconColor: 'text-danger' }
: { bg: 'bg-amber-500/10', border: 'border-amber-500', icon: AlertTriangle, iconColor: 'text-amber-500' } : { bg: 'bg-amber-muted', border: 'border-amber', icon: AlertTriangle, iconColor: 'text-amber' }
const Icon = sevStyle.icon const Icon = sevStyle.icon
return ( return (
<div key={ev.event_id || i} className={`p-3 rounded-lg ${sevStyle.bg} border-l-2 ${sevStyle.border} flex items-start gap-3`}> <div key={ev.event_id || i} className={`p-3 ${sevStyle.bg} border-l-2 ${sevStyle.border} flex items-start gap-3`}>
<Icon size={16} className={sevStyle.iconColor} /> <Icon size={16} className={sevStyle.iconColor} />
<div className="flex-1 min-w-0"> <div className="flex-1 min-w-0">
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<span className="px-1.5 py-0.5 rounded text-xs bg-slate-500/20 text-slate-400 border border-slate-500/30 font-mono">ENV</span> <span className="px-1.5 py-0.5 text-xs font-sans bg-slate-700/40 text-slate-400 border border-slate-600/30">ENV</span>
<span className="text-xs text-slate-500">{ev.severity}</span> <span className="text-xs font-sans text-slate-500">{ev.severity}</span>
</div> </div>
<div className="text-sm text-slate-200 mt-1">{ev.headline}</div> <div className="text-sm font-sans font-medium text-slate-200 mt-1">{ev.headline}</div>
<div className="text-xs text-slate-500 mt-1">{ev.source} · {new Date(ev.fetched_at * 1000).toLocaleTimeString()}</div> <div className="text-xs font-sans text-slate-500 mt-1">{ev.source} · <span className="font-mono">{new Date(ev.fetched_at * 1000).toLocaleTimeString()}</span></div>
</div> </div>
</div> </div>
) )
@ -688,8 +690,8 @@ export default function Dashboard() {
} }
return ( return (
<div className="flex items-center gap-2 text-slate-500 py-4"> <div className="flex items-center gap-2 text-slate-500 py-4">
<CheckCircle size={16} className="text-green-500" /> <CheckCircle size={16} className="text-blue" />
<span>No active alerts</span> <span className="font-sans">No active alerts</span>
</div> </div>
) )
})()} })()}
@ -700,28 +702,28 @@ export default function Dashboard() {
</div> </div>
{/* Quick Stats */} {/* Quick Stats */}
<div className="grid grid-cols-2 lg:grid-cols-4 gap-4"> <div className="grid grid-cols-2 lg:grid-cols-4 gap-3">
<StatCard icon={Radio} label="Nodes Online" value={health?.total_nodes || 0} subvalue={`${health?.unlocated_count || 0} unlocated`} /> <StatCard icon={Radio} label="Nodes Online" value={health?.total_nodes || 0} subvalue={`${health?.unlocated_count || 0} unlocated`} />
<StatCard icon={Cpu} label="Infrastructure" value={`${health?.infra_online || 0}/${health?.infra_total || 0}`} subvalue={health?.infra_online === health?.infra_total ? 'All online' : 'Some offline'} /> <StatCard icon={Cpu} label="Infrastructure" value={`${health?.infra_online || 0}/${health?.infra_total || 0}`} valueClass="text-blue" subvalue={health?.infra_online === health?.infra_total ? 'All online' : 'Some offline'} subvalueClass={health?.infra_online === health?.infra_total ? 'text-blue-dim' : 'text-danger'} />
<StatCard icon={Activity} label="Utilization" value={`${health?.util_percent?.toFixed(1) || 0}%`} subvalue={`${health?.flagged_nodes || 0} flagged`} /> <StatCard icon={Activity} label="Utilization" value={`${health?.util_percent?.toFixed(1) || 0}%`} subvalue={`${health?.flagged_nodes || 0} flagged`} />
<StatCard icon={MapPin} label="Regions" value={health?.total_regions || 0} subvalue={`${health?.battery_warnings || 0} battery warnings`} /> <StatCard icon={MapPin} label="Regions" value={health?.total_regions || 0} subvalue={`${health?.battery_warnings || 0} battery warnings`} />
</div> </div>
</div> </div>
</div> </div>
{/* Middle row: Sources + RF Propagation + Live Feed */} {/* Middle row: Sources + RF Propagation + Tropo */}
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6"> <div className="grid grid-cols-1 lg:grid-cols-3 gap-4">
{/* Mesh Sources */} {/* Mesh Sources */}
<div className="bg-bg-card border border-border rounded-lg p-6"> <div className="bg-bg-card border border-border p-4">
<h2 className="text-sm font-medium text-slate-400 mb-4">Mesh Sources ({sources.length})</h2> <h2 className="text-sm font-sans font-medium text-slate-400 mb-3">Mesh Sources (<span className="font-mono">{sources.length}</span>)</h2>
{sources.length > 0 ? ( {sources.length > 0 ? (
<div className="space-y-2"> <div className="space-y-1">
{sources.map((source, i) => ( {sources.map((source, i) => (
<SourceCard key={i} source={source} /> <SourceCard key={i} source={source} />
))} ))}
</div> </div>
) : ( ) : (
<div className="text-slate-500 py-4">No sources configured</div> <div className="font-sans text-slate-500 py-4">No sources configured</div>
)} )}
</div> </div>

View file

@ -4,20 +4,57 @@ export default {
content: ['./index.html', './src/**/*.{ts,tsx}'], content: ['./index.html', './src/**/*.{ts,tsx}'],
darkMode: 'class', darkMode: 'class',
theme: { theme: {
borderRadius: {
none: '0',
DEFAULT: '0',
sm: '0',
md: '0',
lg: '0',
xl: '0',
'2xl': '0',
full: '9999px',
},
extend: { extend: {
colors: { colors: {
bg: { bg: {
DEFAULT: '#0a0e17', DEFAULT: '#0a0e17',
card: '#111827', card: '#0f1520',
hover: '#1a2332', hover: '#162030',
elevated: '#1a2535',
}, },
border: { border: {
DEFAULT: '#1e2a3a', DEFAULT: '#1c2a3a',
light: '#2d3a4d', light: '#243345',
bright: '#2d4060',
},
amber: {
DEFAULT: '#f59e0b',
dim: '#d97706',
glow: '#fbbf24',
muted: 'rgba(245,158,11,0.15)',
},
blue: {
DEFAULT: '#38bdf8',
dim: '#0ea5e9',
muted: 'rgba(56,189,248,0.12)',
},
danger: {
DEFAULT: '#f97316',
dim: '#ea580c',
muted: 'rgba(249,115,22,0.15)',
},
slate: {
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
}, },
accent: '#3b82f6',
}, },
fontFamily: { fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'], mono: ['JetBrains Mono', 'monospace'],
}, },
}, },

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -8,8 +8,8 @@
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
<script type="module" crossorigin src="/assets/index-BUzOKXu1.js"></script> <script type="module" crossorigin src="/assets/index-Brbc1E6E.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-LGjCLdSa.css"> <link rel="stylesheet" crossorigin href="/assets/index-DSQXC5BZ.css">
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>