feat: add error display, error boundaries, and toast notifications

This commit is contained in:
plenarius
2026-04-20 22:12:25 -04:00
parent 72027a3024
commit 3df79d3b17
4 changed files with 265 additions and 25 deletions
@@ -0,0 +1,45 @@
import { Component } from "react";
import type { ReactNode, ErrorInfo } from "react";
import { ErrorDisplay } from "./ErrorDisplay";
interface Props {
children: ReactNode;
}
interface State {
hasError: boolean;
error: Error | null;
}
export class ErrorBoundary extends Component<Props, State> {
constructor(props: Props) {
super(props);
this.state = { hasError: false, error: null };
}
static getDerivedStateFromError(error: Error): State {
return { hasError: true, error };
}
componentDidCatch(error: Error, info: ErrorInfo) {
console.error("ErrorBoundary caught:", error, info);
}
render() {
if (this.state.hasError && this.state.error) {
return (
<div className="flex h-full items-center justify-center p-8">
<div className="w-full max-w-lg">
<ErrorDisplay
title="Render Error"
message={this.state.error.message}
fullLog={this.state.error.stack}
onRetry={() => this.setState({ hasError: false, error: null })}
/>
</div>
</div>
);
}
return this.props.children;
}
}