import { moeda } from "../format.js"; const COR = { high: "#ef4444", medium: "#f59e0b", low: "#eab308" }; const ROTULO = { high: "ALTA", medium: "MÉDIA", low: "BAIXA" }; function Detalhes({ alerta }) { const registros = (alerta.affected_records || []).slice(0, 8); if (!registros.length && !alerta.action_plan) return null; return (
Ver detalhes {registros.length > 0 && ( )} {alerta.action_plan &&
{alerta.action_plan}
}
); } export default function AlertList({ alertas }) { if (!alertas || !alertas.length) { return
✅ Nenhum alerta.
; } return ( <> {alertas.map((a, i) => { const cor = COR[a.severity] || "#9aa3b2"; const rotulo = ROTULO[a.severity] || "INFO"; return (
{rotulo} {a.title || ""}
{a.category || ""} {a.description ? " — " + a.description : ""}
{a.recommended_action && (
Ação: {a.recommended_action}
)}
); })} ); }