mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 15:04:02 +08:00

* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
130 lines
3.8 KiB
TypeScript
130 lines
3.8 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React, { FC, useEffect, useMemo, useState } from 'react';
|
|
import AutoSizer from 'react-virtualized-auto-sizer';
|
|
|
|
import { FieldConfigSource, GrafanaTheme2, PanelData, ThresholdsConfig } from '@grafana/data';
|
|
import { PanelRenderer } from '@grafana/runtime';
|
|
import { GraphFieldConfig, GraphTresholdsStyleMode } from '@grafana/schema';
|
|
import { PanelContext, PanelContextProvider, useStyles2 } from '@grafana/ui';
|
|
import appEvents from 'app/core/app_events';
|
|
import { PanelOptions } from 'app/plugins/panel/table/models.gen';
|
|
|
|
import { useVizHeight } from '../../hooks/useVizHeight';
|
|
import { SupportedPanelPlugins, PanelPluginsButtonGroup } from '../PanelPluginsButtonGroup';
|
|
|
|
interface Props {
|
|
data: PanelData;
|
|
currentPanel: SupportedPanelPlugins;
|
|
changePanel: (panel: SupportedPanelPlugins) => void;
|
|
thresholds: ThresholdsConfig;
|
|
onThresholdsChange: (thresholds: ThresholdsConfig) => void;
|
|
}
|
|
|
|
type PanelFieldConfig = FieldConfigSource<GraphFieldConfig>;
|
|
|
|
export const VizWrapper: FC<Props> = ({ data, currentPanel, changePanel, onThresholdsChange, thresholds }) => {
|
|
const [options, setOptions] = useState<PanelOptions>({
|
|
frameIndex: 0,
|
|
showHeader: true,
|
|
});
|
|
const vizHeight = useVizHeight(data, currentPanel, options.frameIndex);
|
|
const styles = useStyles2(getStyles(vizHeight));
|
|
|
|
const [fieldConfig, setFieldConfig] = useState<PanelFieldConfig>(defaultFieldConfig(thresholds, data));
|
|
|
|
useEffect(() => {
|
|
setFieldConfig((fieldConfig) => ({
|
|
...fieldConfig,
|
|
defaults: {
|
|
...fieldConfig.defaults,
|
|
thresholds: thresholds,
|
|
unit: defaultUnit(data),
|
|
custom: {
|
|
...fieldConfig.defaults.custom,
|
|
thresholdsStyle: {
|
|
mode: GraphTresholdsStyleMode.Line,
|
|
},
|
|
},
|
|
},
|
|
}));
|
|
}, [thresholds, setFieldConfig, data]);
|
|
|
|
const context: PanelContext = useMemo(
|
|
() => ({
|
|
eventBus: appEvents,
|
|
canEditThresholds: true,
|
|
onThresholdsChange: onThresholdsChange,
|
|
}),
|
|
[onThresholdsChange]
|
|
);
|
|
|
|
if (!options || !data) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className={styles.wrapper}>
|
|
<div className={styles.buttonGroup}>
|
|
<PanelPluginsButtonGroup onChange={changePanel} value={currentPanel} />
|
|
</div>
|
|
<AutoSizer>
|
|
{({ width }) => {
|
|
if (width === 0) {
|
|
return null;
|
|
}
|
|
return (
|
|
<div style={{ height: `${vizHeight}px`, width: `${width}px` }}>
|
|
<PanelContextProvider value={context}>
|
|
<PanelRenderer
|
|
height={vizHeight}
|
|
width={width}
|
|
data={data}
|
|
pluginId={currentPanel}
|
|
title="title"
|
|
onOptionsChange={setOptions}
|
|
options={options}
|
|
fieldConfig={fieldConfig}
|
|
/>
|
|
</PanelContextProvider>
|
|
</div>
|
|
);
|
|
}}
|
|
</AutoSizer>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const getStyles = (visHeight: number) => (theme: GrafanaTheme2) => ({
|
|
wrapper: css`
|
|
padding: 0 ${theme.spacing(2)};
|
|
height: ${visHeight + theme.spacing.gridSize * 4}px;
|
|
`,
|
|
buttonGroup: css`
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
`,
|
|
});
|
|
|
|
function defaultUnit(data: PanelData): string | undefined {
|
|
return data.series[0]?.fields.find((field) => field.type === 'number')?.config.unit;
|
|
}
|
|
|
|
function defaultFieldConfig(thresholds: ThresholdsConfig, data: PanelData): PanelFieldConfig {
|
|
if (!thresholds) {
|
|
return { defaults: {}, overrides: [] };
|
|
}
|
|
|
|
return {
|
|
defaults: {
|
|
thresholds: thresholds,
|
|
unit: defaultUnit(data),
|
|
custom: {
|
|
thresholdsStyle: {
|
|
mode: GraphTresholdsStyleMode.Line,
|
|
},
|
|
},
|
|
},
|
|
overrides: [],
|
|
};
|
|
}
|