Spaces:
Runtime error
Runtime error
| "use client"; | |
| import React from 'react'; | |
| interface ErrorBoundaryProps { | |
| children: React.ReactNode; | |
| fallback?: React.ReactNode; | |
| } | |
| interface ErrorBoundaryState { | |
| hasError: boolean; | |
| error?: Error; | |
| } | |
| export class ErrorBoundary extends React.Component<ErrorBoundaryProps, ErrorBoundaryState> { | |
| constructor(props: ErrorBoundaryProps) { | |
| super(props); | |
| this.state = { hasError: false }; | |
| } | |
| static getDerivedStateFromError(error: Error): ErrorBoundaryState { | |
| return { hasError: true, error }; | |
| } | |
| componentDidCatch(error: Error, errorInfo: React.ErrorInfo) { | |
| console.error('Error caught by boundary:', error, errorInfo); | |
| } | |
| render() { | |
| if (this.state.hasError) { | |
| return this.props.fallback || ( | |
| <div className="flex items-center justify-center p-4"> | |
| <div className="text-center"> | |
| <h2 className="text-lg font-semibold mb-2">Something went wrong</h2> | |
| <p className="text-sm text-muted-foreground">Please refresh the page</p> | |
| </div> | |
| </div> | |
| ); | |
| } | |
| return this.props.children; | |
| } | |
| } |