import React, { Component, ErrorInfo, ReactNode } from 'react'; import { Heading, Text, Button, Center, VStack } from '@chakra-ui/react'; import i18next from 'i18next'; interface ErrorBoundaryState { hasError: boolean; error: Error | null; errorInfo: ErrorInfo | null; } interface ErrorBoundaryProps { children: ReactNode; } class ErrorBoundary extends Component { constructor(props: ErrorBoundaryProps) { super(props); this.state = { hasError: false, error: null, errorInfo: null, }; } static getDerivedStateFromError(): Partial { return { hasError: true }; } componentDidCatch(error: Error, errorInfo: ErrorInfo): void { console.error('Error caught by ErrorBoundary:', error, errorInfo); console.error('4545'); this.setState({ error, errorInfo }); } render() { const { hasError } = this.state; if (hasError) { return (
{i18next.t('~:dry-wash.errorBoundary.title')} {i18next.t('~:dry-wash.errorBoundary.description')}
); } return this.props.children; } } export default ErrorBoundary;