123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- import {useMemo, useState} from 'react';
- import {browserHistory} from 'react-router';
- import styled from '@emotion/styled';
- import omit from 'lodash/omit';
- import moment from 'moment';
- import ProjectAvatar from 'sentry/components/avatar/projectAvatar';
- import {Breadcrumbs} from 'sentry/components/breadcrumbs';
- import {LinkButton} from 'sentry/components/button';
- import {AggregateSpans} from 'sentry/components/events/interfaces/spans/aggregateSpans';
- import FloatingFeedbackWidget from 'sentry/components/feedback/widget/floatingFeedbackWidget';
- import * as Layout from 'sentry/components/layouts/thirds';
- import ExternalLink from 'sentry/components/links/externalLink';
- import {DatePageFilter} from 'sentry/components/organizations/datePageFilter';
- import {EnvironmentPageFilter} from 'sentry/components/organizations/environmentPageFilter';
- import PageFilterBar from 'sentry/components/organizations/pageFilterBar';
- import {ProjectPageFilter} from 'sentry/components/organizations/projectPageFilter';
- import {TabList, Tabs} from 'sentry/components/tabs';
- import {IconChevron, IconClose} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- import {space} from 'sentry/styles/space';
- import {defined} from 'sentry/utils';
- import {decodeScalar} from 'sentry/utils/queryString';
- import useDismissAlert from 'sentry/utils/useDismissAlert';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import useProjects from 'sentry/utils/useProjects';
- import useRouter from 'sentry/utils/useRouter';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import {PageOverviewSidebar} from 'sentry/views/performance/browser/webVitals/components/pageOverviewSidebar';
- import {
- FID_DEPRECATION_DATE,
- PerformanceScoreBreakdownChart,
- } from 'sentry/views/performance/browser/webVitals/components/performanceScoreBreakdownChart';
- import WebVitalMeters from 'sentry/views/performance/browser/webVitals/components/webVitalMeters';
- import {PageOverviewWebVitalsDetailPanel} from 'sentry/views/performance/browser/webVitals/pageOverviewWebVitalsDetailPanel';
- import {PageSamplePerformanceTable} from 'sentry/views/performance/browser/webVitals/pageSamplePerformanceTable';
- import {calculatePerformanceScoreFromTableDataRow} from 'sentry/views/performance/browser/webVitals/utils/queries/rawWebVitalsQueries/calculatePerformanceScore';
- import {useProjectRawWebVitalsQuery} from 'sentry/views/performance/browser/webVitals/utils/queries/rawWebVitalsQueries/useProjectRawWebVitalsQuery';
- import {calculatePerformanceScoreFromStoredTableDataRow} from 'sentry/views/performance/browser/webVitals/utils/queries/storedScoreQueries/calculatePerformanceScoreFromStored';
- import {useProjectWebVitalsScoresQuery} from 'sentry/views/performance/browser/webVitals/utils/queries/storedScoreQueries/useProjectWebVitalsScoresQuery';
- import type {WebVitals} from 'sentry/views/performance/browser/webVitals/utils/types';
- import {useStoredScoresSetting} from 'sentry/views/performance/browser/webVitals/utils/useStoredScoresSetting';
- import {
- AlertContent,
- DismissButton,
- StyledAlert,
- } from 'sentry/views/performance/browser/webVitals/webVitalsLandingPage';
- import {ModulePageProviders} from 'sentry/views/performance/modulePageProviders';
- import {transactionSummaryRouteWithQuery} from '../../transactionSummary/utils';
- export enum LandingDisplayField {
- OVERVIEW = 'overview',
- SPANS = 'spans',
- }
- const LANDING_DISPLAYS = [
- {
- label: t('Overview'),
- field: LandingDisplayField.OVERVIEW,
- },
- {
- label: t('Aggregate Spans'),
- field: LandingDisplayField.SPANS,
- },
- ];
- function getCurrentTabSelection(selectedTab) {
- const tab = decodeScalar(selectedTab);
- if (tab && Object.values(LandingDisplayField).includes(tab as LandingDisplayField)) {
- return tab as LandingDisplayField;
- }
- return LandingDisplayField.OVERVIEW;
- }
- export default function PageOverview() {
- const organization = useOrganization();
- const location = useLocation();
- const {projects} = useProjects();
- const router = useRouter();
- const shouldUseStoredScores = useStoredScoresSetting();
- const transaction = location.query.transaction
- ? Array.isArray(location.query.transaction)
- ? location.query.transaction[0]
- : location.query.transaction
- : undefined;
- const project = useMemo(
- () => projects.find(p => p.id === String(location.query.project)),
- [projects, location.query.project]
- );
- const tab = getCurrentTabSelection(location.query.tab);
- // TODO: When visiting page overview from a specific webvital detail panel in the landing page,
- // we should automatically default this webvital state to the respective webvital so the detail
- // panel in this page opens automatically.
- const [state, setState] = useState<{webVital: WebVitals | null}>({
- webVital: (location.query.webVital as WebVitals) ?? null,
- });
- const user = ConfigStore.get('user');
- const {dismiss, isDismissed} = useDismissAlert({
- key: `${organization.slug}-${user.id}:fid-deprecation-message-dismissed`,
- });
- const query = decodeScalar(location.query.query);
- const {data: pageData, isLoading} = useProjectRawWebVitalsQuery({transaction});
- const {data: projectScores, isLoading: isProjectScoresLoading} =
- useProjectWebVitalsScoresQuery({transaction, enabled: shouldUseStoredScores});
- if (transaction === undefined) {
- // redirect user to webvitals landing page
- window.location.href = normalizeUrl(
- `/organizations/${organization.slug}/performance/browser/pageloads/`
- );
- return null;
- }
- const transactionSummaryTarget =
- project &&
- !Array.isArray(location.query.project) && // Only render button to transaction summary when one project is selected.
- transaction &&
- transactionSummaryRouteWithQuery({
- orgSlug: organization.slug,
- transaction,
- query: {...location.query},
- projectID: project.id,
- });
- const projectScore =
- (shouldUseStoredScores && isProjectScoresLoading) || isLoading
- ? undefined
- : shouldUseStoredScores
- ? calculatePerformanceScoreFromStoredTableDataRow(projectScores?.data?.[0])
- : calculatePerformanceScoreFromTableDataRow(pageData?.data?.[0]);
- const fidDeprecationTimestampString =
- moment(FID_DEPRECATION_DATE).format('DD MMMM YYYY');
- return (
- <ModulePageProviders
- title={[t('Performance'), t('Web Vitals')].join(' — ')}
- baseURL="/performance/browser/pageloads"
- features="starfish-browser-webvitals"
- >
- <Tabs
- value={tab}
- onChange={value => {
- browserHistory.push({
- ...location,
- query: {
- ...location.query,
- tab: value,
- },
- });
- }}
- >
- <Layout.Header>
- <Layout.HeaderContent>
- <Breadcrumbs
- crumbs={[
- {
- label: 'Performance',
- to: normalizeUrl(`/organizations/${organization.slug}/performance/`),
- preservePageFilters: true,
- },
- {
- label: 'Web Vitals',
- to: normalizeUrl(
- `/organizations/${organization.slug}/performance/browser/pageloads/`
- ),
- preservePageFilters: true,
- },
- ...(transaction ? [{label: 'Page Overview'}] : []),
- ]}
- />
- <Layout.Title>
- {transaction && project && <ProjectAvatar project={project} size={24} />}
- {transaction ?? t('Page Loads')}
- </Layout.Title>
- </Layout.HeaderContent>
- <Layout.HeaderActions>
- {transactionSummaryTarget && (
- <LinkButton to={transactionSummaryTarget} size="sm">
- {t('View Transaction Summary')}
- </LinkButton>
- )}
- </Layout.HeaderActions>
- <TabList hideBorder>
- {LANDING_DISPLAYS.map(({label, field}) => (
- <TabList.Item key={field}>{label}</TabList.Item>
- ))}
- </TabList>
- </Layout.Header>
- {tab === LandingDisplayField.SPANS ? (
- <Layout.Body>
- <Layout.Main fullWidth>
- {defined(transaction) && <AggregateSpans transaction={transaction} />}
- </Layout.Main>
- </Layout.Body>
- ) : (
- <Layout.Body>
- <FloatingFeedbackWidget />
- <Layout.Main>
- <TopMenuContainer>
- {transaction && (
- <ViewAllPagesButton
- to={{
- ...location,
- pathname: '/performance/browser/pageloads/',
- query: {...location.query, transaction: undefined},
- }}
- >
- <IconChevron direction="left" /> {t('View All Pages')}
- </ViewAllPagesButton>
- )}
- <PageFilterBar condensed>
- <ProjectPageFilter />
- <EnvironmentPageFilter />
- <DatePageFilter />
- </PageFilterBar>
- </TopMenuContainer>
- {!isDismissed && (
- <StyledAlert type="info" showIcon>
- <AlertContent>
- <span>
- {tct(
- `Starting on [fidDeprecationTimestampString], [inpStrong:INP] (Interaction to Next Paint) will replace [fidStrong:FID] (First Input Delay) in our performance score calculation.`,
- {
- fidDeprecationTimestampString,
- inpStrong: <strong />,
- fidStrong: <strong />,
- }
- )}
- <br />
- {tct(
- `Users should update their Sentry SDKs to the [link:latest version (7.104.0+)] and [enableInp:enable the INP option] to start receiving updated Performance Scores.`,
- {
- link: (
- <ExternalLink href="https://github.com/getsentry/sentry-javascript/releases/tag/7.104.0" />
- ),
- enableInp: (
- <ExternalLink href="https://docs.sentry.io/platforms/javascript/performance/instrumentation/automatic-instrumentation/#enableinp" />
- ),
- }
- )}
- </span>
- <DismissButton
- priority="link"
- icon={<IconClose />}
- onClick={dismiss}
- aria-label={t('Dismiss Alert')}
- title={t('Dismiss Alert')}
- />
- </AlertContent>
- </StyledAlert>
- )}
- <Flex>
- <PerformanceScoreBreakdownChart transaction={transaction} />
- </Flex>
- <WebVitalMetersContainer>
- <WebVitalMeters
- projectData={pageData}
- projectScore={projectScore}
- onClick={webVital => {
- router.replace({
- pathname: location.pathname,
- query: {...location.query, webVital},
- });
- setState({...state, webVital});
- }}
- transaction={transaction}
- showTooltip={false}
- />
- </WebVitalMetersContainer>
- <PageSamplePerformanceTableContainer>
- <PageSamplePerformanceTable
- transaction={transaction}
- limit={15}
- search={query}
- />
- </PageSamplePerformanceTableContainer>
- </Layout.Main>
- <Layout.Side>
- <PageOverviewSidebar
- projectScore={projectScore}
- transaction={transaction}
- projectScoreIsLoading={isLoading}
- />
- </Layout.Side>
- </Layout.Body>
- )}
- <PageOverviewWebVitalsDetailPanel
- webVital={state.webVital}
- onClose={() => {
- router.replace({
- pathname: router.location.pathname,
- query: omit(router.location.query, 'webVital'),
- });
- setState({...state, webVital: null});
- }}
- />
- </Tabs>
- </ModulePageProviders>
- );
- }
- const ViewAllPagesButton = styled(LinkButton)`
- margin-right: ${space(1)};
- `;
- const TopMenuContainer = styled('div')`
- margin-bottom: ${space(1)};
- display: flex;
- `;
- const Flex = styled('div')`
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 100%;
- gap: ${space(1)};
- `;
- const PageSamplePerformanceTableContainer = styled('div')`
- margin-top: ${space(1)};
- `;
- const WebVitalMetersContainer = styled('div')`
- margin: ${space(2)} 0 ${space(4)} 0;
- `;
|