123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- import {PureComponent} from 'react';
- import styled from '@emotion/styled';
- import {Location} from 'history';
- import {EventQuery} from 'sentry/actionCreators/events';
- import {Client} from 'sentry/api';
- import Pagination, {CursorHandler} from 'sentry/components/pagination';
- import {t} from 'sentry/locale';
- import {Organization} from 'sentry/types';
- import {metric, trackAnalytics} from 'sentry/utils/analytics';
- import {CustomMeasurementsContext} from 'sentry/utils/customMeasurements/customMeasurementsContext';
- import {TableData} from 'sentry/utils/discover/discoverQuery';
- import EventView, {
- isAPIPayloadSimilar,
- LocationQuery,
- } from 'sentry/utils/discover/eventView';
- import {SPAN_OP_BREAKDOWN_FIELDS} from 'sentry/utils/discover/fields';
- import Measurements from 'sentry/utils/measurements/measurements';
- import parseLinkHeader from 'sentry/utils/parseLinkHeader';
- import {VisuallyCompleteWithData} from 'sentry/utils/performanceForSentry';
- import withApi from 'sentry/utils/withApi';
- import TableView from './tableView';
- type TableProps = {
- api: Client;
- confirmedQuery: boolean;
- eventView: EventView;
- location: Location;
- onChangeShowTags: () => void;
- onCursor: CursorHandler;
- organization: Organization;
- setError: (msg: string, code: number) => void;
- showTags: boolean;
- title: string;
- isHomepage?: boolean;
- setTips?: (tips: string[]) => void;
- };
- type TableState = {
- error: null | string;
- isLoading: boolean;
- pageLinks: null | string;
- prevView: null | EventView;
- tableData: TableData | null | undefined;
- tableFetchID: symbol | undefined;
- };
- /**
- * `Table` is a container element that handles 2 things
- * 1. Fetch data from source
- * 2. Handle pagination of data
- *
- * It will pass the data it fetched to `TableView`, where the state of the
- * Table is maintained and controlled
- */
- class Table extends PureComponent<TableProps, TableState> {
- state: TableState = {
- isLoading: true,
- tableFetchID: undefined,
- error: null,
- pageLinks: null,
- tableData: null,
- prevView: null,
- };
- componentDidMount() {
- this.fetchData();
- }
- componentDidUpdate(prevProps: TableProps) {
- // Reload data if we aren't already loading, or if we've moved
- // from an invalid view state to a valid one.
- if (
- (!this.state.isLoading && this.shouldRefetchData(prevProps)) ||
- (prevProps.eventView.isValid() === false && this.props.eventView.isValid()) ||
- (prevProps.confirmedQuery !== this.props.confirmedQuery && this.didViewChange())
- ) {
- this.fetchData();
- }
- }
- didViewChange = (): boolean => {
- const {prevView} = this.state;
- const thisAPIPayload = this.props.eventView.getEventsAPIPayload(this.props.location);
- if (prevView === null) {
- return true;
- }
- const otherAPIPayload = prevView.getEventsAPIPayload(this.props.location);
- return !isAPIPayloadSimilar(thisAPIPayload, otherAPIPayload);
- };
- shouldRefetchData = (prevProps: TableProps): boolean => {
- const thisAPIPayload = this.props.eventView.getEventsAPIPayload(this.props.location);
- const otherAPIPayload = prevProps.eventView.getEventsAPIPayload(prevProps.location);
- return !isAPIPayloadSimilar(thisAPIPayload, otherAPIPayload);
- };
- fetchData = () => {
- const {eventView, organization, location, setError, confirmedQuery, setTips} =
- this.props;
- if (!eventView.isValid() || !confirmedQuery) {
- return;
- }
- this.setState({prevView: eventView});
- // note: If the eventView has no aggregates, the endpoint will automatically add the event id in
- // the API payload response
- const url = `/organizations/${organization.slug}/events/`;
- const tableFetchID = Symbol('tableFetchID');
- const apiPayload = eventView.getEventsAPIPayload(location) as LocationQuery &
- EventQuery;
- apiPayload.referrer = 'api.discover.query-table';
- setError('', 200);
- this.setState({isLoading: true, tableFetchID});
- metric.mark({name: `discover-events-start-${apiPayload.query}`});
- this.props.api.clear();
- this.props.api
- .requestPromise(url, {
- method: 'GET',
- includeAllArgs: true,
- query: apiPayload,
- })
- .then(([data, _, resp]) => {
- // We want to measure this metric regardless of whether we use the result
- metric.measure({
- name: 'app.api.discover-query',
- start: `discover-events-start-${apiPayload.query}`,
- data: {
- status: resp && resp.status,
- },
- });
- if (this.state.tableFetchID !== tableFetchID) {
- // invariant: a different request was initiated after this request
- return;
- }
- const {fields, ...nonFieldsMeta} = data.meta ?? {};
- // events api uses a different response format so we need to construct tableData differently
- const tableData = {
- ...data,
- meta: {...fields, ...nonFieldsMeta},
- };
- this.setState(prevState => ({
- isLoading: false,
- tableFetchID: undefined,
- error: null,
- pageLinks: resp ? resp.getResponseHeader('Link') : prevState.pageLinks,
- tableData,
- }));
- const tips: string[] = [];
- const {query, columns} = tableData?.meta?.tips ?? {};
- if (query) {
- tips.push(query);
- }
- if (columns) {
- tips.push(columns);
- }
- setTips?.(tips);
- })
- .catch(err => {
- metric.measure({
- name: 'app.api.discover-query',
- start: `discover-events-start-${apiPayload.query}`,
- data: {
- status: err.status,
- },
- });
- const message = err?.responseJSON?.detail || t('An unknown error occurred.');
- this.setState({
- isLoading: false,
- tableFetchID: undefined,
- error: message,
- pageLinks: null,
- tableData: null,
- });
- trackAnalytics('discover_search.failed', {
- organization: this.props.organization,
- search_type: 'events',
- search_source: 'discover_search',
- error: message,
- });
- setError(message, err.status);
- });
- };
- render() {
- const {eventView, onCursor} = this.props;
- const {pageLinks, tableData, isLoading, error} = this.state;
- const isFirstPage = pageLinks
- ? parseLinkHeader(pageLinks).previous.results === false
- : false;
- return (
- <Container>
- <Measurements>
- {({measurements}) => {
- const measurementKeys = Object.values(measurements).map(({key}) => key);
- return (
- <CustomMeasurementsContext.Consumer>
- {contextValue => (
- <VisuallyCompleteWithData
- id="Discover-Table"
- hasData={(tableData?.data?.length ?? 0) > 0}
- isLoading={isLoading}
- >
- <TableView
- {...this.props}
- isLoading={isLoading}
- isFirstPage={isFirstPage}
- error={error}
- eventView={eventView}
- tableData={tableData}
- measurementKeys={measurementKeys}
- spanOperationBreakdownKeys={SPAN_OP_BREAKDOWN_FIELDS}
- customMeasurements={contextValue?.customMeasurements ?? undefined}
- />
- </VisuallyCompleteWithData>
- )}
- </CustomMeasurementsContext.Consumer>
- );
- }}
- </Measurements>
- <Pagination pageLinks={pageLinks} onCursor={onCursor} />
- </Container>
- );
- }
- }
- export default withApi(Table);
- const Container = styled('div')`
- min-width: 0;
- `;
|