Files
grafana/public/app/plugins/panel/histogram/HistogramPanel.tsx
Ashley Harrison 4ac248a512 Internationalisation: Mark up panel plugins for translations (#106068)
* config for panel plugin translations

* markup

* tweaks

* prettier

* use data-testid

* rename disable rule now it's been moved

* final markup
2025-05-29 18:13:25 +01:00

124 lines
3.4 KiB
TypeScript

import { useMemo } from 'react';
import {
histogramFieldsToFrame,
joinHistograms,
DataFrameType,
PanelProps,
buildHistogram,
cacheFieldDisplayNames,
getHistogramFields,
} from '@grafana/data';
import { Trans } from '@grafana/i18n';
import { TooltipDisplayMode, TooltipPlugin2, useTheme2 } from '@grafana/ui';
import { TooltipHoverMode } from '@grafana/ui/internal';
import { Histogram, getBucketSize } from './Histogram';
import { HistogramTooltip } from './HistogramTooltip';
import { Options } from './panelcfg.gen';
type Props = PanelProps<Options>;
export const HistogramPanel = ({ data, options, width, height }: Props) => {
const theme = useTheme2();
const histogram = useMemo(() => {
if (!data.series.length) {
return undefined;
}
// stamp origins for legend's calcs (from raw values)
data.series.forEach((frame, frameIndex) => {
frame.fields.forEach((field, fieldIndex) => {
field.state = {
...field.state,
origin: {
frameIndex,
fieldIndex,
},
};
});
});
cacheFieldDisplayNames(data.series);
if (
data.series.length === 1 ||
data.series.every(
(frame) => frame.meta?.type === DataFrameType.HeatmapCells || frame.meta?.type === DataFrameType.HeatmapRows
)
) {
const histograms = data.series.map((frame) => getHistogramFields(frame)).filter((hist) => hist != null);
if (histograms.length) {
return histogramFieldsToFrame(joinHistograms(histograms), theme);
}
}
const hist = buildHistogram(data.series, options, theme);
if (!hist) {
return undefined;
}
return histogramFieldsToFrame(hist, theme);
}, [data.series, options, theme]);
if (!histogram || !histogram.fields.length) {
return (
<div className="panel-empty">
<p>
<Trans i18nKey="histogram.histogram-panel.no-histogram-found-in-response">
No histogram found in response
</Trans>
</p>
</div>
);
}
const bucketSize = getBucketSize(histogram);
return (
<Histogram
options={options}
theme={theme}
legend={options.legend}
rawSeries={data.series}
structureRev={data.structureRev}
width={width}
height={height}
alignedFrame={histogram}
bucketSize={bucketSize}
bucketCount={options.bucketCount}
>
{(builder, alignedFrame, xMinOnlyFrame) => {
return (
<>
{options.tooltip.mode !== TooltipDisplayMode.None && (
<TooltipPlugin2
config={builder}
hoverMode={
options.tooltip.mode === TooltipDisplayMode.Single ? TooltipHoverMode.xOne : TooltipHoverMode.xAll
}
render={(u, dataIdxs, seriesIdx, isPinned = false) => {
return (
<HistogramTooltip
series={histogram}
xMinOnlyFrame={xMinOnlyFrame}
dataIdxs={dataIdxs}
seriesIdx={seriesIdx}
mode={options.tooltip.mode}
sortOrder={options.tooltip.sort}
isPinned={isPinned}
maxHeight={options.tooltip.maxHeight}
/>
);
}}
maxWidth={options.tooltip.maxWidth}
/>
)}
</>
);
}}
</Histogram>
);
};