Files
grafana/public/app/features/alerting/unified/components/panel-alerts-tab/NewRuleFromPanelButton.tsx

55 lines
1.7 KiB
TypeScript

import React, { FC } from 'react';
import { useSelector } from 'react-redux';
import { useLocation } from 'react-router-dom';
import { useAsync } from 'react-use';
import { urlUtil } from '@grafana/data';
import { Alert, Button, LinkButton } from '@grafana/ui';
import { DashboardModel, PanelModel } from 'app/features/dashboard/state';
import { StoreState } from 'app/types';
import { panelToRuleFormValues } from '../../utils/rule-form';
interface Props {
panel: PanelModel;
dashboard: DashboardModel;
className?: string;
}
export const NewRuleFromPanelButton: FC<Props> = ({ dashboard, panel, className }) => {
const templating = useSelector((state: StoreState) => {
return state.templating;
});
const location = useLocation();
const { loading, value: formValues } = useAsync(
() => panelToRuleFormValues(panel, dashboard),
// Templating variables are required to update formValues on each variable's change. It's used implicitly by the templating engine
[panel, dashboard, templating]
);
if (loading) {
return <Button disabled={true}>Create alert rule from this panel</Button>;
}
if (!formValues) {
return (
<Alert severity="info" title="No alerting capable query found">
Cannot create alerts from this panel because no query to an alerting capable datasource is found.
</Alert>
);
}
const ruleFormUrl = urlUtil.renderUrl('alerting/new', {
defaults: JSON.stringify(formValues),
returnTo: location.pathname + location.search,
});
return (
<LinkButton icon="bell" href={ruleFormUrl} className={className} data-testid="create-alert-rule-button">
Create alert rule from this panel
</LinkButton>
);
};