import {useCallback, useState} from 'react'; import {browserHistory} from 'react-router'; import styled from '@emotion/styled'; import {isString} from '@sentry/utils'; import type {Location} from 'history'; import {addErrorMessage} from 'sentry/actionCreators/indicator'; import Feature from 'sentry/components/acl/feature'; import {Alert} from 'sentry/components/alert'; import {COL_WIDTH_UNDEFINED} from 'sentry/components/gridEditable'; import * as Layout from 'sentry/components/layouts/thirds'; import LoadingIndicator from 'sentry/components/loadingIndicator'; import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container'; import PickProjectToContinue from 'sentry/components/pickProjectToContinue'; import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle'; import {Tabs} from 'sentry/components/tabs'; import {t} from 'sentry/locale'; import type {Organization, Project} from 'sentry/types'; import {defined} from 'sentry/utils'; import {trackAnalytics} from 'sentry/utils/analytics'; import DiscoverQuery from 'sentry/utils/discover/discoverQuery'; import type EventView from 'sentry/utils/discover/eventView'; import {useMetricsCardinalityContext} from 'sentry/utils/performance/contexts/metricsCardinality'; import {PerformanceEventViewProvider} from 'sentry/utils/performance/contexts/performanceEventViewContext'; import {decodeScalar} from 'sentry/utils/queryString'; import useRouter from 'sentry/utils/useRouter'; import {normalizeUrl} from 'sentry/utils/withDomainRequired'; import {aggregateWaterfallRouteWithQuery} from 'sentry/views/performance/transactionSummary/aggregateSpanWaterfall/utils'; import {getSelectedProjectPlatforms, getTransactionName} from '../utils'; import {anomaliesRouteWithQuery} from './transactionAnomalies/utils'; import {eventsRouteWithQuery} from './transactionEvents/utils'; import {profilesRouteWithQuery} from './transactionProfiles/utils'; import {replaysRouteWithQuery} from './transactionReplays/utils'; import {spansRouteWithQuery} from './transactionSpans/utils'; import {tagsRouteWithQuery} from './transactionTags/utils'; import {vitalsRouteWithQuery} from './transactionVitals/utils'; import TransactionHeader from './header'; import Tab from './tabs'; import type {TransactionThresholdMetric} from './transactionThresholdModal'; import {generateTransactionSummaryRoute, transactionSummaryRouteWithQuery} from './utils'; type TabEvents = | 'performance_views.vitals.vitals_tab_clicked' | 'performance_views.tags.tags_tab_clicked' | 'performance_views.events.events_tab_clicked' | 'performance_views.spans.spans_tab_clicked' | 'performance_views.anomalies.anomalies_tab_clicked'; const TAB_ANALYTICS: Partial> = { [Tab.WEB_VITALS]: 'performance_views.vitals.vitals_tab_clicked', [Tab.TAGS]: 'performance_views.tags.tags_tab_clicked', [Tab.EVENTS]: 'performance_views.events.events_tab_clicked', [Tab.SPANS]: 'performance_views.spans.spans_tab_clicked', [Tab.ANOMALIES]: 'performance_views.anomalies.anomalies_tab_clicked', }; export type ChildProps = { eventView: EventView; location: Location; organization: Organization; projectId: string; projects: Project[]; setError: React.Dispatch>; transactionName: string; // These are used to trigger a reload when the threshold/metric changes. transactionThreshold?: number; transactionThresholdMetric?: TransactionThresholdMetric; }; type Props = { childComponent: (props: ChildProps) => JSX.Element; generateEventView: (props: { location: Location; organization: Organization; transactionName: string; }) => EventView; getDocumentTitle: (name: string) => string; location: Location; organization: Organization; projects: Project[]; tab: Tab; features?: string[]; }; function PageLayout(props: Props) { const { location, organization, projects, tab, getDocumentTitle, generateEventView, childComponent: ChildComponent, features = [], } = props; let projectId: string | undefined; const filterProjects = location.query.project; if (isString(filterProjects) && filterProjects !== '-1') { projectId = filterProjects; } const router = useRouter(); const transactionName = getTransactionName(location); const [error, setError] = useState(); const metricsCardinality = useMetricsCardinalityContext(); const [transactionThreshold, setTransactionThreshold] = useState(); const [transactionThresholdMetric, setTransactionThresholdMetric] = useState< TransactionThresholdMetric | undefined >(); const getNewRoute = useCallback( (newTab: Tab) => { if (!transactionName) { return {}; } const routeQuery = { orgSlug: organization.slug, transaction: transactionName, projectID: projectId, query: location.query, }; switch (newTab) { case Tab.TAGS: return tagsRouteWithQuery(routeQuery); case Tab.EVENTS: return eventsRouteWithQuery(routeQuery); case Tab.SPANS: return spansRouteWithQuery(routeQuery); case Tab.ANOMALIES: return anomaliesRouteWithQuery(routeQuery); case Tab.REPLAYS: return replaysRouteWithQuery(routeQuery); case Tab.PROFILING: { return profilesRouteWithQuery(routeQuery); } case Tab.AGGREGATE_WATERFALL: return aggregateWaterfallRouteWithQuery(routeQuery); case Tab.WEB_VITALS: return vitalsRouteWithQuery({ orgSlug: organization.slug, transaction: transactionName, projectID: decodeScalar(location.query.project), query: location.query, }); case Tab.TRANSACTION_SUMMARY: default: return transactionSummaryRouteWithQuery(routeQuery); } }, [location.query, organization.slug, projectId, transactionName] ); const onTabChange = useCallback( (newTab: Tab) => { // Prevent infinite rerenders if (newTab === tab) { return; } const analyticsKey = TAB_ANALYTICS[newTab]; if (analyticsKey) { trackAnalytics(analyticsKey, { organization, project_platforms: getSelectedProjectPlatforms(location, projects), }); } browserHistory.push(normalizeUrl(getNewRoute(newTab))); }, [getNewRoute, tab, organization, location, projects] ); if (!defined(transactionName)) { redirectToPerformanceHomepage(organization, location); return null; } const eventView = generateEventView({location, transactionName, organization}); if (!defined(projectId)) { // Using a discover query to get the projects associated // with a transaction name const nextView = eventView.clone(); nextView.query = `transaction:"${transactionName}"`; nextView.fields = [ { field: 'project', width: COL_WIDTH_UNDEFINED, }, { field: 'count()', width: COL_WIDTH_UNDEFINED, }, ]; return ( {({isLoading, tableData, error: discoverQueryError}) => { if (discoverQueryError) { addErrorMessage(t('Unable to get projects associated with transaction')); redirectToPerformanceHomepage(organization, location); return null; } if (isLoading) { return ; } const selectableProjects = tableData?.data .map(row => projects.find(project => project.slug === row.project)) .filter((p): p is Project => p !== undefined); return ( selectableProjects && ( ) ); }} ); } const project = projects.find(p => p.id === projectId); return ( { setTransactionThreshold(threshold); setTransactionThresholdMetric(metric); }} metricsCardinality={metricsCardinality} /> {defined(error) && ( {error} )} ); } export function NoAccess() { return {t("You don't have access to this feature")}; } const StyledAlert = styled(Alert)` grid-column: 1/3; margin: 0; `; export function redirectToPerformanceHomepage( organization: Organization, location: Location ) { // If there is no transaction name, redirect to the Performance landing page browserHistory.replace( normalizeUrl({ pathname: `/organizations/${organization.slug}/performance/`, query: { ...location.query, }, }) ); } export default PageLayout;