123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import {useEffect, useState} from 'react';
- import {browserHistory, RouteComponentProps} from 'react-router';
- import {Client} from 'sentry/api';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {Organization} from 'sentry/types';
- import {trackAnalyticsEvent} from 'sentry/utils/analytics';
- import useApi from 'sentry/utils/useApi';
- import {alertDetailsLink, fetchIncident} from './utils';
- type Props = {
- api: Client;
- organization: Organization;
- } & RouteComponentProps<{alertId: string; orgId: string}, {}>;
- function IncidentDetails({organization, params}: Props) {
- const api = useApi();
- const [hasError, setHasError] = useState(false);
- const track = () => {
- trackAnalyticsEvent({
- eventKey: 'alert_details.viewed',
- eventName: 'Alert Details: Viewed',
- organization_id: parseInt(organization.id, 10),
- alert_id: parseInt(params.alertId, 10),
- });
- };
- const fetchData = async () => {
- setHasError(false);
- try {
- const incident = await fetchIncident(api, params.orgId, params.alertId);
- browserHistory.replace({
- pathname: alertDetailsLink(organization, incident),
- query: {alert: incident.identifier},
- });
- } catch (err) {
- setHasError(true);
- }
- };
- useEffect(() => {
- fetchData();
- track();
- }, []);
- if (hasError) {
- return <LoadingError onRetry={fetchData} />;
- }
- return <LoadingIndicator />;
- }
- export default IncidentDetails;
|