1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-02 17:41:37 +07:00
verdaccio-ui/src/App/AppError.tsx
2019-10-10 22:20:05 +02:00

39 lines
867 B
TypeScript

import React, { Component } from 'react';
export interface ErrorProps {
children: any;
}
export interface ErrorAppState {
hasError: boolean;
error: Error | null;
info: object | null;
}
export default class ErrorBoundary extends Component<ErrorProps, ErrorAppState> {
constructor(props: ErrorProps) {
super(props);
this.state = { hasError: false, error: null, info: null };
}
public componentDidCatch(error: Error, info: object) {
this.setState({ hasError: true, error, info });
}
public render(): JSX.Element {
const { hasError, error, info } = this.state;
const { children } = this.props;
if (hasError) {
return (
<>
<h1>{'Something went wrong.'}</h1>
<p>{`error: ${error}`}</p>
<p>{`info: ${JSON.stringify(info)}`}</p>
</>
);
}
return children;
}
}