123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- import {useMemo} from 'react';
- import styled from '@emotion/styled';
- import ProjectAvatar from 'sentry/components/avatar/projectAvatar';
- import {Button, LinkButton} from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import SearchBar from 'sentry/components/events/searchBar';
- import type {GridColumnHeader, GridColumnOrder} from 'sentry/components/gridEditable';
- import GridEditable, {COL_WIDTH_UNDEFINED} from 'sentry/components/gridEditable';
- import SortLink from 'sentry/components/gridEditable/sortLink';
- import ExternalLink from 'sentry/components/links/externalLink';
- import Link from 'sentry/components/links/link';
- import Pagination from 'sentry/components/pagination';
- import {SegmentedControl} from 'sentry/components/segmentedControl';
- import {Tooltip} from 'sentry/components/tooltip';
- import {IconChevron, IconPlay, IconProfiling} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {defined} from 'sentry/utils';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import type {Sort} from 'sentry/utils/discover/fields';
- import {generateLinkToEventInTraceView} from 'sentry/utils/discover/urls';
- import getDuration from 'sentry/utils/duration/getDuration';
- import {getShortEventId} from 'sentry/utils/events';
- import {generateProfileFlamechartRoute} from 'sentry/utils/profiling/routes';
- import {decodeList, decodeScalar} from 'sentry/utils/queryString';
- import useReplayExists from 'sentry/utils/replayCount/useReplayExists';
- import {MutableSearch} from 'sentry/utils/tokenizeSearch';
- 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 {useRoutes} from 'sentry/utils/useRoutes';
- import {PerformanceBadge} from 'sentry/views/insights/browser/webVitals/components/performanceBadge';
- import {useTransactionSamplesWebVitalsScoresQuery} from 'sentry/views/insights/browser/webVitals/queries/storedScoreQueries/useTransactionSamplesWebVitalsScoresQuery';
- import {useInpSpanSamplesWebVitalsQuery} from 'sentry/views/insights/browser/webVitals/queries/useInpSpanSamplesWebVitalsQuery';
- import {MODULE_DOC_LINK} from 'sentry/views/insights/browser/webVitals/settings';
- import type {
- InteractionSpanSampleRowWithScore,
- TransactionSampleRowWithScore,
- } from 'sentry/views/insights/browser/webVitals/types';
- import {
- DEFAULT_INDEXED_SORT,
- SORTABLE_INDEXED_FIELDS,
- } from 'sentry/views/insights/browser/webVitals/types';
- import decodeBrowserTypes from 'sentry/views/insights/browser/webVitals/utils/queryParameterDecoders/browserType';
- import useProfileExists from 'sentry/views/insights/browser/webVitals/utils/useProfileExists';
- import {useWebVitalsSort} from 'sentry/views/insights/browser/webVitals/utils/useWebVitalsSort';
- import {
- SpanIndexedField,
- SpanMetricsField,
- type SubregionCode,
- } from 'sentry/views/insights/types';
- import {TraceViewSources} from 'sentry/views/performance/newTraceDetails/traceMetadataHeader';
- import {generateReplayLink} from 'sentry/views/performance/transactionSummary/utils';
- type Column = GridColumnHeader<keyof TransactionSampleRowWithScore>;
- type InteractionsColumn = GridColumnHeader<keyof InteractionSpanSampleRowWithScore>;
- const PAGELOADS_COLUMN_ORDER: GridColumnOrder<keyof TransactionSampleRowWithScore>[] = [
- {key: 'id', width: COL_WIDTH_UNDEFINED, name: t('Event ID')},
- {key: 'user.display', width: COL_WIDTH_UNDEFINED, name: t('User')},
- {key: 'measurements.lcp', width: COL_WIDTH_UNDEFINED, name: 'LCP'},
- {key: 'measurements.fcp', width: COL_WIDTH_UNDEFINED, name: 'FCP'},
- {key: 'measurements.cls', width: COL_WIDTH_UNDEFINED, name: 'CLS'},
- {key: 'measurements.ttfb', width: COL_WIDTH_UNDEFINED, name: 'TTFB'},
- {key: 'profile.id', width: COL_WIDTH_UNDEFINED, name: t('Profile')},
- {key: 'replayId', width: COL_WIDTH_UNDEFINED, name: t('Replay')},
- {key: 'totalScore', width: COL_WIDTH_UNDEFINED, name: t('Score')},
- ];
- const INTERACTION_SAMPLES_COLUMN_ORDER: GridColumnOrder<
- keyof InteractionSpanSampleRowWithScore
- >[] = [
- {
- key: SpanIndexedField.SPAN_DESCRIPTION,
- width: COL_WIDTH_UNDEFINED,
- name: t('Interaction Target'),
- },
- {key: 'user.display', width: COL_WIDTH_UNDEFINED, name: t('User')},
- {key: SpanIndexedField.INP, width: COL_WIDTH_UNDEFINED, name: 'INP'},
- {key: 'profile.id', width: COL_WIDTH_UNDEFINED, name: t('Profile')},
- {key: 'replayId', width: COL_WIDTH_UNDEFINED, name: t('Replay')},
- {key: 'inpScore', width: COL_WIDTH_UNDEFINED, name: t('Score')},
- ];
- enum Datatype {
- PAGELOADS = 'pageloads',
- INTERACTIONS = 'interactions',
- }
- const DATATYPE_KEY = 'type';
- type Props = {
- transaction: string;
- limit?: number;
- search?: string;
- };
- export function PageSamplePerformanceTable({transaction, search, limit = 9}: Props) {
- const location = useLocation();
- const {projects} = useProjects();
- const organization = useOrganization();
- const {replayExists} = useReplayExists();
- const routes = useRoutes();
- const router = useRouter();
- const browserTypes = decodeBrowserTypes(location.query[SpanIndexedField.BROWSER_NAME]);
- const subregions = decodeList(
- location.query[SpanMetricsField.USER_GEO_SUBREGION]
- ) as SubregionCode[];
- let datatype = Datatype.PAGELOADS;
- switch (decodeScalar(location.query[DATATYPE_KEY], 'pageloads')) {
- case 'interactions':
- datatype = Datatype.INTERACTIONS;
- break;
- default:
- datatype = Datatype.PAGELOADS;
- }
- const sortableFields = SORTABLE_INDEXED_FIELDS;
- const sort = useWebVitalsSort({
- defaultSort: DEFAULT_INDEXED_SORT,
- sortableFields: sortableFields as unknown as string[],
- });
- const replayLinkGenerator = generateReplayLink(routes);
- const project = useMemo(
- () => projects.find(p => p.id === String(location.query.project)),
- [projects, location.query.project]
- );
- const query = decodeScalar(location.query.query);
- const {
- data: tableData,
- isLoading,
- pageLinks,
- } = useTransactionSamplesWebVitalsScoresQuery({
- limit,
- transaction,
- query: search,
- withProfiles: true,
- enabled: datatype === Datatype.PAGELOADS,
- browserTypes,
- subregions,
- });
- const {
- data: interactionsTableData,
- isFetching: isInteractionsLoading,
- pageLinks: interactionsPageLinks,
- } = useInpSpanSamplesWebVitalsQuery({
- transaction,
- enabled: datatype === Datatype.INTERACTIONS,
- limit,
- filters: new MutableSearch(query ?? '').filters,
- browserTypes,
- subregions,
- });
- const {profileExists} = useProfileExists(
- interactionsTableData.filter(row => row['profile.id']).map(row => row['profile.id'])
- );
- const getFormattedDuration = (value: number) => {
- return getDuration(value, value < 1 ? 0 : 2, true);
- };
- function renderHeadCell(col: Column | InteractionsColumn) {
- function generateSortLink() {
- const key = ['totalScore', 'inpScore'].includes(col.key)
- ? 'measurements.score.total'
- : col.key;
- let newSortDirection: Sort['kind'] = 'desc';
- if (sort?.field === key) {
- if (sort.kind === 'desc') {
- newSortDirection = 'asc';
- }
- }
- const newSort = `${newSortDirection === 'desc' ? '-' : ''}${key}`;
- return {
- ...location,
- query: {...location.query, sort: newSort},
- };
- }
- const canSort = (sortableFields as ReadonlyArray<string>).includes(col.key);
- if (
- [
- 'measurements.fcp',
- 'measurements.lcp',
- 'measurements.ttfb',
- 'measurements.cls',
- 'measurements.inp',
- 'transaction.duration',
- ].includes(col.key)
- ) {
- if (canSort) {
- return (
- <SortLink
- align="right"
- title={col.name}
- direction={sort?.field === col.key ? sort.kind : undefined}
- canSort={canSort}
- generateSortLink={generateSortLink}
- />
- );
- }
- return (
- <AlignRight>
- <span>{col.name}</span>
- </AlignRight>
- );
- }
- if (col.key === 'totalScore' || col.key === 'inpScore') {
- return (
- <SortLink
- title={
- <AlignCenter>
- <StyledTooltip
- isHoverable
- title={
- <span>
- {t('The overall performance rating of this page.')}
- <br />
- <ExternalLink href={`${MODULE_DOC_LINK}#performance-score`}>
- {t('How is this calculated?')}
- </ExternalLink>
- </span>
- }
- >
- <TooltipHeader>{t('Perf Score')}</TooltipHeader>
- </StyledTooltip>
- </AlignCenter>
- }
- direction={sort?.field === col.key ? sort.kind : undefined}
- canSort={canSort}
- generateSortLink={generateSortLink}
- align={undefined}
- />
- );
- }
- if (col.key === 'replayId' || col.key === 'profile.id') {
- return (
- <AlignCenter>
- <span>{col.name}</span>
- </AlignCenter>
- );
- }
- return <span>{col.name}</span>;
- }
- function renderBodyCell(
- col: Column | InteractionsColumn,
- row: TransactionSampleRowWithScore | InteractionSpanSampleRowWithScore
- ) {
- const {key} = col;
- if (key === 'totalScore' || key === 'inpScore') {
- return (
- <AlignCenter>
- <PerformanceBadge score={row[key]} />
- </AlignCenter>
- );
- }
- if (key === 'transaction' && 'transaction' in row) {
- return (
- <NoOverflow>
- {project && (
- <StyledProjectAvatar
- project={project}
- direction="left"
- size={16}
- hasTooltip
- tooltip={project.slug}
- />
- )}
- <Link
- to={{...location, query: {...location.query, transaction: row.transaction}}}
- >
- {row.transaction}
- </Link>
- </NoOverflow>
- );
- }
- if (
- [
- 'measurements.fcp',
- 'measurements.lcp',
- 'measurements.ttfb',
- 'measurements.inp',
- 'transaction.duration',
- ].includes(key)
- ) {
- return (
- <AlignRight>
- {row[key] === undefined ? (
- <NoValue>{' \u2014 '}</NoValue>
- ) : (
- getFormattedDuration((row[key] as number) / 1000)
- )}
- </AlignRight>
- );
- }
- if (['measurements.cls', 'opportunity'].includes(key)) {
- return (
- <AlignRight>
- {row[key] === undefined ? (
- <NoValue>{' \u2014 '}</NoValue>
- ) : (
- Math.round((row[key] as number) * 100) / 100
- )}
- </AlignRight>
- );
- }
- if (key === 'profile.id') {
- const profileId = String(row[key]);
- const profileTarget =
- defined(row.projectSlug) && defined(row[key])
- ? generateProfileFlamechartRoute({
- orgSlug: organization.slug,
- projectSlug: row.projectSlug,
- profileId,
- })
- : null;
- return (
- <NoOverflow>
- <AlignCenter>
- {profileTarget && profileExists(profileId) && (
- <Tooltip title={t('View Profile')}>
- <LinkButton to={profileTarget} size="xs">
- <IconProfiling size="xs" />
- </LinkButton>
- </Tooltip>
- )}
- </AlignCenter>
- </NoOverflow>
- );
- }
- if (key === 'replayId') {
- const replayTarget =
- (row['transaction.duration'] !== undefined ||
- row[SpanIndexedField.SPAN_SELF_TIME] !== undefined) &&
- replayLinkGenerator(
- organization,
- {
- replayId: row[key],
- id: '', // id doesn't get used in replayLinkGenerator. This is just to satisfy the type.
- 'transaction.duration':
- datatype === Datatype.INTERACTIONS
- ? row[SpanIndexedField.SPAN_SELF_TIME]
- : row['transaction.duration'],
- timestamp: row.timestamp,
- },
- undefined
- );
- return (
- <NoOverflow>
- <AlignCenter>
- {replayTarget &&
- Object.keys(replayTarget).length > 0 &&
- replayExists(row[key]) && (
- <Tooltip title={t('View Replay')}>
- <LinkButton to={replayTarget} size="xs">
- <IconPlay size="xs" />
- </LinkButton>
- </Tooltip>
- )}
- </AlignCenter>
- </NoOverflow>
- );
- }
- if (key === 'id' && 'id' in row) {
- const eventTarget = generateLinkToEventInTraceView({
- projectSlug: row.projectSlug,
- traceSlug: row.trace,
- eventId: row.id,
- timestamp: row.timestamp,
- organization,
- location,
- source: TraceViewSources.WEB_VITALS_MODULE,
- });
- return (
- <NoOverflow>
- <Tooltip title={t('View Transaction')}>
- <Link to={eventTarget}>{getShortEventId(row.id)}</Link>
- </Tooltip>
- </NoOverflow>
- );
- }
- if (key === SpanIndexedField.SPAN_DESCRIPTION) {
- return (
- <NoOverflow>
- <Tooltip title={row[key]}>{row[key]}</Tooltip>
- </NoOverflow>
- );
- }
- return <NoOverflow>{row[key]}</NoOverflow>;
- }
- return (
- <span>
- <SearchBarContainer>
- <SegmentedControl
- size="md"
- value={datatype}
- aria-label={t('Data Type')}
- onChange={newDataSet => {
- // Reset pagination and sort when switching datatypes
- trackAnalytics('insight.vital.overview.toggle_data_type', {
- organization,
- type: newDataSet,
- });
- router.replace({
- ...location,
- query: {
- ...location.query,
- sort: undefined,
- cursor: undefined,
- [DATATYPE_KEY]: newDataSet,
- },
- });
- }}
- >
- <SegmentedControl.Item key={Datatype.PAGELOADS} aria-label={t('Pageloads')}>
- {t('Pageloads')}
- </SegmentedControl.Item>
- <SegmentedControl.Item
- key={Datatype.INTERACTIONS}
- aria-label={t('Interactions')}
- >
- {t('Interactions')}
- </SegmentedControl.Item>
- </SegmentedControl>
- <StyledSearchBar
- query={query}
- organization={organization}
- onSearch={queryString =>
- router.replace({
- ...location,
- query: {...location.query, query: queryString},
- })
- }
- />
- <StyledPagination
- pageLinks={
- datatype === Datatype.INTERACTIONS ? interactionsPageLinks : pageLinks
- }
- disabled={
- datatype === Datatype.INTERACTIONS ? isInteractionsLoading : isLoading
- }
- size="md"
- />
- {/* The Pagination component disappears if pageLinks is not defined,
- which happens any time the table data is loading. So we render a
- disabled button bar if pageLinks is not defined to minimize ui shifting */}
- {!(datatype === Datatype.INTERACTIONS ? interactionsPageLinks : pageLinks) && (
- <Wrapper>
- <ButtonBar merged>
- <Button
- icon={<IconChevron direction="left" />}
- disabled
- aria-label={t('Previous')}
- />
- <Button
- icon={<IconChevron direction="right" />}
- disabled
- aria-label={t('Next')}
- />
- </ButtonBar>
- </Wrapper>
- )}
- </SearchBarContainer>
- {datatype === Datatype.PAGELOADS && (
- <GridEditable
- isLoading={isLoading}
- columnOrder={PAGELOADS_COLUMN_ORDER}
- columnSortBy={[]}
- data={tableData}
- grid={{
- renderHeadCell,
- renderBodyCell,
- }}
- minimumColWidth={70}
- />
- )}
- {datatype === Datatype.INTERACTIONS && (
- <GridEditable
- isLoading={isInteractionsLoading}
- columnOrder={INTERACTION_SAMPLES_COLUMN_ORDER}
- columnSortBy={[]}
- data={interactionsTableData}
- grid={{
- renderHeadCell,
- renderBodyCell,
- }}
- minimumColWidth={70}
- />
- )}
- </span>
- );
- }
- const NoOverflow = styled('span')`
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- `;
- const AlignRight = styled('span')<{color?: string}>`
- text-align: right;
- width: 100%;
- ${p => (p.color ? `color: ${p.color};` : '')}
- `;
- const AlignCenter = styled('div')`
- display: block;
- margin: auto;
- text-align: center;
- width: 100%;
- `;
- const StyledProjectAvatar = styled(ProjectAvatar)`
- top: ${space(0.25)};
- position: relative;
- padding-right: ${space(1)};
- `;
- const NoValue = styled('span')`
- color: ${p => p.theme.gray300};
- `;
- const SearchBarContainer = styled('div')`
- display: flex;
- margin-top: ${space(2)};
- margin-bottom: ${space(1)};
- gap: ${space(1)};
- `;
- const StyledSearchBar = styled(SearchBar)`
- flex-grow: 1;
- `;
- const StyledPagination = styled(Pagination)`
- margin: 0;
- `;
- const Wrapper = styled('div')`
- display: flex;
- align-items: center;
- justify-content: flex-end;
- margin: 0;
- `;
- const TooltipHeader = styled('span')`
- ${p => p.theme.tooltipUnderline()};
- `;
- const StyledTooltip = styled(Tooltip)`
- top: 1px;
- position: relative;
- `;
|