grafana/public/app/plugins/panel/stat/StatMigrations.ts
sam boyer 48b620231e
Kindsys: Unique names for composable kind TS types (#61928)
* Kindsys: Unique names for composable kind TS types

* Update all TS imports
2023-01-23 18:03:44 +00:00

48 lines
1.7 KiB
TypeScript

import { FieldColorModeId, FieldConfigSource, PanelModel } from '@grafana/data';
import { BigValueTextMode, BigValueGraphMode, BigValueColorMode } from '@grafana/schema';
import { sharedSingleStatPanelChangedHandler } from '@grafana/ui';
import { PanelOptions } from './panelcfg.gen';
// This is called when the panel changes from another panel
export const statPanelChangedHandler = (
panel: PanelModel<Partial<PanelOptions>> | any,
prevPluginId: string,
prevOptions: any
) => {
// This handles most config changes
const options = sharedSingleStatPanelChangedHandler(panel, prevPluginId, prevOptions) as PanelOptions;
// 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;
};