mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
- use global range types - add ErrorBoundary around individual Explore components - fix table merge on empty results - fix TimePicker date parsing on ISO dates - fix TimePicker range string after relative move
35 lines
888 B
TypeScript
35 lines
888 B
TypeScript
import React, { Component } from 'react';
|
|
|
|
export default class ErrorBoundary extends Component<{}, any> {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = { error: null, errorInfo: null };
|
|
}
|
|
|
|
componentDidCatch(error, errorInfo) {
|
|
// Catch errors in any components below and re-render with error message
|
|
this.setState({
|
|
error: error,
|
|
errorInfo: errorInfo,
|
|
});
|
|
}
|
|
|
|
render() {
|
|
if (this.state.errorInfo) {
|
|
// Error path
|
|
return (
|
|
<div className="explore-container">
|
|
<h3>An unexpected error happened.</h3>
|
|
<details style={{ whiteSpace: 'pre-wrap' }}>
|
|
{this.state.error && this.state.error.toString()}
|
|
<br />
|
|
{this.state.errorInfo.componentStack}
|
|
</details>
|
|
</div>
|
|
);
|
|
}
|
|
// Normally, just render children
|
|
return this.props.children;
|
|
}
|
|
}
|