mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 11:02:13 +08:00
49 lines
1.6 KiB
TypeScript
49 lines
1.6 KiB
TypeScript
import React, { useCallback } from 'react';
|
|
import { TooltipPlugin, ZoomPlugin, GraphNG, GraphNGLegendEvent } from '@grafana/ui';
|
|
import { PanelProps } from '@grafana/data';
|
|
import { Options } from './types';
|
|
import { AnnotationsPlugin } from './plugins/AnnotationsPlugin';
|
|
import { ExemplarsPlugin } from './plugins/ExemplarsPlugin';
|
|
import { hideSeriesConfigFactory } from './hideSeriesConfigFactory';
|
|
import { ContextMenuPlugin } from './plugins/ContextMenuPlugin';
|
|
|
|
interface GraphPanelProps extends PanelProps<Options> {}
|
|
|
|
export const GraphPanel: React.FC<GraphPanelProps> = ({
|
|
data,
|
|
timeRange,
|
|
timeZone,
|
|
width,
|
|
height,
|
|
options,
|
|
fieldConfig,
|
|
onChangeTimeRange,
|
|
onFieldConfigChange,
|
|
replaceVariables,
|
|
}) => {
|
|
const onLegendClick = useCallback(
|
|
(event: GraphNGLegendEvent) => {
|
|
onFieldConfigChange(hideSeriesConfigFactory(event, fieldConfig, data.series));
|
|
},
|
|
[fieldConfig, onFieldConfigChange, data.series]
|
|
);
|
|
|
|
return (
|
|
<GraphNG
|
|
data={data.series}
|
|
timeRange={timeRange}
|
|
timeZone={timeZone}
|
|
width={width}
|
|
height={height}
|
|
legend={options.legend}
|
|
onLegendClick={onLegendClick}
|
|
>
|
|
<TooltipPlugin mode={options.tooltipOptions.mode as any} timeZone={timeZone} />
|
|
<ZoomPlugin onZoom={onChangeTimeRange} />
|
|
<ContextMenuPlugin timeZone={timeZone} replaceVariables={replaceVariables} />
|
|
{data.annotations ? <ExemplarsPlugin exemplars={data.annotations} timeZone={timeZone} /> : <></>}
|
|
{data.annotations ? <AnnotationsPlugin annotations={data.annotations} timeZone={timeZone} /> : <></>}
|
|
</GraphNG>
|
|
);
|
|
};
|