123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- import {Component, Fragment} from 'react';
- import {browserHistory, RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import * as Layout from 'app/components/layouts/thirds';
- import SentryDocumentTitle from 'app/components/sentryDocumentTitle';
- import {t} from 'app/locale';
- import space from 'app/styles/space';
- import {Organization, Project} from 'app/types';
- import {trackAnalyticsEvent} from 'app/utils/analytics';
- import EventView from 'app/utils/discover/eventView';
- import {uniqueId} from 'app/utils/guid';
- import BuilderBreadCrumbs from 'app/views/alerts/builder/builderBreadCrumbs';
- import IncidentRulesCreate from 'app/views/alerts/incidentRules/create';
- import IssueRuleEditor from 'app/views/alerts/issueRuleEditor';
- import {
- AlertType as WizardAlertType,
- AlertWizardAlertNames,
- WizardRuleTemplate,
- } from 'app/views/alerts/wizard/options';
- import {getAlertTypeFromAggregateDataset} from 'app/views/alerts/wizard/utils';
- type RouteParams = {
- orgId: string;
- projectId: string;
- };
- type Props = RouteComponentProps<RouteParams, {}> & {
- organization: Organization;
- project: Project;
- hasMetricAlerts: boolean;
- };
- type AlertType = 'metric' | 'issue';
- type State = {
- alertType: AlertType;
- };
- class Create extends Component<Props, State> {
- state = this.getInitialState();
- getInitialState(): State {
- const {organization, location, project} = this.props;
- const {createFromDiscover, createFromWizard, aggregate, dataset, eventTypes} =
- location?.query ?? {};
- let alertType: AlertType = 'issue';
- // Alerts can only be created via create from discover or alert wizard
- if (createFromDiscover) {
- alertType = 'metric';
- } else if (createFromWizard) {
- if (aggregate && dataset && eventTypes) {
- alertType = 'metric';
- } else {
- // Just to be explicit
- alertType = 'issue';
- }
- } else {
- browserHistory.replace(
- `/organizations/${organization.slug}/alerts/${project.slug}/wizard`
- );
- }
- return {alertType};
- }
- componentDidMount() {
- const {organization, project} = this.props;
- trackAnalyticsEvent({
- eventKey: 'new_alert_rule.viewed',
- eventName: 'New Alert Rule: Viewed',
- organization_id: organization.id,
- project_id: project.id,
- session_id: this.sessionId,
- alert_type: this.state.alertType,
- });
- }
- /** Used to track analytics within one visit to the creation page */
- sessionId = uniqueId();
- render() {
- const {
- hasMetricAlerts,
- organization,
- project,
- params: {projectId},
- location,
- routes,
- } = this.props;
- const {alertType} = this.state;
- const {aggregate, dataset, eventTypes, createFromWizard, createFromDiscover} =
- location?.query ?? {};
- const wizardTemplate: WizardRuleTemplate = {aggregate, dataset, eventTypes};
- const eventView = createFromDiscover ? EventView.fromLocation(location) : undefined;
- let wizardAlertType: undefined | WizardAlertType;
- if (createFromWizard && alertType === 'metric') {
- wizardAlertType = wizardTemplate
- ? getAlertTypeFromAggregateDataset(wizardTemplate)
- : 'issues';
- }
- const title = t('New Alert Rule');
- return (
- <Fragment>
- <SentryDocumentTitle title={title} projectSlug={projectId} />
- <Layout.Header>
- <StyledHeaderContent>
- <BuilderBreadCrumbs
- orgSlug={organization.slug}
- alertName={t('Set Conditions')}
- title={wizardAlertType ? t('Select Alert') : title}
- projectSlug={projectId}
- routes={routes}
- location={location}
- canChangeProject
- />
- <Layout.Title>
- {wizardAlertType
- ? `${t('Set Conditions for')} ${AlertWizardAlertNames[wizardAlertType]}`
- : title}
- </Layout.Title>
- </StyledHeaderContent>
- </Layout.Header>
- <AlertConditionsBody>
- <StyledLayoutMain fullWidth>
- {(!hasMetricAlerts || alertType === 'issue') && (
- <IssueRuleEditor {...this.props} project={project} />
- )}
- {hasMetricAlerts && alertType === 'metric' && (
- <IncidentRulesCreate
- {...this.props}
- eventView={eventView}
- wizardTemplate={wizardTemplate}
- sessionId={this.sessionId}
- project={project}
- isCustomMetric={wizardAlertType === 'custom'}
- />
- )}
- </StyledLayoutMain>
- </AlertConditionsBody>
- </Fragment>
- );
- }
- }
- const AlertConditionsBody = styled(Layout.Body)`
- margin-bottom: -${space(3)};
- `;
- const StyledLayoutMain = styled(Layout.Main)`
- max-width: 1000px;
- `;
- const StyledHeaderContent = styled(Layout.HeaderContent)`
- overflow: visible;
- `;
- export default Create;
|