123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- import {Component, Fragment} from 'react';
- import styled from '@emotion/styled';
- import type {Location, LocationDescriptorObject} from 'history';
- import Tag from 'sentry/components/badge/tag';
- import type {GridColumn} from 'sentry/components/gridEditable';
- import GridEditable, {COL_WIDTH_UNDEFINED} from 'sentry/components/gridEditable';
- import SortLink from 'sentry/components/gridEditable/sortLink';
- import Link from 'sentry/components/links/link';
- import Pagination from 'sentry/components/pagination';
- import {IconStar} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import type {EventsMetaType} from 'sentry/utils/discover/eventView';
- import type EventView from 'sentry/utils/discover/eventView';
- import {isFieldSortable} from 'sentry/utils/discover/eventView';
- import {getFieldRenderer} from 'sentry/utils/discover/fieldRenderers';
- import type {Sort} from 'sentry/utils/discover/fields';
- import {fieldAlignment, getAggregateAlias} from 'sentry/utils/discover/fields';
- import type {WebVital} from 'sentry/utils/fields';
- import type {
- TableData,
- TableDataRow,
- } from 'sentry/utils/performance/vitals/vitalsDetailsTableQuery';
- import VitalsDetailsTableQuery from 'sentry/utils/performance/vitals/vitalsDetailsTableQuery';
- import {MutableSearch} from 'sentry/utils/tokenizeSearch';
- import CellAction, {Actions, updateQuery} from 'sentry/views/discover/table/cellAction';
- import type {TableColumn} from 'sentry/views/discover/table/types';
- import {
- DisplayModes,
- normalizeSearchConditionsWithTransactionName,
- TransactionFilterOptions,
- transactionSummaryRouteWithQuery,
- } from 'sentry/views/performance/transactionSummary/utils';
- import {getProjectID, getSelectedProjectPlatforms} from '../utils';
- import {
- getVitalDetailTableMehStatusFunction,
- getVitalDetailTablePoorStatusFunction,
- vitalAbbreviations,
- vitalNameFromLocation,
- VitalState,
- vitalStateColors,
- } from './utils';
- const COLUMN_TITLES = ['Transaction', 'Project', 'Unique Users', 'Count'];
- const getTableColumnTitle = (index: number, vitalName: WebVital) => {
- const abbrev = vitalAbbreviations[vitalName];
- const titles = [
- ...COLUMN_TITLES,
- `p50(${abbrev})`,
- `p75(${abbrev})`,
- `p95(${abbrev})`,
- `Status`,
- ];
- return titles[index];
- };
- type Props = {
- eventView: EventView;
- location: Location;
- organization: Organization;
- projects: Project[];
- setError: (msg: string | undefined) => void;
- summaryConditions: string;
- };
- type State = {
- widths: number[];
- };
- class Table extends Component<Props, State> {
- state: State = {
- widths: [],
- };
- handleCellAction = (column: TableColumn<keyof TableDataRow>) => {
- return (action: Actions, value: React.ReactText) => {
- const {eventView, location, organization} = this.props;
- trackAnalytics('performance_views.overview.cellaction', {
- organization,
- action,
- });
- const searchConditions = normalizeSearchConditionsWithTransactionName(
- eventView.query
- );
- updateQuery(searchConditions, action, column, value);
- browserHistory.push({
- pathname: location.pathname,
- query: {
- ...location.query,
- cursor: undefined,
- query: searchConditions.formatString(),
- },
- });
- };
- };
- renderBodyCell(
- tableData: TableData | null,
- column: TableColumn<keyof TableDataRow>,
- dataRow: TableDataRow,
- vitalName: WebVital
- ): React.ReactNode {
- const {eventView, organization, projects, location, summaryConditions} = this.props;
- if (!tableData || !tableData.meta?.fields) {
- return dataRow[column.key];
- }
- const tableMeta = tableData.meta?.fields;
- const field = String(column.key);
- if (field === getVitalDetailTablePoorStatusFunction(vitalName)) {
- if (dataRow[field]) {
- return (
- <UniqueTagCell>
- <PoorTag>{t('Poor')}</PoorTag>
- </UniqueTagCell>
- );
- }
- if (dataRow[getVitalDetailTableMehStatusFunction(vitalName)]) {
- return (
- <UniqueTagCell>
- <MehTag>{t('Meh')}</MehTag>
- </UniqueTagCell>
- );
- }
- return (
- <UniqueTagCell>
- <GoodTag>{t('Good')}</GoodTag>
- </UniqueTagCell>
- );
- }
- const fieldRenderer = getFieldRenderer(field, tableMeta, false);
- const rendered = fieldRenderer(dataRow, {organization, location});
- const allowActions = [
- Actions.ADD,
- Actions.EXCLUDE,
- Actions.SHOW_GREATER_THAN,
- Actions.SHOW_LESS_THAN,
- ];
- if (field === 'transaction') {
- const projectID = getProjectID(dataRow, projects);
- const summaryView = eventView.clone();
- const conditions = new MutableSearch(summaryConditions);
- conditions.addFilterValues('has', [`${vitalName}`]);
- summaryView.query = conditions.formatString();
- const transaction = String(dataRow.transaction) || '';
- const target = transactionSummaryRouteWithQuery({
- orgSlug: organization.slug,
- transaction,
- query: summaryView.generateQueryStringObject(),
- projectID,
- showTransactions: TransactionFilterOptions.RECENT,
- display: DisplayModes.VITALS,
- });
- return (
- <CellAction
- column={column}
- dataRow={dataRow}
- handleCellAction={this.handleCellAction(column)}
- allowActions={allowActions}
- >
- <Link
- to={target}
- aria-label={t('See transaction summary of the transaction %s', transaction)}
- onClick={this.handleSummaryClick}
- >
- {rendered}
- </Link>
- </CellAction>
- );
- }
- if (field.startsWith('team_key_transaction')) {
- return rendered;
- }
- return (
- <CellAction
- column={column}
- dataRow={dataRow}
- handleCellAction={this.handleCellAction(column)}
- allowActions={allowActions}
- >
- {rendered}
- </CellAction>
- );
- }
- renderBodyCellWithData = (tableData: TableData | null, vitalName: WebVital) => {
- return (
- column: TableColumn<keyof TableDataRow>,
- dataRow: TableDataRow
- ): React.ReactNode => this.renderBodyCell(tableData, column, dataRow, vitalName);
- };
- renderHeadCell(
- column: TableColumn<keyof TableDataRow>,
- title: React.ReactNode,
- tableMeta?: EventsMetaType['fields']
- ): React.ReactNode {
- const {eventView, location} = this.props;
- // TODO: Need to map table meta keys to aggregate alias since eventView sorting still expects
- // aggregate aliases for now. We'll need to refactor event view to get rid of all aggregate
- // alias references and then we can remove this.
- const aggregateAliasTableMeta: EventsMetaType['fields'] | undefined = tableMeta
- ? {}
- : undefined;
- if (tableMeta) {
- Object.keys(tableMeta).forEach(key => {
- aggregateAliasTableMeta![getAggregateAlias(key)] = tableMeta[key];
- });
- }
- const align = fieldAlignment(column.name, column.type, aggregateAliasTableMeta);
- const field = {field: column.name, width: column.width};
- function generateSortLink(): LocationDescriptorObject | undefined {
- if (!aggregateAliasTableMeta) {
- return undefined;
- }
- const nextEventView = eventView.sortOnField(field, aggregateAliasTableMeta);
- const queryStringObject = nextEventView.generateQueryStringObject();
- return {
- ...location,
- query: {...location.query, sort: queryStringObject.sort},
- };
- }
- const currentSort = eventView.sortForField(field, aggregateAliasTableMeta);
- const canSort = isFieldSortable(field, aggregateAliasTableMeta);
- return (
- <SortLink
- align={align}
- title={title || field.field}
- direction={currentSort ? currentSort.kind : undefined}
- canSort={canSort}
- generateSortLink={generateSortLink}
- />
- );
- }
- renderHeadCellWithMeta = (
- vitalName: WebVital,
- tableMeta?: EventsMetaType['fields']
- ) => {
- return (column: TableColumn<keyof TableDataRow>, index: number): React.ReactNode =>
- this.renderHeadCell(column, getTableColumnTitle(index, vitalName), tableMeta);
- };
- renderPrependCellWithData = (tableData: TableData | null, vitalName: WebVital) => {
- const {eventView} = this.props;
- const teamKeyTransactionColumn = eventView
- .getColumns()
- .find((col: TableColumn<React.ReactText>) => col.name === 'team_key_transaction');
- return (isHeader: boolean, dataRow?: any) => {
- if (teamKeyTransactionColumn) {
- if (isHeader) {
- const star = (
- <IconStar
- key="keyTransaction"
- color="yellow300"
- isSolid
- data-test-id="key-transaction-header"
- />
- );
- return [
- this.renderHeadCell(teamKeyTransactionColumn, star, tableData?.meta?.fields),
- ];
- }
- return [
- this.renderBodyCell(tableData, teamKeyTransactionColumn, dataRow, vitalName),
- ];
- }
- return [];
- };
- };
- handleSummaryClick = () => {
- const {organization, projects, location} = this.props;
- trackAnalytics('performance_views.overview.navigate.summary', {
- organization,
- project_platforms: getSelectedProjectPlatforms(location, projects),
- });
- };
- handleResizeColumn = (columnIndex: number, nextColumn: GridColumn) => {
- const widths: number[] = [...this.state.widths];
- widths[columnIndex] = nextColumn.width
- ? Number(nextColumn.width)
- : COL_WIDTH_UNDEFINED;
- this.setState({widths});
- };
- getSortedEventView(vitalName: WebVital) {
- const {eventView} = this.props;
- const aggregateFieldPoor = getAggregateAlias(
- getVitalDetailTablePoorStatusFunction(vitalName)
- );
- const aggregateFieldMeh = getAggregateAlias(
- getVitalDetailTableMehStatusFunction(vitalName)
- );
- const isSortingByStatus = eventView.sorts.some(
- sort =>
- sort.field.includes(aggregateFieldPoor) || sort.field.includes(aggregateFieldMeh)
- );
- const additionalSorts: Sort[] = isSortingByStatus
- ? []
- : [
- {
- field: 'team_key_transaction',
- kind: 'desc',
- },
- {
- field: aggregateFieldPoor,
- kind: 'desc',
- },
- {
- field: aggregateFieldMeh,
- kind: 'desc',
- },
- ];
- return eventView.withSorts([...additionalSorts, ...eventView.sorts]);
- }
- render() {
- const {eventView, organization, location} = this.props;
- const {widths} = this.state;
- const fakeColumnView = eventView.clone();
- fakeColumnView.fields = [...eventView.fields];
- const columnOrder = fakeColumnView
- .getColumns()
- // remove key_transactions from the column order as we'll be rendering it
- // via a prepended column
- .filter((col: TableColumn<React.ReactText>) => col.name !== 'team_key_transaction')
- .slice(0, -1)
- .map((col: TableColumn<React.ReactText>, i: number) => {
- if (typeof widths[i] === 'number') {
- return {...col, width: widths[i]};
- }
- return col;
- });
- const vitalName = vitalNameFromLocation(location);
- const sortedEventView = this.getSortedEventView(vitalName);
- const columnSortBy = sortedEventView.getSorts();
- return (
- <div>
- <VitalsDetailsTableQuery
- eventView={sortedEventView}
- orgSlug={organization.slug}
- location={location}
- limit={10}
- referrer="api.performance.vital-detail"
- >
- {({pageLinks, isLoading, tableData}) => (
- <Fragment>
- <GridEditable
- isLoading={isLoading}
- data={tableData ? tableData.data : []}
- columnOrder={columnOrder}
- columnSortBy={columnSortBy}
- grid={{
- onResizeColumn: this.handleResizeColumn,
- renderHeadCell: this.renderHeadCellWithMeta(
- vitalName,
- tableData?.meta?.fields
- ) as any,
- renderBodyCell: this.renderBodyCellWithData(
- tableData,
- vitalName
- ) as any,
- renderPrependColumns: this.renderPrependCellWithData(
- tableData,
- vitalName
- ) as any,
- prependColumnWidths: ['max-content'],
- }}
- />
- <Pagination pageLinks={pageLinks} />
- </Fragment>
- )}
- </VitalsDetailsTableQuery>
- </div>
- );
- }
- }
- const UniqueTagCell = styled('div')`
- text-align: right;
- justify-self: flex-end;
- flex-grow: 1;
- `;
- const GoodTag = styled(Tag)`
- div {
- background-color: ${p => p.theme[vitalStateColors[VitalState.GOOD]]};
- }
- span {
- color: ${p => p.theme.white};
- }
- `;
- const MehTag = styled(Tag)`
- div {
- background-color: ${p => p.theme[vitalStateColors[VitalState.MEH]]};
- }
- span {
- color: ${p => p.theme.white};
- }
- `;
- const PoorTag = styled(Tag)`
- div {
- background-color: ${p => p.theme[vitalStateColors[VitalState.POOR]]};
- }
- span {
- color: ${p => p.theme.white};
- }
- `;
- export default Table;
|