mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Update hook form * Update Form component * Update ChangePassword.tsx * Update custom types * Update SaveDashboardForm * Update form story * Update FieldArray.story.tsx * Bump hook form version * Update typescript to v4.2.4 * Update ForgottenPassword.tsx * Update LoginForm.tsx * Update SignupPage.tsx * Update VerifyEmail.tsx * Update AdminEditOrgPage.tsx * Update UserCreatePage.tsx * Update BasicSettings.tsx * Update NotificationChannelForm.tsx * Update NotificationChannelOptions.tsx * Update NotificationSettings.tsx * Update OptionElement.tsx * Update AlertRuleForm.tsx * Update AlertTypeStep.tsx * Update AnnotationsField.tsx * Update ConditionField.tsx * Update ConditionsStep.tsx * Update GroupAndNamespaceFields.tsx * Update LabelsField.tsx * Update QueryStep.tsx * Update RowOptionsForm.tsx * Update SaveDashboardAsForm.tsx * Update NewDashboardsFolder.tsx * Update ImportDashboardForm.tsx * Update DashboardImportPage.tsx * Update NewOrgPage.tsx * Update OrgProfile.tsx * Update UserInviteForm.tsx * Update PlaylistForm.tsx * Update ChangePasswordForm.tsx * Update UserProfileEditForm.tsx * Update TeamSettings.tsx * Update SignupInvited.tsx * Expose setValue from the Form * Update typescript to v4.2.4 * Remove ref from field props * Fix tests * Revert TS update * Use exact version * Update latest batch of changes * Reduce the number of strict TS errors * Fix defaults * more type error fixes * Update CreateTeam * fix folder picker in rule form * fixes for hook form 7 * Update docs Co-authored-by: Domas <domasx2@gmail.com>
117 lines
2.8 KiB
TypeScript
117 lines
2.8 KiB
TypeScript
import { isString } from 'lodash';
|
|
import config from 'app/core/config';
|
|
import { profiler } from 'app/core/core';
|
|
import { auto } from 'angular';
|
|
import {
|
|
AppEvent,
|
|
PanelEvents,
|
|
PanelPluginMeta,
|
|
AngularPanelMenuItem,
|
|
EventBusExtended,
|
|
EventBusSrv,
|
|
} from '@grafana/data';
|
|
import { DashboardModel } from '../dashboard/state';
|
|
|
|
export class PanelCtrl {
|
|
panel: any;
|
|
error: any;
|
|
dashboard: DashboardModel;
|
|
pluginName = '';
|
|
pluginId = '';
|
|
editorTabs: any;
|
|
$scope: any;
|
|
$injector: auto.IInjectorService;
|
|
$location: any;
|
|
$timeout: any;
|
|
editModeInitiated = false;
|
|
height: number;
|
|
width: number;
|
|
containerHeight: any;
|
|
events: EventBusExtended;
|
|
loading = false;
|
|
timing: any;
|
|
|
|
constructor($scope: any, $injector: auto.IInjectorService) {
|
|
this.panel = this.panel ?? $scope.$parent.panel;
|
|
this.dashboard = this.dashboard ?? $scope.$parent.dashboard;
|
|
this.$injector = $injector;
|
|
this.$location = $injector.get('$location');
|
|
this.$scope = $scope;
|
|
this.$timeout = $injector.get('$timeout');
|
|
this.editorTabs = [];
|
|
this.events = new EventBusSrv();
|
|
this.timing = {}; // not used but here to not break plugins
|
|
|
|
const plugin = config.panels[this.panel.type];
|
|
if (plugin) {
|
|
this.pluginId = plugin.id;
|
|
this.pluginName = plugin.name;
|
|
}
|
|
|
|
$scope.$on(PanelEvents.componentDidMount.name, () => this.panelDidMount());
|
|
}
|
|
|
|
panelDidMount() {
|
|
this.events.emit(PanelEvents.componentDidMount);
|
|
this.events.emit(PanelEvents.initialized);
|
|
this.dashboard.panelInitialized(this.panel);
|
|
}
|
|
|
|
renderingCompleted() {
|
|
profiler.renderingCompleted();
|
|
}
|
|
|
|
refresh() {
|
|
this.panel.refresh();
|
|
}
|
|
|
|
publishAppEvent<T>(event: AppEvent<T>, payload?: T) {
|
|
this.$scope.$root.appEvent(event, payload);
|
|
}
|
|
|
|
initEditMode() {
|
|
if (!this.editModeInitiated) {
|
|
this.editModeInitiated = true;
|
|
this.events.emit(PanelEvents.editModeInitialized);
|
|
}
|
|
}
|
|
|
|
addEditorTab(title: string, directiveFn: any, index?: number, icon?: any) {
|
|
const editorTab = { title, directiveFn, icon };
|
|
|
|
if (isString(directiveFn)) {
|
|
editorTab.directiveFn = () => {
|
|
return { templateUrl: directiveFn };
|
|
};
|
|
}
|
|
|
|
if (index) {
|
|
this.editorTabs.splice(index, 0, editorTab);
|
|
} else {
|
|
this.editorTabs.push(editorTab);
|
|
}
|
|
}
|
|
|
|
getExtendedMenu() {
|
|
const menu: AngularPanelMenuItem[] = [];
|
|
this.events.emit(PanelEvents.initPanelActions, menu);
|
|
return menu;
|
|
}
|
|
|
|
// Override in sub-class to add items before extended menu
|
|
async getAdditionalMenuItems(): Promise<any[]> {
|
|
return [];
|
|
}
|
|
|
|
otherPanelInFullscreenMode() {
|
|
return this.dashboard.otherPanelInFullscreen(this.panel);
|
|
}
|
|
|
|
render(payload?: any) {
|
|
this.events.emit(PanelEvents.render, payload);
|
|
}
|
|
|
|
// overriden from react
|
|
onPluginTypeChange = (plugin: PanelPluginMeta) => {};
|
|
}
|