grafana/public/app/plugins/panel/table/editor.ts
kay delaney 880fbcb09a
Chore/Tech debt: Remove (most) instances of $q angular service use (#20668)
* Chore/Tech debt: Remove (most) instances of $q angular service use
Removes instances where the angular $q service is used and replaces
it with native Promises.
2019-12-05 09:04:03 +00:00

97 lines
2.6 KiB
TypeScript

import _ from 'lodash';
import { transformers } from './transformers';
import { Column } from 'react-virtualized';
export class TablePanelEditorCtrl {
panel: any;
panelCtrl: any;
transformers: any;
fontSizes: any;
addColumnSegment: any;
getColumnNames: any;
canSetColumns: boolean;
columnsHelpMessage: string;
/** @ngInject */
constructor($scope: any, private uiSegmentSrv: any) {
$scope.editor = this;
this.panelCtrl = $scope.ctrl;
this.panel = this.panelCtrl.panel;
this.transformers = transformers;
this.fontSizes = ['80%', '90%', '100%', '110%', '120%', '130%', '150%', '160%', '180%', '200%', '220%', '250%'];
this.addColumnSegment = uiSegmentSrv.newPlusButton();
this.updateTransformHints();
}
updateTransformHints() {
this.canSetColumns = false;
this.columnsHelpMessage = '';
switch (this.panel.transform) {
case 'timeseries_aggregations': {
this.canSetColumns = true;
break;
}
case 'json': {
this.canSetColumns = true;
break;
}
case 'table': {
this.columnsHelpMessage = 'Columns and their order are determined by the data query';
}
}
}
getColumnOptions() {
if (!this.panelCtrl.dataRaw) {
return Promise.resolve([]);
}
const columns = this.transformers[this.panel.transform].getColumns(this.panelCtrl.dataRaw);
const segments = _.map(columns, (c: any) => this.uiSegmentSrv.newSegment({ value: c.text }));
return Promise.resolve(segments);
}
addColumn() {
const columns = transformers[this.panel.transform].getColumns(this.panelCtrl.dataRaw);
const column: any = _.find(columns, { text: this.addColumnSegment.value });
if (column) {
this.panel.columns.push(column);
this.render();
}
const plusButton = this.uiSegmentSrv.newPlusButton();
this.addColumnSegment.html = plusButton.html;
this.addColumnSegment.value = plusButton.value;
}
transformChanged() {
this.panel.columns = [];
if (this.panel.transform === 'timeseries_aggregations') {
this.panel.columns.push({ text: 'Avg', value: 'avg' });
}
this.updateTransformHints();
this.render();
}
render() {
this.panelCtrl.render();
}
removeColumn(column: Column) {
this.panel.columns = _.without(this.panel.columns, column);
this.panelCtrl.render();
}
}
export function tablePanelEditor(uiSegmentSrv: any) {
'use strict';
return {
restrict: 'E',
scope: true,
templateUrl: 'public/app/plugins/panel/table/editor.html',
controller: TablePanelEditorCtrl,
};
}