index.tsx 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. import {PureComponent} from 'react';
  2. import styled from '@emotion/styled';
  3. import type {Location} from 'history';
  4. import type {EventQuery} from 'sentry/actionCreators/events';
  5. import type {Client} from 'sentry/api';
  6. import type {CursorHandler} from 'sentry/components/pagination';
  7. import Pagination from 'sentry/components/pagination';
  8. import {t} from 'sentry/locale';
  9. import type {Organization} from 'sentry/types/organization';
  10. import {metric, trackAnalytics} from 'sentry/utils/analytics';
  11. import {CustomMeasurementsContext} from 'sentry/utils/customMeasurements/customMeasurementsContext';
  12. import type {TableData} from 'sentry/utils/discover/discoverQuery';
  13. import type {LocationQuery} from 'sentry/utils/discover/eventView';
  14. import type EventView from 'sentry/utils/discover/eventView';
  15. import {isAPIPayloadSimilar} from 'sentry/utils/discover/eventView';
  16. import {SPAN_OP_BREAKDOWN_FIELDS} from 'sentry/utils/discover/fields';
  17. import Measurements from 'sentry/utils/measurements/measurements';
  18. import parseLinkHeader from 'sentry/utils/parseLinkHeader';
  19. import {VisuallyCompleteWithData} from 'sentry/utils/performanceForSentry';
  20. import withApi from 'sentry/utils/withApi';
  21. import TableView from './tableView';
  22. type TableProps = {
  23. api: Client;
  24. confirmedQuery: boolean;
  25. eventView: EventView;
  26. location: Location;
  27. onChangeShowTags: () => void;
  28. onCursor: CursorHandler;
  29. organization: Organization;
  30. setError: (msg: string, code: number) => void;
  31. showTags: boolean;
  32. title: string;
  33. isHomepage?: boolean;
  34. setTips?: (tips: string[]) => void;
  35. };
  36. type TableState = {
  37. error: null | string;
  38. isLoading: boolean;
  39. pageLinks: null | string;
  40. prevView: null | EventView;
  41. tableData: TableData | null | undefined;
  42. tableFetchID: symbol | undefined;
  43. };
  44. /**
  45. * `Table` is a container element that handles 2 things
  46. * 1. Fetch data from source
  47. * 2. Handle pagination of data
  48. *
  49. * It will pass the data it fetched to `TableView`, where the state of the
  50. * Table is maintained and controlled
  51. */
  52. class Table extends PureComponent<TableProps, TableState> {
  53. state: TableState = {
  54. isLoading: true,
  55. tableFetchID: undefined,
  56. error: null,
  57. pageLinks: null,
  58. tableData: null,
  59. prevView: null,
  60. };
  61. componentDidMount() {
  62. this.fetchData();
  63. }
  64. componentDidUpdate(prevProps: TableProps) {
  65. // Reload data if we aren't already loading, or if we've moved
  66. // from an invalid view state to a valid one.
  67. if (
  68. (!this.state.isLoading && this.shouldRefetchData(prevProps)) ||
  69. (prevProps.eventView.isValid() === false && this.props.eventView.isValid()) ||
  70. (prevProps.confirmedQuery !== this.props.confirmedQuery && this.didViewChange())
  71. ) {
  72. this.fetchData();
  73. }
  74. }
  75. didViewChange = (): boolean => {
  76. const {prevView} = this.state;
  77. const thisAPIPayload = this.props.eventView.getEventsAPIPayload(this.props.location);
  78. if (prevView === null) {
  79. return true;
  80. }
  81. const otherAPIPayload = prevView.getEventsAPIPayload(this.props.location);
  82. return !isAPIPayloadSimilar(thisAPIPayload, otherAPIPayload);
  83. };
  84. shouldRefetchData = (prevProps: TableProps): boolean => {
  85. const thisAPIPayload = this.props.eventView.getEventsAPIPayload(this.props.location);
  86. const otherAPIPayload = prevProps.eventView.getEventsAPIPayload(prevProps.location);
  87. return !isAPIPayloadSimilar(thisAPIPayload, otherAPIPayload);
  88. };
  89. fetchData = () => {
  90. const {eventView, organization, location, setError, confirmedQuery, setTips} =
  91. this.props;
  92. if (!eventView.isValid() || !confirmedQuery) {
  93. return;
  94. }
  95. this.setState({prevView: eventView});
  96. // note: If the eventView has no aggregates, the endpoint will automatically add the event id in
  97. // the API payload response
  98. const url = `/organizations/${organization.slug}/events/`;
  99. const tableFetchID = Symbol('tableFetchID');
  100. const apiPayload = eventView.getEventsAPIPayload(location) as LocationQuery &
  101. EventQuery;
  102. // To generate the target url for TRACE ID and EVENT ID links we always include a timestamp,
  103. // to speed up the trace endpoint. Adding timestamp for the non-aggregate case and
  104. // max(timestamp) for the aggregate case as fields, to accomodate this.
  105. if (
  106. eventView.hasAggregateField() &&
  107. apiPayload.field.includes('trace') &&
  108. !apiPayload.field.includes('max(timestamp)') &&
  109. !apiPayload.field.includes('timestamp')
  110. ) {
  111. apiPayload.field.push('max(timestamp)');
  112. } else if (
  113. apiPayload.field.includes('trace') &&
  114. !apiPayload.field.includes('timestamp')
  115. ) {
  116. apiPayload.field.push('timestamp');
  117. }
  118. // We are now routing to the trace view on clicking event ids. Therefore, we need the trace slug associated to the event id.
  119. // Note: Event ID or 'id' is added to the fields in the API payload response by default for all non-aggregate queries.
  120. if (!eventView.hasAggregateField()) {
  121. apiPayload.field.push('trace');
  122. apiPayload.field.push('event.type');
  123. }
  124. apiPayload.referrer = 'api.discover.query-table';
  125. setError('', 200);
  126. this.setState({isLoading: true, tableFetchID});
  127. metric.mark({name: `discover-events-start-${apiPayload.query}`});
  128. this.props.api.clear();
  129. this.props.api
  130. .requestPromise(url, {
  131. method: 'GET',
  132. includeAllArgs: true,
  133. query: apiPayload,
  134. })
  135. .then(([data, _, resp]) => {
  136. // We want to measure this metric regardless of whether we use the result
  137. metric.measure({
  138. name: 'app.api.discover-query',
  139. start: `discover-events-start-${apiPayload.query}`,
  140. data: {
  141. status: resp?.status,
  142. },
  143. });
  144. if (this.state.tableFetchID !== tableFetchID) {
  145. // invariant: a different request was initiated after this request
  146. return;
  147. }
  148. const {fields, ...nonFieldsMeta} = data.meta ?? {};
  149. // events api uses a different response format so we need to construct tableData differently
  150. const tableData = {
  151. ...data,
  152. meta: {...fields, ...nonFieldsMeta},
  153. };
  154. this.setState(prevState => ({
  155. isLoading: false,
  156. tableFetchID: undefined,
  157. error: null,
  158. pageLinks: resp ? resp.getResponseHeader('Link') : prevState.pageLinks,
  159. tableData,
  160. }));
  161. const tips: string[] = [];
  162. const {query, columns} = tableData?.meta?.tips ?? {};
  163. if (query) {
  164. tips.push(query);
  165. }
  166. if (columns) {
  167. tips.push(columns);
  168. }
  169. setTips?.(tips);
  170. })
  171. .catch(err => {
  172. metric.measure({
  173. name: 'app.api.discover-query',
  174. start: `discover-events-start-${apiPayload.query}`,
  175. data: {
  176. status: err.status,
  177. },
  178. });
  179. const message = err?.responseJSON?.detail || t('An unknown error occurred.');
  180. this.setState({
  181. isLoading: false,
  182. tableFetchID: undefined,
  183. error: message,
  184. pageLinks: null,
  185. tableData: null,
  186. });
  187. trackAnalytics('discover_search.failed', {
  188. organization: this.props.organization,
  189. search_type: 'events',
  190. search_source: 'discover_search',
  191. error: message,
  192. });
  193. setError(message, err.status);
  194. });
  195. };
  196. render() {
  197. const {eventView, onCursor} = this.props;
  198. const {pageLinks, tableData, isLoading, error} = this.state;
  199. const isFirstPage = pageLinks
  200. ? parseLinkHeader(pageLinks).previous.results === false
  201. : false;
  202. return (
  203. <Container>
  204. <Measurements>
  205. {({measurements}) => {
  206. const measurementKeys = Object.values(measurements).map(({key}) => key);
  207. return (
  208. <CustomMeasurementsContext.Consumer>
  209. {contextValue => (
  210. <VisuallyCompleteWithData
  211. id="Discover-Table"
  212. hasData={(tableData?.data?.length ?? 0) > 0}
  213. isLoading={isLoading}
  214. >
  215. <TableView
  216. {...this.props}
  217. isLoading={isLoading}
  218. isFirstPage={isFirstPage}
  219. error={error}
  220. eventView={eventView}
  221. tableData={tableData}
  222. measurementKeys={measurementKeys}
  223. spanOperationBreakdownKeys={SPAN_OP_BREAKDOWN_FIELDS}
  224. customMeasurements={contextValue?.customMeasurements ?? undefined}
  225. />
  226. </VisuallyCompleteWithData>
  227. )}
  228. </CustomMeasurementsContext.Consumer>
  229. );
  230. }}
  231. </Measurements>
  232. <Pagination pageLinks={pageLinks} onCursor={onCursor} />
  233. </Container>
  234. );
  235. }
  236. }
  237. export default withApi(Table);
  238. const Container = styled('div')`
  239. min-width: 0;
  240. `;