Files
grafana/public/app/features/inspector/InspectJSONTab.tsx
2022-09-09 14:35:52 -07:00

201 lines
6.3 KiB
TypeScript

import { t } from '@lingui/macro';
import React, { PureComponent } from 'react';
import AutoSizer from 'react-virtualized-auto-sizer';
import { firstValueFrom } from 'rxjs';
import { AppEvents, PanelData, SelectableValue, LoadingState } from '@grafana/data';
import { selectors } from '@grafana/e2e-selectors';
import { locationService } from '@grafana/runtime';
import { Button, CodeEditor, Field, Select } from '@grafana/ui';
import { appEvents } from 'app/core/core';
import { DashboardModel, PanelModel } from 'app/features/dashboard/state';
import { getPanelDataFrames } from '../dashboard/components/SupportSnapshot/utils';
import { getPanelInspectorStyles } from '../inspector/styles';
import { InspectTab } from './types';
enum ShowContent {
PanelJSON = 'panel',
PanelData = 'data',
DataFrames = 'frames',
}
const options: Array<SelectableValue<ShowContent>> = [
{
label: t({ id: 'dashboard.inspect-json.panel-json-label', message: 'Panel JSON' }),
description: t({
id: 'dashboard.inspect-json.panel-json-description',
message: 'The model saved in the dashboard JSON that configures how everything works.',
}),
value: ShowContent.PanelJSON,
},
{
label: t({ id: 'dashboard.inspect-json.panel-data-label', message: 'Panel data' }),
description: t({
id: 'dashboard.inspect-json.panel-data-description',
message: 'The raw model passed to the panel visualization',
}),
value: ShowContent.PanelData,
},
{
label: t({ id: 'dashboard.inspect-json.dataframe-label', message: 'DataFrame JSON (from Query)' }),
description: t({
id: 'dashboard.inspect-json.dataframe-description',
message: 'Raw data without transformations and field config applied. ',
}),
value: ShowContent.DataFrames,
},
];
interface Props {
onClose: () => void;
dashboard?: DashboardModel;
panel?: PanelModel;
data?: PanelData;
}
interface State {
show: ShowContent;
text: string;
}
export class InspectJSONTab extends PureComponent<Props, State> {
hasPanelJSON: boolean;
constructor(props: Props) {
super(props);
this.hasPanelJSON = !!(props.panel && props.dashboard);
// If we are in panel, we want to show PanelJSON, otherwise show DataFrames
this.state = {
show: this.hasPanelJSON ? ShowContent.PanelJSON : ShowContent.DataFrames,
text: this.hasPanelJSON ? getPrettyJSON(props.panel!.getSaveModel()) : getPrettyJSON(props.data),
};
}
onSelectChanged = async (item: SelectableValue<ShowContent>) => {
const show = await this.getJSONObject(item.value!);
const text = getPrettyJSON(show);
this.setState({ text, show: item.value! });
};
// Called onBlur
onTextChanged = (text: string) => {
this.setState({ text });
};
async getJSONObject(show: ShowContent) {
const { data, panel } = this.props;
if (show === ShowContent.PanelData) {
return data;
}
if (show === ShowContent.DataFrames) {
let d = data;
// do not include transforms and
if (panel && data?.state === LoadingState.Done) {
d = await firstValueFrom(
panel.getQueryRunner().getData({
withFieldConfig: false,
withTransforms: false,
})
);
}
return getPanelDataFrames(d);
}
if (this.hasPanelJSON && show === ShowContent.PanelJSON) {
return panel!.getSaveModel();
}
return { note: t({ id: 'dashboard.inspect-json.unknown', message: `Unknown Object: ${show}` }) };
}
onApplyPanelModel = () => {
const { panel, dashboard, onClose } = this.props;
if (this.hasPanelJSON) {
try {
if (!dashboard!.meta.canEdit) {
appEvents.emit(AppEvents.alertError, ['Unable to apply']);
} else {
const updates = JSON.parse(this.state.text);
dashboard!.shouldUpdateDashboardPanelFromJSON(updates, panel!);
panel!.restoreModel(updates);
panel!.refresh();
appEvents.emit(AppEvents.alertSuccess, ['Panel model updated']);
}
} catch (err) {
console.error('Error applying updates', err);
appEvents.emit(AppEvents.alertError, ['Invalid JSON text']);
}
onClose();
}
};
onShowSupportWizard = () => {
const queryParms = locationService.getSearch();
queryParms.set('inspectTab', InspectTab.Support.toString());
locationService.push('?' + queryParms.toString());
};
render() {
const { dashboard } = this.props;
const { show, text } = this.state;
const jsonOptions = this.hasPanelJSON ? options : options.slice(1, options.length);
const selected = options.find((v) => v.value === show);
const isPanelJSON = show === ShowContent.PanelJSON;
const canEdit = dashboard && dashboard.meta.canEdit;
const styles = getPanelInspectorStyles();
return (
<div className={styles.wrap}>
<div className={styles.toolbar} aria-label={selectors.components.PanelInspector.Json.content}>
<Field
label={t({ id: 'dashboard.inspect-json.select-source', message: 'Select source' })}
className="flex-grow-1"
>
<Select
inputId="select-source-dropdown"
options={jsonOptions}
value={selected}
onChange={this.onSelectChanged}
/>
</Field>
{this.hasPanelJSON && isPanelJSON && canEdit && (
<Button className={styles.toolbarItem} onClick={this.onApplyPanelModel}>
Apply
</Button>
)}
{show === ShowContent.DataFrames && (
<Button className={styles.toolbarItem} onClick={this.onShowSupportWizard}>
Support
</Button>
)}
</div>
<div className={styles.content}>
<AutoSizer disableWidth>
{({ height }) => (
<CodeEditor
width="100%"
height={height}
language="json"
showLineNumbers={true}
showMiniMap={(text && text.length) > 100}
value={text || ''}
readOnly={!isPanelJSON}
onBlur={this.onTextChanged}
/>
)}
</AutoSizer>
</div>
</div>
);
}
}
function getPrettyJSON(obj: any): string {
return JSON.stringify(obj, null, 2);
}