123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- import {useCallback, useState} from 'react';
- import {browserHistory} from 'react-router';
- import styled from '@emotion/styled';
- import {Location} from 'history';
- import Feature from 'sentry/components/acl/feature';
- import {Alert} from 'sentry/components/alert';
- import * as Layout from 'sentry/components/layouts/thirds';
- import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {Tabs} from 'sentry/components/tabs';
- import {t} from 'sentry/locale';
- import {Organization, Project} from 'sentry/types';
- import {defined} from 'sentry/utils';
- import trackAdvancedAnalyticsEvent from 'sentry/utils/analytics/trackAdvancedAnalyticsEvent';
- import 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 {normalizeUrl} from 'sentry/utils/withDomainRequired';
- 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 {TransactionThresholdMetric} from './transactionThresholdModal';
- import {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<Record<Tab, TabEvents>> = {
- [Tab.WebVitals]: '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<React.SetStateAction<string | undefined>>;
- 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;
- const projectId = decodeScalar(location.query.project);
- const transactionName = getTransactionName(location);
- const [error, setError] = useState<string | undefined>();
- const metricsCardinality = useMetricsCardinalityContext();
- const [transactionThreshold, setTransactionThreshold] = useState<number | undefined>();
- 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.WebVitals:
- return vitalsRouteWithQuery({
- orgSlug: organization.slug,
- transaction: transactionName,
- projectID: decodeScalar(location.query.project),
- query: location.query,
- });
- case Tab.TransactionSummary:
- 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) {
- trackAdvancedAnalyticsEvent(analyticsKey, {
- organization,
- project_platforms: getSelectedProjectPlatforms(location, projects),
- });
- }
- browserHistory.push(normalizeUrl(getNewRoute(newTab)));
- },
- [getNewRoute, tab, organization, location, projects]
- );
- if (!defined(projectId) || !defined(transactionName)) {
- redirectToPerformanceHomepage(organization, location);
- return null;
- }
- const project = projects.find(p => p.id === projectId);
- const eventView = generateEventView({location, transactionName, organization});
- return (
- <SentryDocumentTitle
- title={getDocumentTitle(transactionName)}
- orgSlug={organization.slug}
- projectSlug={project?.slug}
- >
- <Feature
- features={['performance-view', ...features]}
- organization={organization}
- renderDisabled={NoAccess}
- >
- <PerformanceEventViewProvider value={{eventView}}>
- <PageFiltersContainer
- shouldForceProject={defined(project)}
- forceProject={project}
- specificProjectSlugs={defined(project) ? [project.slug] : []}
- >
- <Tabs value={tab} onChange={onTabChange}>
- <Layout.Page>
- <TransactionHeader
- eventView={eventView}
- location={location}
- organization={organization}
- projects={projects}
- projectId={projectId}
- transactionName={transactionName}
- currentTab={tab}
- hasWebVitals={tab === Tab.WebVitals ? 'yes' : 'maybe'}
- onChangeThreshold={(threshold, metric) => {
- setTransactionThreshold(threshold);
- setTransactionThresholdMetric(metric);
- }}
- metricsCardinality={metricsCardinality}
- />
- <Layout.Body>
- {defined(error) && (
- <StyledAlert type="error" showIcon>
- {error}
- </StyledAlert>
- )}
- <ChildComponent
- location={location}
- organization={organization}
- projects={projects}
- eventView={eventView}
- projectId={projectId}
- transactionName={transactionName}
- setError={setError}
- transactionThreshold={transactionThreshold}
- transactionThresholdMetric={transactionThresholdMetric}
- />
- </Layout.Body>
- </Layout.Page>
- </Tabs>
- </PageFiltersContainer>
- </PerformanceEventViewProvider>
- </Feature>
- </SentryDocumentTitle>
- );
- }
- export function NoAccess() {
- return <Alert type="warning">{t("You don't have access to this feature")}</Alert>;
- }
- 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;
|