mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Update typescript to v4.2.4 * Update @types/slate * Fix QueryVariableEditor.test.tsx * Fix search-related type errors * Fix Plugin pages type errors * Fix missing initializer errors * Update snapshot * Revert tsconfig changes
85 lines
2.0 KiB
TypeScript
85 lines
2.0 KiB
TypeScript
import coreModule from 'app/core/core_module';
|
|
import config from 'app/core/config';
|
|
import tinycolor from 'tinycolor2';
|
|
export class ThresholdFormCtrl {
|
|
panelCtrl: any;
|
|
panel: any;
|
|
disabled = false;
|
|
|
|
/** @ngInject */
|
|
constructor(private $scope: any) {}
|
|
|
|
$onInit() {
|
|
this.panel = this.panelCtrl.panel;
|
|
|
|
if (this.panel.alert) {
|
|
this.disabled = true;
|
|
}
|
|
|
|
const unbindDestroy = this.$scope.$on('$destroy', () => {
|
|
this.panelCtrl.editingThresholds = false;
|
|
this.panelCtrl.render();
|
|
unbindDestroy();
|
|
});
|
|
|
|
this.panelCtrl.editingThresholds = true;
|
|
}
|
|
|
|
addThreshold() {
|
|
this.panel.thresholds.push({
|
|
value: undefined,
|
|
colorMode: 'critical',
|
|
op: 'gt',
|
|
fill: true,
|
|
line: true,
|
|
yaxis: 'left',
|
|
});
|
|
this.panelCtrl.render();
|
|
}
|
|
|
|
removeThreshold(index: number) {
|
|
this.panel.thresholds.splice(index, 1);
|
|
this.panelCtrl.render();
|
|
}
|
|
|
|
render() {
|
|
this.panelCtrl.render();
|
|
}
|
|
|
|
onFillColorChange(index: number) {
|
|
return (newColor: string) => {
|
|
this.panel.thresholds[index].fillColor = newColor;
|
|
this.render();
|
|
};
|
|
}
|
|
|
|
onLineColorChange(index: number) {
|
|
return (newColor: string) => {
|
|
this.panel.thresholds[index].lineColor = newColor;
|
|
this.render();
|
|
};
|
|
}
|
|
|
|
onThresholdTypeChange(index: number) {
|
|
// Because of the ng-model binding, threshold's color mode is already set here
|
|
if (this.panel.thresholds[index].colorMode === 'custom') {
|
|
this.panel.thresholds[index].fillColor = tinycolor(config.theme.palette.blue85).setAlpha(0.2).toRgbString();
|
|
this.panel.thresholds[index].lineColor = tinycolor(config.theme.palette.blue77).setAlpha(0.6).toRgbString();
|
|
}
|
|
this.panelCtrl.render();
|
|
}
|
|
}
|
|
|
|
coreModule.directive('graphThresholdForm', () => {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'public/app/plugins/panel/graph/thresholds_form.html',
|
|
controller: ThresholdFormCtrl,
|
|
bindToController: true,
|
|
controllerAs: 'ctrl',
|
|
scope: {
|
|
panelCtrl: '=',
|
|
},
|
|
};
|
|
});
|