grafana/public/app/features/alerting/AlertTab.tsx

221 lines
6.0 KiB
TypeScript
Raw Normal View History

import React, { PureComponent } from 'react';
import { hot } from 'react-hot-loader';
import { connect } from 'react-redux';
import { css } from 'emotion';
import { Alert, Button } from '@grafana/ui';
2019-01-04 05:38:50 -06:00
import { AngularComponent, getAngularLoader, getDataSourceSrv } from '@grafana/runtime';
2019-01-04 05:38:50 -06:00
import appEvents from 'app/core/app_events';
import { getAlertingValidationMessage } from './getAlertingValidationMessage';
2019-01-04 05:38:50 -06:00
import { EditorTabBody, EditorToolbarView } from '../dashboard/panel_editor/EditorTabBody';
2019-01-02 03:57:12 -06:00
import EmptyListCTA from 'app/core/components/EmptyListCTA/EmptyListCTA';
2019-01-02 08:22:22 -06:00
import StateHistory from './StateHistory';
2018-12-21 07:56:49 -06:00
import 'app/features/alerting/AlertTabCtrl';
2019-01-04 05:38:50 -06:00
import { DashboardModel } from '../dashboard/state/DashboardModel';
import { PanelModel } from '../dashboard/state/PanelModel';
import { TestRuleResult } from './TestRuleResult';
import { AppNotificationSeverity, StoreState } from 'app/types';
import { PanelEditorTabIds, getPanelEditorTab } from '../dashboard/panel_editor/state/reducers';
import { changePanelEditorTab } from '../dashboard/panel_editor/state/actions';
import { CoreEvents } from 'app/types';
interface Props {
angularPanel?: AngularComponent;
2019-01-02 08:22:22 -06:00
dashboard: DashboardModel;
2018-12-19 06:09:53 -06:00
panel: PanelModel;
changePanelEditorTab: typeof changePanelEditorTab;
}
interface State {
validatonMessage: string;
}
class UnConnectedAlertTab extends PureComponent<Props, State> {
element: any;
component: AngularComponent;
2018-12-21 07:56:49 -06:00
panelCtrl: any;
state: State = {
validatonMessage: '',
};
componentDidMount() {
if (this.shouldLoadAlertTab()) {
this.loadAlertTab();
}
}
componentDidUpdate(prevProps: Props) {
if (this.shouldLoadAlertTab()) {
this.loadAlertTab();
}
}
shouldLoadAlertTab() {
2019-01-02 03:57:12 -06:00
return this.props.angularPanel && this.element && !this.component;
}
componentWillUnmount() {
if (this.component) {
this.component.destroy();
}
}
async loadAlertTab() {
const { angularPanel, panel } = this.props;
const scope = angularPanel.getScope();
// When full page reloading in edit mode the angular panel has on fully compiled & instantiated yet
if (!scope.$$childHead) {
setTimeout(() => {
this.forceUpdate();
});
return;
}
2018-12-21 07:56:49 -06:00
this.panelCtrl = scope.$$childHead.ctrl;
const loader = getAngularLoader();
const template = '<alert-tab />';
2019-01-09 04:34:22 -06:00
const scopeProps = { ctrl: this.panelCtrl };
this.component = loader.load(this.element, scopeProps, template);
const validatonMessage = await getAlertingValidationMessage(
panel.transformations,
panel.targets,
getDataSourceSrv(),
panel.datasource
);
if (validatonMessage) {
this.setState({ validatonMessage });
}
}
2018-12-21 07:56:49 -06:00
stateHistory = (): EditorToolbarView => {
return {
2018-12-19 06:09:53 -06:00
title: 'State history',
render: () => {
2019-01-02 09:07:29 -06:00
return (
<StateHistory
dashboard={this.props.dashboard}
panelId={this.props.panel.id}
onRefresh={this.panelCtrl.refresh}
/>
);
2018-12-19 06:09:53 -06:00
},
};
2018-12-21 07:56:49 -06:00
};
deleteAlert = (): EditorToolbarView => {
const { panel } = this.props;
return {
title: 'Delete',
2019-01-04 05:38:50 -06:00
btnType: 'danger',
2018-12-21 07:56:49 -06:00
onClick: () => {
appEvents.emit(CoreEvents.showConfirmModal, {
2018-12-21 07:56:49 -06:00
title: 'Delete Alert',
text: 'Are you sure you want to delete this alert rule?',
text2: 'You need to save dashboard for the delete to take effect',
icon: 'fa-trash',
yesText: 'Delete',
onConfirm: () => {
delete panel.alert;
panel.thresholds = [];
this.panelCtrl.alertState = null;
this.panelCtrl.render();
2019-01-02 03:57:12 -06:00
this.forceUpdate();
2018-12-21 07:56:49 -06:00
},
});
2018-12-19 06:09:53 -06:00
},
};
2018-12-21 07:56:49 -06:00
};
renderTestRuleResult = () => {
2019-01-09 04:34:22 -06:00
const { panel, dashboard } = this.props;
2019-01-10 16:15:37 -06:00
return <TestRuleResult panelId={panel.id} dashboard={dashboard} />;
2019-01-09 04:34:22 -06:00
};
testRule = (): EditorToolbarView => ({
title: 'Test Rule',
render: () => this.renderTestRuleResult(),
2019-01-09 04:34:22 -06:00
});
2019-01-02 03:57:12 -06:00
onAddAlert = () => {
this.panelCtrl._enableAlert();
this.component.digest();
this.forceUpdate();
};
switchToQueryTab = () => {
const { changePanelEditorTab } = this.props;
changePanelEditorTab(getPanelEditorTab(PanelEditorTabIds.Queries));
};
renderValidationMessage = () => {
const { validatonMessage } = this.state;
return (
<div
className={css`
width: 508px;
margin: 128px auto;
`}
>
<h2>{validatonMessage}</h2>
<br />
<div className="gf-form-group">
<Button size={'md'} variant={'secondary'} icon="fa fa-arrow-left" onClick={this.switchToQueryTab}>
Go back to Queries
</Button>
</div>
</div>
);
};
2018-12-21 07:56:49 -06:00
render() {
const { alert, transformations } = this.props.panel;
const { validatonMessage } = this.state;
const hasTransformations = transformations && transformations.length > 0;
if (!alert && validatonMessage) {
return this.renderValidationMessage();
}
2018-12-19 06:09:53 -06:00
2019-01-09 04:34:22 -06:00
const toolbarItems = alert ? [this.stateHistory(), this.testRule(), this.deleteAlert()] : [];
2018-12-19 06:09:53 -06:00
2019-01-02 03:57:12 -06:00
const model = {
title: 'Panel has no alert rule defined',
buttonIcon: 'gicon gicon-alert',
2019-01-02 03:57:12 -06:00
onClick: this.onAddAlert,
buttonTitle: 'Create Alert',
};
return (
2018-12-19 06:09:53 -06:00
<EditorTabBody heading="Alert" toolbarItems={toolbarItems}>
2019-01-02 03:57:12 -06:00
<>
{alert && hasTransformations && (
<Alert
severity={AppNotificationSeverity.Error}
title="Transformations are not supported in alert queries"
/>
)}
2019-01-02 03:57:12 -06:00
<div ref={element => (this.element = element)} />
{!alert && !validatonMessage && <EmptyListCTA {...model} />}
2019-01-02 03:57:12 -06:00
</>
</EditorTabBody>
);
}
}
export const mapStateToProps = (state: StoreState) => ({});
const mapDispatchToProps = { changePanelEditorTab };
export const AlertTab = hot(module)(connect(mapStateToProps, mapDispatchToProps)(UnConnectedAlertTab));