123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- import {RouteComponentProps} from 'react-router';
- import {addErrorMessage} from 'sentry/actionCreators/indicator';
- import {Alert} from 'sentry/components/alert';
- import {t} from 'sentry/locale';
- import {Organization, Project} from 'sentry/types';
- import {metric} from 'sentry/utils/analytics';
- import routeTitleGen from 'sentry/utils/routeTitle';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import RuleForm from 'sentry/views/alerts/rules/metric/ruleForm';
- import {MetricRule} from 'sentry/views/alerts/rules/metric/types';
- import DeprecatedAsyncView from 'sentry/views/deprecatedAsyncView';
- type RouteParams = {
- projectId: string;
- ruleId: string;
- };
- type Props = {
- onChangeTitle: (data: string) => void;
- organization: Organization;
- project: Project;
- userTeamIds: string[];
- } & RouteComponentProps<RouteParams, {}>;
- type State = {
- actions: Map<string, any>;
- rule: MetricRule; // This is temp
- } & DeprecatedAsyncView['state'];
- class MetricRulesEdit extends DeprecatedAsyncView<Props, State> {
- getDefaultState() {
- return {
- ...super.getDefaultState(),
- actions: new Map(),
- };
- }
- getTitle(): string {
- const {organization, project} = this.props;
- const {rule} = this.state;
- const ruleName = rule?.name;
- return routeTitleGen(
- ruleName ? t('Alert - %s', ruleName) : '',
- organization.slug,
- false,
- project?.slug
- );
- }
- getEndpoints(): ReturnType<DeprecatedAsyncView['getEndpoints']> {
- const {organization} = this.props;
- const {ruleId} = this.props.params;
- return [['rule', `/organizations/${organization.slug}/alert-rules/${ruleId}/`]];
- }
- onRequestSuccess({stateKey, data}) {
- if (stateKey === 'rule' && data.name) {
- this.props.onChangeTitle(data.name);
- }
- }
- onLoadAllEndpointsSuccess() {
- const {rule} = this.state;
- if (rule?.errors) {
- (rule?.errors || []).map(({detail}) => addErrorMessage(detail, {append: true}));
- }
- }
- handleSubmitSuccess = () => {
- const {organization, router} = this.props;
- const {ruleId} = this.props.params;
- metric.endTransaction({name: 'saveAlertRule'});
- router.push(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/alerts/rules/details/${ruleId}/`,
- })
- );
- };
- renderError(error?: Error, disableLog = false): React.ReactNode {
- const {errors} = this.state;
- const notFound = Object.values(errors).find(resp => resp && resp.status === 404);
- if (notFound) {
- return (
- <Alert type="error" showIcon>
- {t('This alert rule could not be found.')}
- </Alert>
- );
- }
- return super.renderError(error, disableLog);
- }
- renderBody() {
- const {ruleId} = this.props.params;
- const {rule} = this.state;
- return (
- <RuleForm
- {...this.props}
- ruleId={ruleId}
- rule={rule}
- onSubmitSuccess={this.handleSubmitSuccess}
- disableProjectSelector
- />
- );
- }
- }
- export default MetricRulesEdit;
|