import {useMemo} from 'react'; import {Link} from 'react-router'; import styled from '@emotion/styled'; import toUpper from 'lodash/toUpper'; import {LineChartSeries} from 'sentry/components/charts/lineChart'; import GridEditable, { COL_WIDTH_UNDEFINED, GridColumnHeader, GridColumnOrder, GridColumnSortBy, } from 'sentry/components/gridEditable'; import ExternalLink from 'sentry/components/links/externalLink'; import {Tooltip} from 'sentry/components/tooltip'; import {t, tct} from 'sentry/locale'; import {getDuration} from 'sentry/utils/formatters'; import { PageErrorAlert, PageErrorProvider, } from 'sentry/utils/performance/contexts/pageError'; import {useLocation} from 'sentry/utils/useLocation'; import useOrganization from 'sentry/utils/useOrganization'; import {PerformanceBadge} from 'sentry/views/performance/browser/webVitals/components/performanceBadge'; import {WebVitalDescription} from 'sentry/views/performance/browser/webVitals/components/webVitalDescription'; import {WebVitalStatusLineChart} from 'sentry/views/performance/browser/webVitals/components/webVitalStatusLineChart'; import {USE_STORED_SCORES} from 'sentry/views/performance/browser/webVitals/settings'; import {calculateOpportunity} from 'sentry/views/performance/browser/webVitals/utils/calculateOpportunity'; 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 {useProjectWebVitalsValuesTimeseriesQuery} from 'sentry/views/performance/browser/webVitals/utils/queries/useProjectWebVitalsValuesTimeseriesQuery'; import {useTransactionWebVitalsQuery} from 'sentry/views/performance/browser/webVitals/utils/queries/useTransactionWebVitalsQuery'; import { Row, RowWithScore, WebVitals, } from 'sentry/views/performance/browser/webVitals/utils/types'; import DetailPanel from 'sentry/views/starfish/components/detailPanel'; type Column = GridColumnHeader; const columnOrder: GridColumnOrder[] = [ {key: 'transaction', width: COL_WIDTH_UNDEFINED, name: 'Pages'}, {key: 'count()', width: COL_WIDTH_UNDEFINED, name: 'Pageloads'}, {key: 'webVital', width: COL_WIDTH_UNDEFINED, name: 'Web Vital'}, {key: 'score', width: COL_WIDTH_UNDEFINED, name: 'Score'}, {key: 'opportunity', width: COL_WIDTH_UNDEFINED, name: 'Opportunity'}, ]; const sort: GridColumnSortBy = {key: 'count()', order: 'desc'}; const MAX_ROWS = 10; export function WebVitalsDetailPanel({ webVital, onClose, }: { onClose: () => void; webVital: WebVitals | null; }) { const organization = useOrganization(); const location = useLocation(); const {data: projectData} = useProjectRawWebVitalsQuery({}); const {data: projectScoreData} = useProjectWebVitalsScoresQuery({ enabled: USE_STORED_SCORES, }); const projectScore = USE_STORED_SCORES ? calculatePerformanceScoreFromStoredTableDataRow(projectScoreData?.data?.[0]) : calculatePerformanceScoreFromTableDataRow(projectData?.data?.[0]); const {data, isLoading} = useTransactionWebVitalsQuery({ orderBy: webVital, limit: 100, }); const dataByOpportunity = useMemo(() => { if (!data) { return []; } const count = projectData?.data?.[0]?.['count()'] as number; return data .map(row => ({ ...row, opportunity: count !== undefined ? calculateOpportunity( projectScore[`${webVital}Score`], count, row[`${webVital}Score`], row['count()'] ) : undefined, })) .sort((a, b) => { if (a.opportunity === undefined) { return 1; } if (b.opportunity === undefined) { return -1; } return b.opportunity - a.opportunity; }) .slice(0, MAX_ROWS); }, [data, projectData?.data, projectScore, webVital]); const {data: timeseriesData, isLoading: isTimeseriesLoading} = useProjectWebVitalsValuesTimeseriesQuery({}); const webVitalData: LineChartSeries = { data: !isTimeseriesLoading && webVital ? timeseriesData?.[webVital].map(({name, value}) => ({ name, value, })) : [], seriesName: webVital ?? '', }; const detailKey = webVital; const renderHeadCell = (col: Column) => { if (col.key === 'transaction') { return {col.name}; } if (col.key === 'webVital') { return {`${webVital} P75`}; } if (col.key === 'score') { return {`${webVital} ${col.name}`}; } if (col.key === 'opportunity') { return ( {tct( "A number rating how impactful a performance improvement on this page would be to your application's [webVital] Performance Score.", {webVital: webVital ? toUpper(webVital) : ''} )}
{t('How is this calculated?')} } > {col.name}
); } return {col.name}; }; const getFormattedDuration = (value: number) => { if (value < 1000) { return getDuration(value / 1000, 0, true); } return getDuration(value / 1000, 2, true); }; const renderBodyCell = (col: Column, row: RowWithScore) => { const {key} = col; if (key === 'score') { return ( ); } if (col.key === 'webVital') { let value: string | number = row[mapWebVitalToColumn(webVital)]; if (webVital && ['lcp', 'fcp', 'ttfb', 'fid'].includes(webVital)) { value = getFormattedDuration(value); } else if (webVital === 'cls') { value = value?.toFixed(2); } return {value}; } if (key === 'transaction') { return ( {row.transaction} ); } return {row[key]}; }; const webVitalScore = projectScore[`${webVital}Score`]; return ( {webVital && webVitalScore !== null && ( )} {webVital && } ); } const mapWebVitalToColumn = (webVital?: WebVitals | null) => { switch (webVital) { case 'lcp': return 'p75(measurements.lcp)'; case 'fcp': return 'p75(measurements.fcp)'; case 'cls': return 'p75(measurements.cls)'; case 'ttfb': return 'p75(measurements.ttfb)'; case 'fid': return 'p75(measurements.fid)'; default: return 'count()'; } }; const NoOverflow = styled('span')` overflow: hidden; text-overflow: ellipsis; `; const AlignRight = styled('span')<{color?: string}>` text-align: right; width: 100%; ${p => (p.color ? `color: ${p.color};` : '')} `; const ChartContainer = styled('div')` position: relative; flex: 1; `; const AlignCenter = styled('span')` text-align: center; width: 100%; `; const OpportunityHeader = styled('span')` ${p => p.theme.tooltipUnderline()}; `; const TableContainer = styled('div')` margin-bottom: 80px; `;