1234567891011121314151617181920212223242526272829 |
- import { PanelModel } from '@grafana/data';
- import { sharedSingleStatPanelChangedHandler, sharedSingleStatMigrationHandler } from '@grafana/ui';
- import { GaugeOptions } from './types';
- // This is called when the panel first loads
- export const gaugePanelMigrationHandler = (panel: PanelModel<GaugeOptions>): Partial<GaugeOptions> => {
- return sharedSingleStatMigrationHandler(panel);
- };
- // This is called when the panel changes from another panel
- export const gaugePanelChangedHandler = (
- panel: PanelModel<Partial<GaugeOptions>> | any,
- prevPluginId: string,
- prevOptions: any
- ) => {
- // This handles most config changes
- const opts = sharedSingleStatPanelChangedHandler(panel, prevPluginId, prevOptions) as GaugeOptions;
- // 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;
- };
|