import {Fragment, useMemo} from 'react'; import FeatureBadge from 'sentry/components/featureBadge'; 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'; interface Props { selected: 'replays' | 'selectors'; } export default function ReplayTabs({selected}: Props) { const organization = useOrganization(); const location = useLocation(); 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} ))} ); }