import {useMemo} from 'react'; import {TabList, Tabs} from 'sentry/components/tabs'; import {t} from 'sentry/locale'; import {useLocation} from 'sentry/utils/useLocation'; import useOrganization from 'sentry/utils/useOrganization'; import {normalizeUrl} from 'sentry/utils/withDomainRequired'; import useAllMobileProj from 'sentry/views/replays/detail/useAllMobileProj'; interface Props { selected: 'replays' | 'selectors'; } export default function ReplayTabs({selected}: Props) { const organization = useOrganization(); const location = useLocation(); const {allMobileProj} = useAllMobileProj(); const tabs = useMemo( () => [ { key: 'replays', label: t('Replays'), pathname: normalizeUrl(`/organizations/${organization.slug}/replays/`), query: {...location.query, sort: undefined}, }, { key: 'selectors', label: t('Selectors'), pathname: normalizeUrl(`/organizations/${organization.slug}/replays/selectors/`), query: {...location.query, sort: '-count_dead_clicks'}, }, ], [organization.slug, location.query] ); return ( {tabs.map(tab => ( {tab.label} ))} ); }