mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-04-28 06:19:46 +00:00
- Replace all `as any` casts in MCP advancedTools with typed helpers (toRecord, toString, toNumber) - Harden open-sse services: rateLimitManager, sessionManager, usage, roleNormalizer, signatureCache, comboMetrics - Improve responseSanitizer and responseTranslator type safety - Remove deprecated openai-responses request translator - Add dashboard pages: /a2a, /mcp, /auto-combo with live data - Improve error/loading/not-found pages with consistent design - Add root loading.tsx and typecheck tsconfig variants - Add check-t11-any-budget.mjs audit script
56 lines
2.3 KiB
TypeScript
56 lines
2.3 KiB
TypeScript
"use client";
|
||
|
||
/**
|
||
* Global Error Page — FASE-04 Error Handling
|
||
*
|
||
* Root-level error boundary for unrecoverable errors.
|
||
* This is the last resort — catches errors that the per-page
|
||
* error.js boundaries don't handle.
|
||
*/
|
||
|
||
interface GlobalErrorProps {
|
||
error: Error & { digest?: string };
|
||
reset: () => void;
|
||
}
|
||
|
||
export default function GlobalError({ error, reset }: GlobalErrorProps) {
|
||
return (
|
||
<html lang="en">
|
||
<body className="flex flex-col items-center justify-center min-h-screen p-6 bg-bg text-text-main font-[system-ui,-apple-system,sans-serif] text-center m-0">
|
||
<main role="alert" aria-live="assertive" className="flex flex-col items-center">
|
||
<div className="text-[64px] mb-4" aria-hidden="true">
|
||
⚠️
|
||
</div>
|
||
<h1 className="text-[28px] font-bold mb-2">Something went wrong</h1>
|
||
<p className="text-[15px] text-text-muted max-w-[400px] leading-relaxed mb-6">
|
||
An unexpected error occurred. This has been logged and our team will investigate.
|
||
</p>
|
||
{process.env.NODE_ENV === "development" && error?.message && (
|
||
<pre
|
||
className="p-4 rounded-lg bg-red-500/10 border border-red-500/30 text-red-500 text-xs max-w-[600px] overflow-auto text-left mb-6"
|
||
aria-label="Error details"
|
||
>
|
||
{error.message}
|
||
</pre>
|
||
)}
|
||
<div className="flex flex-col sm:flex-row gap-3">
|
||
<button
|
||
onClick={reset}
|
||
aria-label="Retry loading the page"
|
||
className="px-8 py-3 rounded-[10px] text-white border-none text-sm font-semibold cursor-pointer transition-transform duration-200 motion-reduce:transition-none motion-reduce:transform-none shadow-warm hover:-translate-y-0.5 bg-gradient-to-br from-primary to-primary-hover focus:outline-2 focus:outline-offset-2 focus:outline-primary"
|
||
>
|
||
Try Again
|
||
</button>
|
||
<a
|
||
href="/status"
|
||
className="px-8 py-3 rounded-[10px] text-sm font-semibold border border-[var(--color-border)] hover:bg-[var(--color-bg-alt)] no-underline focus:outline-2 focus:outline-offset-2 focus:outline-primary"
|
||
aria-label="Open system status"
|
||
>
|
||
System Status
|
||
</a>
|
||
</div>
|
||
</main>
|
||
</body>
|
||
</html>
|
||
);
|
||
}
|