Files
investment-sandbox/components/modules/macro/MacroBlueprintModal.tsx
2026-06-13 15:16:57 +02:00

100 lines
5.2 KiB
TypeScript

import React from 'react';
import { Settings, X } from 'lucide-react';
interface MacroBlueprintModalProps {
isOpen: boolean;
onClose: () => void;
}
export default function MacroBlueprintModal({ isOpen, onClose }: MacroBlueprintModalProps) {
React.useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => {
if (e.key === 'Escape') {
onClose();
}
};
if (isOpen) {
window.addEventListener('keydown', handleKeyDown);
}
return () => {
window.removeEventListener('keydown', handleKeyDown);
};
}, [isOpen, onClose]);
if (!isOpen) return null;
return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-slate-900/85 backdrop-blur-md p-4 sm:p-6 md:p-8 animate-fade-in">
<div className="bg-slate-900 border border-slate-800/80 rounded-3xl w-full max-w-4xl h-[80vh] flex flex-col overflow-hidden shadow-2xl relative text-slate-350">
{/* Modal Header */}
<div className="flex justify-between items-center px-6 py-4 bg-slate-950/45 border-b border-slate-800/60">
<div>
<h2 className="text-base font-bold bg-gradient-to-r from-blue-400 to-indigo-400 bg-clip-text text-transparent flex items-center gap-2">
<Settings className="w-5 h-5 text-blue-400" /> FRED Macro - Operational Blueprint
</h2>
<p className="text-[10px] text-slate-500 font-mono">System User Manual &amp; Interface Mechanics</p>
</div>
<button
onClick={onClose}
className="text-slate-400 hover:text-slate-200 bg-slate-950/50 border border-slate-800 hover:border-slate-700 p-2 rounded-xl transition-all cursor-pointer flex items-center justify-center"
aria-label="Close modal"
>
<X className="w-4 h-4" />
</button>
</div>
{/* Modal Body */}
<div className="flex-1 overflow-y-auto p-6 sm:p-8 space-y-8 text-slate-355 scrollbar-thin">
<div className="border-b border-slate-800/80 pb-3">
<h3 className="text-base font-bold text-slate-200">Macro Ingestion &amp; Thresholds</h3>
<p className="text-xs text-slate-400 mt-1">Operational details of Federal Reserve Economic Data (FRED) integration.</p>
</div>
{/* Core Mechanics */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
<div className="p-4 rounded-xl border border-slate-800/60 bg-slate-950/40 space-y-2">
<h4 className="text-xs font-bold text-blue-400 uppercase tracking-wider font-mono">1. FRED Ingestion channels</h4>
<p className="text-xs text-slate-400 leading-relaxed font-sans">
Queries Federal Reserve API endpoints to ingest 21 distinct macro credit, inflation, labor, and housing vectors. Bypasses external calls in `DEV_MODE` to read from local cache backups.
</p>
</div>
<div className="p-4 rounded-xl border border-slate-800/60 bg-slate-950/40 space-y-2">
<h4 className="text-xs font-bold text-blue-400 uppercase tracking-wider font-mono">2. Z-Score Normalization</h4>
<p className="text-xs text-slate-400 leading-relaxed font-sans">
Applies rolling historical mean and standard deviation scaling to convert raw indicators (e.g. housing starts, Delinquencies) into standardized Z-scores, indicating how far the current economy drifts from historical norms.
</p>
</div>
<div className="p-4 rounded-xl border border-slate-800/60 bg-slate-950/40 space-y-2">
<h4 className="text-xs font-bold text-blue-400 uppercase tracking-wider font-mono">3. Cockpit Alerts System</h4>
<p className="text-xs text-slate-400 leading-relaxed font-sans">
Standardizes warnings into green (safe), amber (watch), and flashing red (recession risk) lights. Evaluates interest rate curves, inflation velocity, credit delinquencies, and housing contractions.
</p>
</div>
</div>
{/* Interface Specifications */}
<div className="space-y-3">
<h3 className="text-sm font-bold text-slate-200 border-b border-slate-800 pb-2">Cockpit Status Alert Rationale</h3>
<div className="text-xs text-slate-400 space-y-3 leading-relaxed">
<p>
<strong className="text-blue-400 font-semibold">Inflation &amp; Consumer Health Card:</strong> Sets off a `RED` trigger if CPI inflation YoY climbs above 3.0%, credit card delinquencies exceed 4.5%, or personal savings fall below 3.0%.
</p>
<p>
<strong className="text-blue-400 font-semibold">Valuation &amp; Liquidity Card:</strong> Sets off `RED` if S&amp;P 500-to-GDP ratio (Buffett Indicator) rises past 150%, or the M2 money supply growth rate turns negative.
</p>
<p>
<strong className="text-blue-400 font-semibold">Yield Curve &amp; Credit Spread Card:</strong> Sets off `RED` if the 10Y-2Y yield curve spread inverts (spread &lt; 0.0%) or high-yield credit spreads rise past 5.0%.
</p>
</div>
</div>
</div>
</div>
</div>
);
}