49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
|
|
import { Component } from 'react'
|
||
|
|
import type { ReactNode, ErrorInfo } from 'react'
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
children: ReactNode
|
||
|
|
fallback?: ReactNode
|
||
|
|
onError?: (error: Error, info: ErrorInfo) => void
|
||
|
|
}
|
||
|
|
|
||
|
|
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)
|
||
|
|
this.props.onError?.(error, info)
|
||
|
|
}
|
||
|
|
|
||
|
|
render() {
|
||
|
|
if (this.state.hasError) {
|
||
|
|
if (this.props.fallback) return this.props.fallback
|
||
|
|
return (
|
||
|
|
<div className="error-boundary-fallback" role="alert">
|
||
|
|
<h3>Something went wrong</h3>
|
||
|
|
<p className="muted">{this.state.error?.message || 'An unexpected error occurred'}</p>
|
||
|
|
<button
|
||
|
|
className="theme-toggle"
|
||
|
|
onClick={() => this.setState({ hasError: false, error: null })}
|
||
|
|
>
|
||
|
|
Try again
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
return this.props.children
|
||
|
|
}
|
||
|
|
}
|