-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathErrorBoundary.tsx
45 lines (37 loc) · 1.05 KB
/
ErrorBoundary.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React, { Component, ErrorInfo, ReactNode } from 'react';
interface Props {
children: ReactNode;
}
interface State {
hasError: boolean;
error?: Error;
}
class ErrorBoundary extends Component<Props, State> {
// eslint-disable-next-line react/state-in-constructor
public state: State = {
hasError: false,
error: undefined,
};
public static getDerivedStateFromError(err: Error): State {
// Update state so the next render will show the fallback UI.
return { hasError: true, error: err };
}
public componentDidCatch(error: Error, errorInfo: ErrorInfo) {
// eslint-disable-next-line no-console
console.error('Uncaught exception: ', error, errorInfo);
}
public render() {
const { hasError, error } = this.state;
if (hasError) {
return (
<>
<h1>Uncaught Exception: Refresh Browser to Continue</h1>
<p>{error?.message}</p>
</>
);
}
// eslint-disable-next-line react/destructuring-assignment
return this.props.children;
}
}
export default ErrorBoundary;