| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- import React, { PureComponent } from 'react';
- import classNames from 'classnames';
- import { QueriesTab } from './QueriesTab';
- import { VisualizationTab } from './VisualizationTab';
- import { GeneralTab } from './GeneralTab';
- import { AlertTab } from '../../alerting/AlertTab';
- import config from 'app/core/config';
- import { store } from 'app/store/store';
- import { updateLocation } from 'app/core/actions';
- import { AngularComponent } from 'app/core/services/AngularLoader';
- import { PanelModel } from '../state/PanelModel';
- import { DashboardModel } from '../state/DashboardModel';
- import { PanelPlugin } from 'app/types/plugins';
- import { Tooltip } from '@grafana/ui';
- interface PanelEditorProps {
- panel: PanelModel;
- dashboard: DashboardModel;
- plugin: PanelPlugin;
- angularPanel?: AngularComponent;
- onTypeChanged: (newType: PanelPlugin) => void;
- }
- interface PanelEditorTab {
- id: string;
- text: string;
- }
- export class PanelEditor extends PureComponent<PanelEditorProps> {
- constructor(props) {
- super(props);
- }
- onChangeTab = (tab: PanelEditorTab) => {
- store.dispatch(
- updateLocation({
- query: { tab: tab.id },
- partial: true,
- })
- );
- this.forceUpdate();
- };
- renderCurrentTab(activeTab: string) {
- const { panel, dashboard, onTypeChanged, plugin, angularPanel } = this.props;
- switch (activeTab) {
- case 'advanced':
- return <GeneralTab panel={panel} />;
- case 'queries':
- return <QueriesTab panel={panel} dashboard={dashboard} />;
- case 'alert':
- return <AlertTab angularPanel={angularPanel} dashboard={dashboard} panel={panel} />;
- case 'visualization':
- return (
- <VisualizationTab
- panel={panel}
- dashboard={dashboard}
- plugin={plugin}
- onTypeChanged={onTypeChanged}
- angularPanel={angularPanel}
- />
- );
- default:
- return null;
- }
- }
- render() {
- const { plugin } = this.props;
- let activeTab = store.getState().location.query.tab || 'queries';
- const tabs: PanelEditorTab[] = [
- { id: 'queries', text: 'Queries' },
- { id: 'visualization', text: 'Visualization' },
- { id: 'advanced', text: 'Panel Options' },
- ];
- // handle panels that do not have queries tab
- if (plugin.exports.PanelCtrl) {
- if (!plugin.exports.PanelCtrl.prototype.onDataReceived) {
- // remove queries tab
- tabs.shift();
- // switch tab
- if (activeTab === 'queries') {
- activeTab = 'visualization';
- }
- }
- }
- if (config.alertingEnabled && plugin.id === 'graph') {
- tabs.push({
- id: 'alert',
- text: 'Alert',
- });
- }
- return (
- <div className="panel-editor-container__editor">
- <div className="panel-editor-tabs">
- {tabs.map(tab => {
- return <TabItem tab={tab} activeTab={activeTab} onClick={this.onChangeTab} key={tab.id} />;
- })}
- </div>
- <div className="panel-editor__right">{this.renderCurrentTab(activeTab)}</div>
- </div>
- );
- }
- }
- interface TabItemParams {
- tab: PanelEditorTab;
- activeTab: string;
- onClick: (tab: PanelEditorTab) => void;
- }
- function TabItem({ tab, activeTab, onClick }: TabItemParams) {
- const tabClasses = classNames({
- 'panel-editor-tabs__link': true,
- active: activeTab === tab.id,
- });
- return (
- <div className="panel-editor-tabs__item" onClick={() => onClick(tab)}>
- <a className={tabClasses}>
- <Tooltip content={`${tab.text}`} placement="auto">
- <i className={`gicon gicon-${tab.id}${activeTab === tab.id ? '-active' : ''}`} />
- </Tooltip>
- </a>
- </div>
- );
- }
|