mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* kindsys: Adapt to new PanelCfg schema interface * building locally * Remove Panel prefix in cue files * Regenerate * Update imports * fixup! Merge branch 'remove-panel-prefix' into sdboyer/redundant-panelcfg-prefixes * Fix formatting --------- Co-authored-by: Ryan McKinley <ryantxu@gmail.com> Co-authored-by: Tania B <yalyna.ts@gmail.com>
30 lines
1011 B
TypeScript
30 lines
1011 B
TypeScript
import { PanelModel } from '@grafana/data';
|
|
import { sharedSingleStatPanelChangedHandler, sharedSingleStatMigrationHandler } from '@grafana/ui';
|
|
|
|
import { Options } from './panelcfg.gen';
|
|
|
|
// This is called when the panel first loads
|
|
export const gaugePanelMigrationHandler = (panel: PanelModel<Options>): Partial<Options> => {
|
|
return sharedSingleStatMigrationHandler(panel);
|
|
};
|
|
|
|
// This is called when the panel changes from another panel
|
|
export const gaugePanelChangedHandler = (
|
|
panel: PanelModel<Partial<Options>>,
|
|
prevPluginId: string,
|
|
prevOptions: any
|
|
) => {
|
|
// This handles most config changes
|
|
const opts: Options = sharedSingleStatPanelChangedHandler(panel, prevPluginId, prevOptions);
|
|
|
|
// Changing from angular singlestat
|
|
if (prevPluginId === 'singlestat' && prevOptions.angular) {
|
|
const gauge = prevOptions.angular.gauge;
|
|
if (gauge) {
|
|
opts.showThresholdMarkers = gauge.thresholdMarkers;
|
|
opts.showThresholdLabels = gauge.thresholdLabels;
|
|
}
|
|
}
|
|
return opts;
|
|
};
|