import {RouteComponentProps} from 'react-router'; import omit from 'lodash/omit'; import * as Layout from 'sentry/components/layouts/thirds'; import NoProjectMessage from 'sentry/components/noProjectMessage'; import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle'; import {t} from 'sentry/locale'; import {Organization} from 'sentry/types'; import EventView from 'sentry/utils/discover/eventView'; import withOrganization from 'sentry/utils/withOrganization'; import EventDetailsContent from './content'; type Props = RouteComponentProps<{eventSlug: string}, {}> & { organization: Organization; }; function EventDetails({organization, location, params}: Props) { const eventSlug = typeof params.eventSlug === 'string' ? params.eventSlug.trim() : ''; const isHomepage = location.query.homepage; const eventView = EventView.fromLocation( isHomepage ? {...location, query: omit(location.query, 'id')} : location ); const eventName = eventView.name; const documentTitle = typeof eventName === 'string' && String(eventName).trim().length > 0 ? [String(eventName).trim(), t('Discover')] : [t('Discover')]; const projectSlug = eventSlug.split(':')[0]; return ( ); } export default withOrganization(EventDetails);