1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import DetailedError from 'sentry/components/errors/detailedError';
- import {t} from 'sentry/locale';
- import {Environment} from 'sentry/types';
- type Props = {
- environments: Environment[];
- onRetry?: (e: React.MouseEvent<HTMLAnchorElement>) => void;
- };
- const GroupEventDetailsLoadingError = ({onRetry, environments}: Props) => {
- const reasons = [
- t('The events are still processing and are on their way'),
- t('The events have been deleted'),
- t('There is an internal systems error or active issue'),
- ];
- let message: React.ReactNode;
- if (environments.length === 0) {
- // All Environments case
- message = (
- <div>
- <p>{t('This could be due to a handful of reasons:')}</p>
- <ol className="detailed-error-list">
- {reasons.map((reason, i) => (
- <li key={i}>{reason}</li>
- ))}
- </ol>
- </div>
- );
- } else {
- message = (
- <div>{t('No events were found for the currently selected environments')}</div>
- );
- }
- return (
- <DetailedError
- className="group-event-details-error"
- onRetry={environments.length === 0 ? onRetry : undefined}
- heading={t('Sorry, the events for this issue could not be found.')}
- message={message}
- />
- );
- };
- export default GroupEventDetailsLoadingError;
|