Files
grafana/public/app/plugins/panel/stat/StatMigrations.ts
Ashley Harrison 0c44a6f9bb Chore: Improve typings 🧹 (#74599)
* various type fixes

* candlestick panel type fixes

* few more fixes

* some fixes

* more :)

* moar!

* undo change to SilencesFilter

* undo change to configureStore
2023-09-13 09:17:07 +01:00

48 lines
1.6 KiB
TypeScript

import { FieldColorModeId, FieldConfigSource, PanelModel } from '@grafana/data';
import { BigValueTextMode, BigValueGraphMode, BigValueColorMode } from '@grafana/schema';
import { sharedSingleStatPanelChangedHandler } from '@grafana/ui';
import { Options } from './panelcfg.gen';
// This is called when the panel changes from another panel
export const statPanelChangedHandler = (
panel: PanelModel<Partial<Options>> | any,
prevPluginId: string,
prevOptions: any
) => {
// This handles most config changes
const options: Options = sharedSingleStatPanelChangedHandler(panel, prevPluginId, prevOptions);
// Changing from angular singlestat
if (prevOptions.angular && (prevPluginId === 'singlestat' || prevPluginId === 'grafana-singlestat-panel')) {
const oldOptions = prevOptions.angular;
options.graphMode = BigValueGraphMode.None;
if (oldOptions.sparkline && oldOptions.sparkline.show) {
options.graphMode = BigValueGraphMode.Area;
}
if (oldOptions.colorBackground) {
options.colorMode = BigValueColorMode.Background;
} else if (oldOptions.colorValue) {
options.colorMode = BigValueColorMode.Value;
} else {
options.colorMode = BigValueColorMode.None;
if (oldOptions.sparkline?.lineColor && options.graphMode === BigValueGraphMode.Area) {
const cfg: FieldConfigSource = panel.fieldConfig ?? {};
cfg.defaults.color = {
mode: FieldColorModeId.Fixed,
fixedColor: oldOptions.sparkline.lineColor,
};
panel.fieldConfig = cfg;
}
}
if (oldOptions.valueName === 'name') {
options.textMode = BigValueTextMode.Name;
}
}
return options;
};