mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* ErrorBoundary: Support recovering from errors in PanelChrome & PanelRenderer * Rename recover to dependencies * Pushed an update that fixed test and adds new error mode to DebugPanel
30 lines
963 B
TypeScript
30 lines
963 B
TypeScript
import React, { Component } from 'react';
|
|
import { PanelProps } from '@grafana/data';
|
|
|
|
import { DebugPanelOptions, DebugMode } from './types';
|
|
import { EventBusLoggerPanel } from './EventBusLogger';
|
|
import { RenderInfoViewer } from './RenderInfoViewer';
|
|
import { CursorView } from './CursorView';
|
|
import { StateView } from './StateView';
|
|
|
|
type Props = PanelProps<DebugPanelOptions>;
|
|
|
|
export class DebugPanel extends Component<Props> {
|
|
render() {
|
|
const { options } = this.props;
|
|
|
|
switch (options.mode) {
|
|
case DebugMode.Events:
|
|
return <EventBusLoggerPanel eventBus={this.props.eventBus} />;
|
|
case DebugMode.Cursor:
|
|
return <CursorView eventBus={this.props.eventBus} />;
|
|
case DebugMode.State:
|
|
return <StateView {...this.props} />;
|
|
case DebugMode.ThrowError:
|
|
throw new Error('I failed you and for that i am deeply sorry');
|
|
default:
|
|
return <RenderInfoViewer {...this.props} />;
|
|
}
|
|
}
|
|
}
|