infra-report/src/components/ErrorBoundary.tsx

38 lines
975 B
TypeScript

'use client';
import { Component, ReactNode } from 'react';
interface Props {
children: ReactNode;
fallback?: string;
}
interface State {
hasError: boolean;
error: Error | null;
}
export default 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 };
}
render() {
if (this.state.hasError) {
return (
<div className="bg-red-50 border border-red-200 rounded-lg p-4">
<p className="text-red-800 text-sm font-medium">{this.props.fallback || '컴포넌트 렌더링 오류'}</p>
<p className="text-red-600 text-xs mt-1">{this.state.error?.message}</p>
<pre className="text-red-500 text-xs mt-2 overflow-auto max-h-40">{this.state.error?.stack}</pre>
</div>
);
}
return this.props.children;
}
}