Summary: React 16 is not compatible with react-emotion 9 (it prints warnings, see also https://github.com/emotion-js/emotion/issues/644). So we should upgrade to 10. Reviewed By: mweststrate Differential Revision: D18905889 fbshipit-source-id: c00d2dbbadb1c08544632cb9bfcd63f2b1818a25
92 lines
2.4 KiB
TypeScript
92 lines
2.4 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import ErrorBlock from './ErrorBlock';
|
|
import {Component} from 'react';
|
|
import Heading from './Heading';
|
|
import Button from './Button';
|
|
import View from './View';
|
|
import styled from '@emotion/styled';
|
|
import React from 'react';
|
|
|
|
const ErrorBoundaryContainer = styled(View)({
|
|
overflow: 'auto',
|
|
padding: 10,
|
|
});
|
|
ErrorBoundaryContainer.displayName = 'ErrorBoundary:ErrorBoundaryContainer';
|
|
|
|
const ErrorBoundaryStack = styled(ErrorBlock)({
|
|
marginBottom: 10,
|
|
whiteSpace: 'pre',
|
|
});
|
|
ErrorBoundaryStack.displayName = 'ErrorBoundary:ErrorBoundaryStack';
|
|
|
|
type ErrorBoundaryProps = {
|
|
/** Function to dynamically generate the heading of the ErrorBox. */
|
|
buildHeading?: (err: Error) => string;
|
|
/** Heading of the ErrorBox. Used as an alternative to `buildHeading`. */
|
|
heading?: string;
|
|
/** Whether the stacktrace of the error is shown in the error box */
|
|
showStack?: boolean;
|
|
/** Code that might throw errors that will be catched */
|
|
children?: React.ReactNode;
|
|
};
|
|
|
|
type ErrorBoundaryState = {
|
|
error: Error | null | undefined;
|
|
};
|
|
|
|
/**
|
|
* Boundary catching errors and displaying an ErrorBlock instead.
|
|
*/
|
|
export default class ErrorBoundary extends Component<
|
|
ErrorBoundaryProps,
|
|
ErrorBoundaryState
|
|
> {
|
|
constructor(props: ErrorBoundaryProps, context: Object) {
|
|
super(props, context);
|
|
this.state = {error: null};
|
|
}
|
|
|
|
componentDidCatch(err: Error) {
|
|
console.error(err.toString(), 'ErrorBoundary');
|
|
this.setState({error: err});
|
|
}
|
|
|
|
clearError = () => {
|
|
this.setState({error: null});
|
|
};
|
|
|
|
render() {
|
|
const {error} = this.state;
|
|
if (error) {
|
|
const {buildHeading} = this.props;
|
|
let {heading} = this.props;
|
|
if (buildHeading) {
|
|
heading = buildHeading(error);
|
|
}
|
|
if (heading == null) {
|
|
heading = 'An error has occured';
|
|
}
|
|
|
|
return (
|
|
<ErrorBoundaryContainer grow={true}>
|
|
<Heading>{heading}</Heading>
|
|
{this.props.showStack !== false && (
|
|
<ErrorBoundaryStack error={error} />
|
|
)}
|
|
<Button onClick={this.clearError}>Clear error and try again</Button>
|
|
</ErrorBoundaryContainer>
|
|
);
|
|
} else {
|
|
return this.props.children || null;
|
|
}
|
|
}
|
|
}
|