mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Refactor: Makes PanelEditor use state and shows validation message on AlerTab * Refactor: Makes validation message nicer looking * Refactor: Changes imports * Refactor: Removes conditional props * Refactor: Changes after feedback from PR review * Refactor: Removes unused action
147 lines
4.4 KiB
TypeScript
147 lines
4.4 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import classNames from 'classnames';
|
|
import { hot } from 'react-hot-loader';
|
|
import { connect } from 'react-redux';
|
|
import { Tooltip, PanelPlugin, PanelPluginMeta } from '@grafana/ui';
|
|
import { AngularComponent, config } from '@grafana/runtime';
|
|
|
|
import { QueriesTab } from './QueriesTab';
|
|
import VisualizationTab from './VisualizationTab';
|
|
import { GeneralTab } from './GeneralTab';
|
|
import { AlertTab } from '../../alerting/AlertTab';
|
|
import { PanelModel } from '../state/PanelModel';
|
|
import { DashboardModel } from '../state/DashboardModel';
|
|
import { StoreState } from '../../../types';
|
|
import { PanelEditorTabIds, PanelEditorTab } from './state/reducers';
|
|
import { refreshPanelEditor, changePanelEditorTab, panelEditorCleanUp } from './state/actions';
|
|
|
|
interface PanelEditorProps {
|
|
panel: PanelModel;
|
|
dashboard: DashboardModel;
|
|
plugin: PanelPlugin;
|
|
angularPanel?: AngularComponent;
|
|
onPluginTypeChange: (newType: PanelPluginMeta) => void;
|
|
activeTab: PanelEditorTabIds;
|
|
tabs: PanelEditorTab[];
|
|
refreshPanelEditor: typeof refreshPanelEditor;
|
|
panelEditorCleanUp: typeof panelEditorCleanUp;
|
|
changePanelEditorTab: typeof changePanelEditorTab;
|
|
}
|
|
|
|
class UnConnectedPanelEditor extends PureComponent<PanelEditorProps> {
|
|
constructor(props: PanelEditorProps) {
|
|
super(props);
|
|
}
|
|
|
|
componentDidMount(): void {
|
|
this.refreshFromState();
|
|
}
|
|
|
|
componentWillUnmount(): void {
|
|
const { panelEditorCleanUp } = this.props;
|
|
panelEditorCleanUp();
|
|
}
|
|
|
|
refreshFromState = (meta?: PanelPluginMeta) => {
|
|
const { refreshPanelEditor, plugin } = this.props;
|
|
meta = meta || plugin.meta;
|
|
|
|
refreshPanelEditor({
|
|
hasQueriesTab: !meta.skipDataQuery,
|
|
usesGraphPlugin: meta.id === 'graph',
|
|
alertingEnabled: config.alertingEnabled,
|
|
});
|
|
};
|
|
|
|
onChangeTab = (tab: PanelEditorTab) => {
|
|
const { changePanelEditorTab } = this.props;
|
|
// Angular Query Components can potentially refresh the PanelModel
|
|
// onBlur so this makes sure we change tab after that
|
|
setTimeout(() => changePanelEditorTab(tab), 10);
|
|
};
|
|
|
|
onPluginTypeChange = (newType: PanelPluginMeta) => {
|
|
const { onPluginTypeChange } = this.props;
|
|
onPluginTypeChange(newType);
|
|
|
|
this.refreshFromState(newType);
|
|
};
|
|
|
|
renderCurrentTab(activeTab: string) {
|
|
const { panel, dashboard, 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}
|
|
onPluginTypeChange={this.onPluginTypeChange}
|
|
angularPanel={angularPanel}
|
|
/>
|
|
);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { activeTab, tabs } = this.props;
|
|
|
|
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>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const mapStateToProps = (state: StoreState) => ({
|
|
activeTab: state.location.query.tab || PanelEditorTabIds.Queries,
|
|
tabs: state.panelEditor.tabs,
|
|
});
|
|
|
|
const mapDispatchToProps = { refreshPanelEditor, panelEditorCleanUp, changePanelEditorTab };
|
|
|
|
export const PanelEditor = hot(module)(
|
|
connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(UnConnectedPanelEditor)
|
|
);
|
|
|
|
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} aria-label={`${tab.text} tab button`}>
|
|
<Tooltip content={`${tab.text}`} placement="auto">
|
|
<i className={`gicon gicon-${tab.id}${activeTab === tab.id ? '-active' : ''}`} />
|
|
</Tooltip>
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|