123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- import {Fragment, memo, useCallback} from 'react';
- import styled from '@emotion/styled';
- import * as Sentry from '@sentry/react';
- import colorFn from 'color';
- import {LinkButton} from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import TextOverflow from 'sentry/components/textOverflow';
- import {Tooltip} from 'sentry/components/tooltip';
- import {IconArrow, IconLightning, IconReleases} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {getUtcDateString} from 'sentry/utils/dates';
- import {DEFAULT_SORT_STATE} from 'sentry/utils/metrics/constants';
- import {formatMetricsUsingUnitAndOp} from 'sentry/utils/metrics/formatters';
- import {MetricWidgetQueryParams, SortState} from 'sentry/utils/metrics/types';
- import useOrganization from 'sentry/utils/useOrganization';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import {Series} from 'sentry/views/ddm/widget';
- import {transactionSummaryRouteWithQuery} from 'sentry/views/performance/transactionSummary/utils';
- export const SummaryTable = memo(function SummaryTable({
- series,
- operation,
- onRowClick,
- onSortChange,
- sort = DEFAULT_SORT_STATE as SortState,
- setHoveredSeries,
- }: {
- onRowClick: (series: MetricWidgetQueryParams['focusedSeries']) => void;
- onSortChange: (sortState: SortState) => void;
- series: Series[];
- operation?: string;
- setHoveredSeries?: (seriesName: string) => void;
- sort?: SortState;
- }) {
- const {selection} = usePageFilters();
- const organization = useOrganization();
- const hasActions = series.some(s => s.release || s.transaction);
- const hasMultipleSeries = series.length > 1;
- const changeSort = useCallback(
- (name: SortState['name']) => {
- trackAnalytics('ddm.widget.sort', {
- organization,
- by: name ?? '(none)',
- order: sort.order,
- });
- Sentry.metrics.increment('ddm.widget.sort', 1, {
- tags: {
- by: name ?? '(none)',
- order: sort.order,
- },
- });
- if (sort.name === name) {
- if (sort.order === 'desc') {
- onSortChange(DEFAULT_SORT_STATE as SortState);
- } else if (sort.order === 'asc') {
- onSortChange({
- name,
- order: 'desc',
- });
- } else {
- onSortChange({
- name,
- order: 'asc',
- });
- }
- } else {
- onSortChange({
- name,
- order: 'asc',
- });
- }
- },
- [sort, onSortChange, organization]
- );
- const releaseTo = (release: string) => {
- return {
- pathname: `/organizations/${organization.slug}/releases/${encodeURIComponent(
- release
- )}/`,
- query: {
- pageStart: selection.datetime.start,
- pageEnd: selection.datetime.end,
- pageStatsPeriod: selection.datetime.period,
- project: selection.projects,
- environment: selection.environments,
- },
- };
- };
- const transactionTo = (transaction: string) =>
- transactionSummaryRouteWithQuery({
- orgSlug: organization.slug,
- transaction,
- projectID: selection.projects.map(p => String(p)),
- query: {
- query: '',
- environment: selection.environments,
- start: selection.datetime.start
- ? getUtcDateString(selection.datetime.start)
- : undefined,
- end: selection.datetime.end
- ? getUtcDateString(selection.datetime.end)
- : undefined,
- statsPeriod: selection.datetime.period,
- },
- });
- const rows = series
- .map(s => {
- return {
- ...s,
- ...getValues(s.data),
- name: s.seriesName,
- };
- })
- .sort((a, b) => {
- const {name, order} = sort;
- if (!name) {
- return 0;
- }
- if (name === 'name') {
- return order === 'asc'
- ? a.name.localeCompare(b.name)
- : b.name.localeCompare(a.name);
- }
- const aValue = a[name] ?? 0;
- const bValue = b[name] ?? 0;
- return order === 'asc' ? aValue - bValue : bValue - aValue;
- });
- return (
- <SummaryTableWrapper hasActions={hasActions}>
- <HeaderCell disabled />
- <SortableHeaderCell onClick={changeSort} sortState={sort} name="name">
- {t('Name')}
- </SortableHeaderCell>
- <SortableHeaderCell onClick={changeSort} sortState={sort} name="avg" right>
- {t('Avg')}
- </SortableHeaderCell>
- <SortableHeaderCell onClick={changeSort} sortState={sort} name="min" right>
- {t('Min')}
- </SortableHeaderCell>
- <SortableHeaderCell onClick={changeSort} sortState={sort} name="max" right>
- {t('Max')}
- </SortableHeaderCell>
- <SortableHeaderCell onClick={changeSort} sortState={sort} name="sum" right>
- {t('Sum')}
- </SortableHeaderCell>
- {hasActions && (
- <HeaderCell disabled right>
- {t('Actions')}
- </HeaderCell>
- )}
- <TableBodyWrapper
- onMouseLeave={() => {
- if (hasMultipleSeries) {
- setHoveredSeries?.('');
- }
- }}
- >
- {rows.map(
- ({
- name,
- seriesName,
- groupBy,
- color,
- hidden,
- unit,
- transaction,
- release,
- avg,
- min,
- max,
- sum,
- }) => {
- return (
- <Fragment key={seriesName}>
- <CellWrapper
- onClick={() => {
- if (hasMultipleSeries) {
- onRowClick({
- seriesName,
- groupBy,
- });
- }
- }}
- onMouseEnter={() => {
- if (hasMultipleSeries) {
- setHoveredSeries?.(seriesName);
- }
- }}
- >
- <Cell>
- <ColorDot
- color={color}
- isHidden={!!hidden}
- style={{
- backgroundColor: hidden
- ? 'transparent'
- : colorFn(color).alpha(1).string(),
- }}
- />
- </Cell>
- <TextOverflowCell>
- <Tooltip
- title={name}
- showOnlyOnOverflow
- delay={500}
- overlayStyle={{maxWidth: '80vw'}}
- >
- <TextOverflow>{name}</TextOverflow>
- </Tooltip>
- </TextOverflowCell>
- {/* TODO(ddm): Add a tooltip with the full value, don't add on click in case users want to copy the value */}
- <Cell right>{formatMetricsUsingUnitAndOp(avg, unit, operation)}</Cell>
- <Cell right>{formatMetricsUsingUnitAndOp(min, unit, operation)}</Cell>
- <Cell right>{formatMetricsUsingUnitAndOp(max, unit, operation)}</Cell>
- <Cell right>{formatMetricsUsingUnitAndOp(sum, unit, operation)}</Cell>
- </CellWrapper>
- {hasActions && (
- <Cell right>
- <ButtonBar gap={0.5}>
- {transaction && (
- <div>
- <Tooltip title={t('Open Transaction Summary')}>
- <LinkButton to={transactionTo(transaction)} size="xs">
- <IconLightning size="xs" />
- </LinkButton>
- </Tooltip>
- </div>
- )}
- {release && (
- <div>
- <Tooltip title={t('Open Release Details')}>
- <LinkButton to={releaseTo(release)} size="xs">
- <IconReleases size="xs" />
- </LinkButton>
- </Tooltip>
- </div>
- )}
- </ButtonBar>
- </Cell>
- )}
- </Fragment>
- );
- }
- )}
- </TableBodyWrapper>
- </SummaryTableWrapper>
- );
- });
- function SortableHeaderCell({
- sortState,
- name,
- right,
- children,
- onClick,
- }: {
- children: React.ReactNode;
- name: SortState['name'];
- onClick: (name: SortState['name']) => void;
- sortState: SortState;
- right?: boolean;
- }) {
- const sortIcon =
- sortState.name === name ? (
- <IconArrow size="xs" direction={sortState.order === 'asc' ? 'up' : 'down'} />
- ) : (
- ''
- );
- return (
- <HeaderCell
- onClick={() => {
- onClick(name);
- }}
- right={right}
- >
- {sortIcon} {children}
- </HeaderCell>
- );
- }
- function getValues(seriesData: Series['data']) {
- if (!seriesData) {
- return {min: null, max: null, avg: null, sum: null};
- }
- const res = seriesData.reduce(
- (acc, {value}) => {
- if (value === null) {
- return acc;
- }
- acc.min = Math.min(acc.min, value);
- acc.max = Math.max(acc.max, value);
- acc.sum += value;
- acc.definedDatapoints += 1;
- return acc;
- },
- {min: Infinity, max: -Infinity, sum: 0, definedDatapoints: 0}
- );
- return {min: res.min, max: res.max, sum: res.sum, avg: res.sum / res.definedDatapoints};
- }
- // TODO(ddm): PanelTable component proved to be a bit too opinionated for this use case,
- // so we're using a custom styled component instead. Figure out what we want to do here
- const SummaryTableWrapper = styled(`div`)<{hasActions: boolean}>`
- display: grid;
- grid-template-columns: ${p =>
- p.hasActions ? '24px 8fr repeat(5, 1fr)' : '24px 8fr repeat(4, 1fr)'};
- max-height: 200px;
- overflow-y: auto;
- scrollbar-gutter: stable;
- `;
- // TODO(ddm): This is a copy of PanelTableHeader, try to figure out how to reuse it
- const HeaderCell = styled('div')<{disabled?: boolean; right?: boolean}>`
- color: ${p => p.theme.subText};
- font-size: ${p => p.theme.fontSizeSmall};
- font-weight: 600;
- text-transform: uppercase;
- border-radius: ${p => p.theme.borderRadius} ${p => p.theme.borderRadius} 0 0;
- line-height: 1;
- display: flex;
- flex-direction: row;
- justify-content: ${p => (p.right ? 'flex-end' : 'flex-start')};
- padding: ${space(0.5)} ${space(1)};
- gap: ${space(0.5)};
- user-select: none;
- :hover {
- cursor: ${p => (p.disabled ? 'auto' : 'pointer')};
- background-color: ${p => (p.disabled ? p.theme.background : p.theme.bodyBackground)};
- }
- `;
- const Cell = styled('div')<{right?: boolean}>`
- display: flex;
- padding: ${space(0.25)} ${space(1)};
- align-items: center;
- justify-content: ${p => (p.right ? 'flex-end' : 'flex-start')};
- white-space: nowrap;
- `;
- const TextOverflowCell = styled(Cell)`
- min-width: 0;
- `;
- const ColorDot = styled(`div`)<{color: string; isHidden: boolean}>`
- border: 1px solid ${p => p.color};
- border-radius: 50%;
- width: ${space(1)};
- height: ${space(1)};
- `;
- const TableBodyWrapper = styled('div')`
- display: contents;
- `;
- const CellWrapper = styled('div')`
- display: contents;
- &:hover {
- cursor: pointer;
- ${Cell}, ${TextOverflowCell} {
- background-color: ${p => p.theme.bodyBackground};
- }
- }
- `;
|