overview.tsx 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301
  1. import {Component} from 'react';
  2. import {browserHistory, RouteComponentProps} from 'react-router';
  3. import styled from '@emotion/styled';
  4. import {withProfiler} from '@sentry/react';
  5. import * as Sentry from '@sentry/react';
  6. import {Location} from 'history';
  7. import Cookies from 'js-cookie';
  8. import isEqual from 'lodash/isEqual';
  9. import mapValues from 'lodash/mapValues';
  10. import omit from 'lodash/omit';
  11. import pickBy from 'lodash/pickBy';
  12. import moment from 'moment';
  13. import * as qs from 'query-string';
  14. import {addMessage} from 'sentry/actionCreators/indicator';
  15. import {fetchOrgMembers, indexMembersByProject} from 'sentry/actionCreators/members';
  16. import {fetchTagValues, loadOrganizationTags} from 'sentry/actionCreators/tags';
  17. import {Client} from 'sentry/api';
  18. import * as Layout from 'sentry/components/layouts/thirds';
  19. import LoadingIndicator from 'sentry/components/loadingIndicator';
  20. import {extractSelectionParameters} from 'sentry/components/organizations/pageFilters/utils';
  21. import Pagination, {CursorHandler} from 'sentry/components/pagination';
  22. import {Panel, PanelBody} from 'sentry/components/panels';
  23. import QueryCount from 'sentry/components/queryCount';
  24. import ProcessingIssueList from 'sentry/components/stream/processingIssueList';
  25. import {DEFAULT_QUERY, DEFAULT_STATS_PERIOD} from 'sentry/constants';
  26. import {t, tct, tn} from 'sentry/locale';
  27. import GroupStore from 'sentry/stores/groupStore';
  28. import {space} from 'sentry/styles/space';
  29. import {
  30. BaseGroup,
  31. Group,
  32. IssueCategory,
  33. Organization,
  34. PageFilters,
  35. SavedSearch,
  36. TagCollection,
  37. } from 'sentry/types';
  38. import {defined} from 'sentry/utils';
  39. import trackAdvancedAnalyticsEvent from 'sentry/utils/analytics/trackAdvancedAnalyticsEvent';
  40. import CursorPoller from 'sentry/utils/cursorPoller';
  41. import {getUtcDateString} from 'sentry/utils/dates';
  42. import getCurrentSentryReactTransaction from 'sentry/utils/getCurrentSentryReactTransaction';
  43. import parseApiError from 'sentry/utils/parseApiError';
  44. import parseLinkHeader from 'sentry/utils/parseLinkHeader';
  45. import {VisuallyCompleteWithData} from 'sentry/utils/performanceForSentry';
  46. import {decodeScalar} from 'sentry/utils/queryString';
  47. import withRouteAnalytics, {
  48. WithRouteAnalyticsProps,
  49. } from 'sentry/utils/routeAnalytics/withRouteAnalytics';
  50. import withApi from 'sentry/utils/withApi';
  51. import {normalizeUrl} from 'sentry/utils/withDomainRequired';
  52. import withIssueTags from 'sentry/utils/withIssueTags';
  53. import withOrganization from 'sentry/utils/withOrganization';
  54. import withPageFilters from 'sentry/utils/withPageFilters';
  55. import withSavedSearches from 'sentry/utils/withSavedSearches';
  56. import SavedIssueSearches from 'sentry/views/issueList/savedIssueSearches';
  57. import IssueListActions from './actions';
  58. import IssueListFilters from './filters';
  59. import GroupListBody from './groupListBody';
  60. import IssueListHeader from './header';
  61. import {
  62. DEFAULT_ISSUE_STREAM_SORT,
  63. getTabs,
  64. getTabsWithCounts,
  65. isForReviewQuery,
  66. IssueSortOptions,
  67. Query,
  68. QueryCounts,
  69. TAB_MAX_COUNT,
  70. } from './utils';
  71. const MAX_ITEMS = 25;
  72. // the default period for the graph in each issue row
  73. const DEFAULT_GRAPH_STATS_PERIOD = '24h';
  74. // the allowed period choices for graph in each issue row
  75. const DYNAMIC_COUNTS_STATS_PERIODS = new Set(['14d', '24h', 'auto']);
  76. const MAX_ISSUES_COUNT = 100;
  77. type Params = {
  78. orgId: string;
  79. };
  80. type Props = {
  81. api: Client;
  82. location: Location;
  83. organization: Organization;
  84. params: Params;
  85. savedSearch: SavedSearch;
  86. savedSearchLoading: boolean;
  87. savedSearches: SavedSearch[];
  88. selection: PageFilters;
  89. tags: TagCollection;
  90. } & RouteComponentProps<{searchId?: string}, {}> &
  91. WithRouteAnalyticsProps;
  92. type State = {
  93. actionTaken: boolean;
  94. actionTakenGroupData: Group[];
  95. error: string | null;
  96. // TODO(Kelly): remove forReview once issue-list-removal-action feature is stable
  97. forReview: boolean;
  98. groupIds: string[];
  99. issuesLoading: boolean;
  100. itemsRemoved: number;
  101. memberList: ReturnType<typeof indexMembersByProject>;
  102. pageLinks: string;
  103. /**
  104. * Current query total
  105. */
  106. queryCount: number;
  107. /**
  108. * Counts for each inbox tab
  109. */
  110. queryCounts: QueryCounts;
  111. queryMaxCount: number;
  112. realtimeActive: boolean;
  113. // TODO(Kelly): remove reviewedIds once issue-list-removal-action feature is stable
  114. reviewedIds: string[];
  115. selectAllActive: boolean;
  116. undo: boolean;
  117. // Will be set to true if there is valid session data from issue-stats api call
  118. query?: string;
  119. };
  120. type EndpointParams = Partial<PageFilters['datetime']> & {
  121. environment: string[];
  122. project: number[];
  123. cursor?: string;
  124. groupStatsPeriod?: string | null;
  125. page?: number | string;
  126. query?: string;
  127. sort?: string;
  128. statsPeriod?: string | null;
  129. };
  130. type CountsEndpointParams = Omit<EndpointParams, 'cursor' | 'page' | 'query'> & {
  131. query: string[];
  132. };
  133. type StatEndpointParams = Omit<EndpointParams, 'cursor' | 'page'> & {
  134. groups: string[];
  135. expand?: string | string[];
  136. };
  137. class IssueListOverview extends Component<Props, State> {
  138. state: State = this.getInitialState();
  139. getInitialState() {
  140. const realtimeActiveCookie = Cookies.get('realtimeActive');
  141. const realtimeActive =
  142. typeof realtimeActiveCookie === 'undefined'
  143. ? false
  144. : realtimeActiveCookie === 'true';
  145. return {
  146. groupIds: [],
  147. // TODO(Kelly): remove reviewedIds and forReview once issue-list-removal-action feature is stable
  148. reviewedIds: [],
  149. actionTaken: false,
  150. actionTakenGroupData: [],
  151. forReview: false,
  152. undo: false,
  153. selectAllActive: false,
  154. realtimeActive,
  155. pageLinks: '',
  156. itemsRemoved: 0,
  157. queryCount: 0,
  158. queryCounts: {},
  159. queryMaxCount: 0,
  160. error: null,
  161. issuesLoading: true,
  162. memberList: {},
  163. };
  164. }
  165. componentDidMount() {
  166. this._poller = new CursorPoller({
  167. linkPreviousHref: parseLinkHeader(this.state.pageLinks)?.previous?.href,
  168. success: this.onRealtimePoll,
  169. });
  170. // Wait for saved searches to load so if the user is on a saved search
  171. // or they have a pinned search we load the correct data the first time.
  172. // But if searches are already there, we can go right to fetching issues
  173. if (!this.props.savedSearchLoading) {
  174. this.fetchData();
  175. }
  176. this.fetchTags();
  177. this.fetchMemberList();
  178. // let custom analytics take control
  179. this.props.setDisableRouteAnalytics?.();
  180. }
  181. componentDidUpdate(prevProps: Props, prevState: State) {
  182. if (prevState.realtimeActive !== this.state.realtimeActive) {
  183. // User toggled realtime button
  184. if (this.state.realtimeActive) {
  185. this.resumePolling();
  186. } else {
  187. this._poller.disable();
  188. }
  189. }
  190. // If the project selection has changed reload the member list and tag keys
  191. // allowing autocomplete and tag sidebar to be more accurate.
  192. if (!isEqual(prevProps.selection.projects, this.props.selection.projects)) {
  193. this.fetchMemberList();
  194. this.fetchTags();
  195. }
  196. // TODO(Kelly): remove once issue-list-removal-action feature is stable
  197. if (!this.props.organization.features.includes('issue-list-removal-action')) {
  198. if (prevState.forReview !== this.state.forReview) {
  199. this.fetchData();
  200. }
  201. }
  202. // Wait for saved searches to load before we attempt to fetch stream data
  203. if (this.props.savedSearchLoading) {
  204. return;
  205. }
  206. if (prevProps.savedSearchLoading) {
  207. this.fetchData();
  208. return;
  209. }
  210. const prevUrlQuery = prevProps.location.query;
  211. const newUrlQuery = this.props.location.query;
  212. const prevQuery = this.getQueryFromSavedSearchOrLocation({
  213. savedSearch: prevProps.savedSearch,
  214. location: prevProps.location,
  215. });
  216. const newQuery = this.getQuery();
  217. const prevSort = this.getSortFromSavedSearchOrLocation({
  218. savedSearch: prevProps.savedSearch,
  219. location: prevProps.location,
  220. });
  221. const newSort = this.getSort();
  222. const selectionChanged = !isEqual(prevProps.selection, this.props.selection);
  223. // If any important url parameter changed or saved search changed
  224. // reload data.
  225. if (
  226. selectionChanged ||
  227. prevUrlQuery.cursor !== newUrlQuery.cursor ||
  228. prevUrlQuery.statsPeriod !== newUrlQuery.statsPeriod ||
  229. prevUrlQuery.groupStatsPeriod !== newUrlQuery.groupStatsPeriod ||
  230. prevQuery !== newQuery ||
  231. prevSort !== newSort
  232. ) {
  233. this.fetchData(selectionChanged);
  234. } else if (
  235. !this._lastRequest &&
  236. prevState.issuesLoading === false &&
  237. this.state.issuesLoading
  238. ) {
  239. // Reload if we issues are loading or their loading state changed.
  240. // This can happen when transitionTo is called
  241. this.fetchData();
  242. }
  243. }
  244. componentWillUnmount() {
  245. this._poller.disable();
  246. GroupStore.reset();
  247. this.props.api.clear();
  248. this.listener?.();
  249. }
  250. private _poller: any;
  251. private _lastRequest: any;
  252. private _lastStatsRequest: any;
  253. private _lastFetchCountsRequest: any;
  254. getQueryFromSavedSearchOrLocation({
  255. savedSearch,
  256. location,
  257. }: Pick<Props, 'savedSearch' | 'location'>): string {
  258. if (savedSearch) {
  259. return savedSearch.query;
  260. }
  261. const {query} = location.query;
  262. if (query !== undefined) {
  263. return decodeScalar(query, '');
  264. }
  265. return DEFAULT_QUERY;
  266. }
  267. getSortFromSavedSearchOrLocation({
  268. savedSearch,
  269. location,
  270. }: Pick<Props, 'savedSearch' | 'location'>): string {
  271. if (!location.query.sort && savedSearch?.id) {
  272. return savedSearch.sort;
  273. }
  274. if (location.query.sort) {
  275. return location.query.sort as string;
  276. }
  277. return DEFAULT_ISSUE_STREAM_SORT;
  278. }
  279. getQuery(): string {
  280. return this.getQueryFromSavedSearchOrLocation({
  281. savedSearch: this.props.savedSearch,
  282. location: this.props.location,
  283. });
  284. }
  285. getSort(): string {
  286. return this.getSortFromSavedSearchOrLocation({
  287. savedSearch: this.props.savedSearch,
  288. location: this.props.location,
  289. });
  290. }
  291. getGroupStatsPeriod(): string {
  292. let currentPeriod: string;
  293. if (typeof this.props.location.query?.groupStatsPeriod === 'string') {
  294. currentPeriod = this.props.location.query.groupStatsPeriod;
  295. } else if (this.getSort() === IssueSortOptions.TREND) {
  296. // Default to the larger graph when sorting by relative change
  297. currentPeriod = 'auto';
  298. } else {
  299. currentPeriod = DEFAULT_GRAPH_STATS_PERIOD;
  300. }
  301. return DYNAMIC_COUNTS_STATS_PERIODS.has(currentPeriod)
  302. ? currentPeriod
  303. : DEFAULT_GRAPH_STATS_PERIOD;
  304. }
  305. getEndpointParams = (): EndpointParams => {
  306. const {selection} = this.props;
  307. const params: EndpointParams = {
  308. project: selection.projects,
  309. environment: selection.environments,
  310. query: this.getQuery(),
  311. ...selection.datetime,
  312. };
  313. if (selection.datetime.period) {
  314. delete params.period;
  315. params.statsPeriod = selection.datetime.period;
  316. }
  317. if (params.end) {
  318. params.end = getUtcDateString(params.end);
  319. }
  320. if (params.start) {
  321. params.start = getUtcDateString(params.start);
  322. }
  323. const sort = this.getSort();
  324. if (sort !== DEFAULT_ISSUE_STREAM_SORT) {
  325. params.sort = sort;
  326. }
  327. const groupStatsPeriod = this.getGroupStatsPeriod();
  328. if (groupStatsPeriod !== DEFAULT_GRAPH_STATS_PERIOD) {
  329. params.groupStatsPeriod = groupStatsPeriod;
  330. }
  331. // only include defined values.
  332. return pickBy(params, v => defined(v)) as EndpointParams;
  333. };
  334. getSelectedProjectIds = (): string[] => {
  335. return this.props.selection.projects.map(projectId => String(projectId));
  336. };
  337. fetchMemberList() {
  338. const projectIds = this.getSelectedProjectIds();
  339. fetchOrgMembers(this.props.api, this.props.organization.slug, projectIds).then(
  340. members => {
  341. this.setState({memberList: indexMembersByProject(members)});
  342. }
  343. );
  344. }
  345. fetchTags() {
  346. const {api, organization, selection} = this.props;
  347. loadOrganizationTags(api, organization.slug, selection);
  348. }
  349. fetchStats = (groups: string[]) => {
  350. // If we have no groups to fetch, just skip stats
  351. if (!groups.length) {
  352. return;
  353. }
  354. const requestParams: StatEndpointParams = {
  355. ...this.getEndpointParams(),
  356. groups,
  357. };
  358. // If no stats period values are set, use default
  359. if (!requestParams.statsPeriod && !requestParams.start) {
  360. requestParams.statsPeriod = DEFAULT_STATS_PERIOD;
  361. }
  362. this._lastStatsRequest = this.props.api.request(this.groupStatsEndpoint, {
  363. method: 'GET',
  364. data: qs.stringify(requestParams),
  365. success: data => {
  366. if (!data) {
  367. return;
  368. }
  369. GroupStore.onPopulateStats(groups, data);
  370. this.trackTabViewed(groups, data);
  371. },
  372. error: err => {
  373. this.setState({
  374. error: parseApiError(err),
  375. });
  376. },
  377. complete: () => {
  378. this._lastStatsRequest = null;
  379. // End navigation transaction to prevent additional page requests from impacting page metrics.
  380. // Other transactions include stacktrace preview request
  381. const currentTransaction = Sentry.getCurrentHub().getScope()?.getTransaction();
  382. if (currentTransaction?.op === 'navigation') {
  383. currentTransaction.finish();
  384. }
  385. },
  386. });
  387. };
  388. fetchCounts = (currentQueryCount: number, fetchAllCounts: boolean) => {
  389. const {organization} = this.props;
  390. const {queryCounts: _queryCounts} = this.state;
  391. let queryCounts: QueryCounts = {..._queryCounts};
  392. const endpointParams = this.getEndpointParams();
  393. const tabQueriesWithCounts = getTabsWithCounts(organization);
  394. const currentTabQuery = tabQueriesWithCounts.includes(endpointParams.query as Query)
  395. ? endpointParams.query
  396. : null;
  397. // Update the count based on the exact number of issues, these shown as is
  398. if (currentTabQuery) {
  399. queryCounts[currentTabQuery] = {
  400. count: currentQueryCount,
  401. hasMore: false,
  402. };
  403. }
  404. this.setState({queryCounts});
  405. // If all tabs' counts are fetched, skip and only set
  406. if (
  407. fetchAllCounts ||
  408. !tabQueriesWithCounts.every(tabQuery => queryCounts[tabQuery] !== undefined)
  409. ) {
  410. const requestParams: CountsEndpointParams = {
  411. ...omit(endpointParams, 'query'),
  412. // fetch the counts for the tabs whose counts haven't been fetched yet
  413. query: tabQueriesWithCounts.filter(_query => _query !== currentTabQuery),
  414. };
  415. // If no stats period values are set, use default
  416. if (!requestParams.statsPeriod && !requestParams.start) {
  417. requestParams.statsPeriod = DEFAULT_STATS_PERIOD;
  418. }
  419. this._lastFetchCountsRequest = this.props.api.request(this.groupCountsEndpoint, {
  420. method: 'GET',
  421. data: qs.stringify(requestParams),
  422. success: data => {
  423. if (!data) {
  424. return;
  425. }
  426. // Counts coming from the counts endpoint is limited to 100, for >= 100 we display 99+
  427. queryCounts = {
  428. ...queryCounts,
  429. ...mapValues(data, (count: number) => ({
  430. count,
  431. hasMore: count > TAB_MAX_COUNT,
  432. })),
  433. };
  434. },
  435. error: () => {
  436. this.setState({queryCounts: {}});
  437. },
  438. complete: () => {
  439. this._lastFetchCountsRequest = null;
  440. this.setState({queryCounts});
  441. },
  442. });
  443. }
  444. };
  445. fetchData = (fetchAllCounts = false) => {
  446. const {organization} = this.props;
  447. const query = this.getQuery();
  448. const hasIssueListRemovalAction = organization.features.includes(
  449. 'issue-list-removal-action'
  450. );
  451. // TODO(Kelly): update once issue-list-removal-action feature is stable
  452. if (hasIssueListRemovalAction && !this.state.realtimeActive) {
  453. if (!this.state.actionTaken && !this.state.undo) {
  454. GroupStore.loadInitialData([]);
  455. this.setState({
  456. issuesLoading: true,
  457. queryCount: 0,
  458. itemsRemoved: 0,
  459. error: null,
  460. });
  461. }
  462. } else {
  463. if (!this.state.reviewedIds.length || !isForReviewQuery(query)) {
  464. GroupStore.loadInitialData([]);
  465. this.setState({
  466. issuesLoading: true,
  467. queryCount: 0,
  468. itemsRemoved: 0,
  469. reviewedIds: [],
  470. error: null,
  471. });
  472. }
  473. }
  474. const transaction = getCurrentSentryReactTransaction();
  475. transaction?.setTag('query.sort', this.getSort());
  476. this.setState({
  477. itemsRemoved: 0,
  478. error: null,
  479. });
  480. const requestParams: any = {
  481. ...this.getEndpointParams(),
  482. limit: MAX_ITEMS,
  483. shortIdLookup: 1,
  484. };
  485. const currentQuery = this.props.location.query || {};
  486. if ('cursor' in currentQuery) {
  487. requestParams.cursor = currentQuery.cursor;
  488. }
  489. // If no stats period values are set, use default
  490. if (!requestParams.statsPeriod && !requestParams.start) {
  491. requestParams.statsPeriod = DEFAULT_STATS_PERIOD;
  492. }
  493. requestParams.expand = ['owners', 'inbox'];
  494. requestParams.collapse = 'stats';
  495. if (this._lastRequest) {
  496. this._lastRequest.cancel();
  497. }
  498. if (this._lastStatsRequest) {
  499. this._lastStatsRequest.cancel();
  500. }
  501. if (this._lastFetchCountsRequest) {
  502. this._lastFetchCountsRequest.cancel();
  503. }
  504. this._poller.disable();
  505. this._lastRequest = this.props.api.request(this.groupListEndpoint, {
  506. method: 'GET',
  507. data: qs.stringify(requestParams),
  508. success: (data, _, resp) => {
  509. if (!resp) {
  510. return;
  511. }
  512. // If this is a direct hit, we redirect to the intended result directly.
  513. if (resp.getResponseHeader('X-Sentry-Direct-Hit') === '1') {
  514. let redirect: string;
  515. if (data[0] && data[0].matchingEventId) {
  516. const {id, matchingEventId} = data[0];
  517. redirect = `/organizations/${organization.slug}/issues/${id}/events/${matchingEventId}/`;
  518. } else {
  519. const {id} = data[0];
  520. redirect = `/organizations/${organization.slug}/issues/${id}/`;
  521. }
  522. browserHistory.replace(
  523. normalizeUrl({
  524. pathname: redirect,
  525. query: {
  526. referrer: 'issue-list',
  527. ...extractSelectionParameters(this.props.location.query),
  528. },
  529. })
  530. );
  531. return;
  532. }
  533. if (this.state.undo) {
  534. GroupStore.loadInitialData(data);
  535. }
  536. GroupStore.add(data);
  537. // TODO(Kelly): update once issue-list-removal-action feature is stable
  538. if (!hasIssueListRemovalAction) {
  539. if (isForReviewQuery(query)) {
  540. GroupStore.remove(this.state.reviewedIds);
  541. }
  542. }
  543. this.fetchStats(data.map((group: BaseGroup) => group.id));
  544. const hits = resp.getResponseHeader('X-Hits');
  545. const queryCount =
  546. typeof hits !== 'undefined' && hits ? parseInt(hits, 10) || 0 : 0;
  547. const maxHits = resp.getResponseHeader('X-Max-Hits');
  548. const queryMaxCount =
  549. typeof maxHits !== 'undefined' && maxHits ? parseInt(maxHits, 10) || 0 : 0;
  550. const pageLinks = resp.getResponseHeader('Link');
  551. // TODO(Kelly): update once issue-list-removal-action feature is stable
  552. if (hasIssueListRemovalAction && !this.state.realtimeActive) {
  553. this.fetchCounts(queryCount, fetchAllCounts);
  554. } else {
  555. if (!this.state.forReview) {
  556. this.fetchCounts(queryCount, fetchAllCounts);
  557. }
  558. }
  559. this.setState({
  560. error: null,
  561. issuesLoading: false,
  562. queryCount,
  563. queryMaxCount,
  564. pageLinks: pageLinks !== null ? pageLinks : '',
  565. });
  566. if (data.length === 0) {
  567. trackAdvancedAnalyticsEvent('issue_search.empty', {
  568. organization: this.props.organization,
  569. search_type: 'issues',
  570. search_source: 'main_search',
  571. query,
  572. });
  573. }
  574. },
  575. error: err => {
  576. trackAdvancedAnalyticsEvent('issue_search.failed', {
  577. organization: this.props.organization,
  578. search_type: 'issues',
  579. search_source: 'main_search',
  580. error: parseApiError(err),
  581. });
  582. this.setState({
  583. error: parseApiError(err),
  584. issuesLoading: false,
  585. });
  586. },
  587. complete: () => {
  588. this._lastRequest = null;
  589. this.resumePolling();
  590. // TODO(Kelly): update once issue-list-removal-action feature is stable
  591. if (hasIssueListRemovalAction && !this.state.realtimeActive) {
  592. this.setState({actionTaken: false, undo: false});
  593. } else {
  594. this.setState({forReview: false});
  595. }
  596. },
  597. });
  598. };
  599. resumePolling = () => {
  600. if (!this.state.pageLinks) {
  601. return;
  602. }
  603. // Only resume polling if we're on the first page of results
  604. const links = parseLinkHeader(this.state.pageLinks);
  605. if (links && !links.previous.results && this.state.realtimeActive) {
  606. this._poller.setEndpoint(links?.previous?.href);
  607. this._poller.enable();
  608. }
  609. };
  610. get groupListEndpoint(): string {
  611. const {organization} = this.props;
  612. return `/organizations/${organization.slug}/issues/`;
  613. }
  614. get groupCountsEndpoint(): string {
  615. const {organization} = this.props;
  616. return `/organizations/${organization.slug}/issues-count/`;
  617. }
  618. get groupStatsEndpoint(): string {
  619. const {organization} = this.props;
  620. return `/organizations/${organization.slug}/issues-stats/`;
  621. }
  622. onRealtimeChange = (realtime: boolean) => {
  623. Cookies.set('realtimeActive', realtime.toString());
  624. this.setState({realtimeActive: realtime});
  625. trackAdvancedAnalyticsEvent('issues_stream.realtime_clicked', {
  626. organization: this.props.organization,
  627. enabled: realtime,
  628. });
  629. };
  630. onSelectStatsPeriod = (period: string) => {
  631. const {location} = this.props;
  632. if (period !== this.getGroupStatsPeriod()) {
  633. const cursor = location.query.cursor;
  634. const queryPageInt = parseInt(location.query.page, 10);
  635. const page = isNaN(queryPageInt) || !location.query.cursor ? 0 : queryPageInt;
  636. this.transitionTo({cursor, page, groupStatsPeriod: period});
  637. }
  638. };
  639. onRealtimePoll = (data: any, _links: any) => {
  640. // Note: We do not update state with cursors from polling,
  641. // `CursorPoller` updates itself with new cursors
  642. GroupStore.addToFront(data);
  643. };
  644. listener = GroupStore.listen(() => this.onGroupChange(), undefined);
  645. onGroupChange() {
  646. const {organization} = this.props;
  647. const {actionTakenGroupData} = this.state;
  648. const query = this.getQuery();
  649. const hasIssueListRemovalAction = organization.features.includes(
  650. 'issue-list-removal-action'
  651. );
  652. // TODO(Kelly): update once issue-list-removal-action feature is stable
  653. if (
  654. hasIssueListRemovalAction &&
  655. !this.state.realtimeActive &&
  656. actionTakenGroupData.length > 0
  657. ) {
  658. const filteredItems = GroupStore.getAllItems().filter(item => {
  659. return actionTakenGroupData.findIndex(data => data.id === item.id) !== -1;
  660. });
  661. const resolvedIds = filteredItems
  662. .filter(item => item.status === 'resolved')
  663. .map(id => id.id);
  664. const ignoredIds = filteredItems
  665. .filter(item => item.status === 'ignored')
  666. .map(i => i.id);
  667. // need to include resolve and ignored statuses because marking as resolved/ignored also
  668. // counts as reviewed
  669. const reviewedIds = filteredItems
  670. .filter(
  671. item => !item.inbox && item.status !== 'resolved' && item.status !== 'ignored'
  672. )
  673. .map(i => i.id);
  674. // Remove Ignored and Resolved group ids from the issue stream if on the All Unresolved,
  675. // For Review, or Ignored tab. Still include on the saved/custom search tab.
  676. if (
  677. resolvedIds.length > 0 &&
  678. (query.includes('is:unresolved') ||
  679. query.includes('is:ignored') ||
  680. isForReviewQuery(query))
  681. ) {
  682. this.onIssueAction(resolvedIds, 'Resolved');
  683. }
  684. if (
  685. ignoredIds.length > 0 &&
  686. (query.includes('is:unresolved') || isForReviewQuery(query))
  687. ) {
  688. this.onIssueAction(ignoredIds, 'Ignored');
  689. }
  690. // Remove issues that are marked as Reviewed from the For Review tab, but still include the
  691. // issues if on the All Unresolved tab or saved/custom searches.
  692. if (
  693. reviewedIds.length > 0 &&
  694. (isForReviewQuery(query) || query.includes('is:ignored'))
  695. ) {
  696. this.onIssueAction(reviewedIds, 'Reviewed');
  697. }
  698. }
  699. const groupIds = GroupStore.getAllItems()
  700. .map(item => item.id)
  701. .slice(0, MAX_ISSUES_COUNT);
  702. if (!isEqual(groupIds, this.state.groupIds)) {
  703. this.setState({groupIds});
  704. }
  705. }
  706. trackTabViewed(groups: string[], data: Group[]) {
  707. const {organization, location} = this.props;
  708. const page = location.query.page;
  709. const endpointParams = this.getEndpointParams();
  710. const tabQueriesWithCounts = getTabsWithCounts(organization);
  711. const currentTabQuery = tabQueriesWithCounts.includes(endpointParams.query as Query)
  712. ? endpointParams.query
  713. : null;
  714. const tab = getTabs(organization).find(
  715. ([tabQuery]) => currentTabQuery === tabQuery
  716. )?.[1];
  717. const numPerfIssues = groups.filter(
  718. group => GroupStore.get(group)?.issueCategory === IssueCategory.PERFORMANCE
  719. ).length;
  720. // First and last seen are only available after the group has fetched stats
  721. // Number of issues shown whose first seen is more than 30 days ago
  722. const numOldIssues = data.filter((group: BaseGroup) =>
  723. moment(new Date(group.firstSeen)).isBefore(moment().subtract(30, 'd'))
  724. ).length;
  725. // number of issues shown whose first seen is less than 7 days
  726. const numNewIssues = data.filter((group: BaseGroup) =>
  727. moment(new Date(group.firstSeen)).isAfter(moment().subtract(7, 'd'))
  728. ).length;
  729. trackAdvancedAnalyticsEvent('issues_tab.viewed', {
  730. organization,
  731. tab: tab?.analyticsName,
  732. page: page ? parseInt(page, 10) : 0,
  733. query: this.getQuery(),
  734. num_perf_issues: numPerfIssues,
  735. num_old_issues: numOldIssues,
  736. num_new_issues: numNewIssues,
  737. num_issues: data.length,
  738. });
  739. }
  740. onSearch = (query: string) => {
  741. if (query === this.state.query) {
  742. // if query is the same, just re-fetch data
  743. this.fetchData();
  744. } else {
  745. // Clear the saved search as the user wants something else.
  746. this.transitionTo({query}, null);
  747. }
  748. };
  749. onSortChange = (sort: string) => {
  750. trackAdvancedAnalyticsEvent('issues_stream.sort_changed', {
  751. organization: this.props.organization,
  752. sort,
  753. });
  754. this.transitionTo({sort});
  755. };
  756. onCursorChange: CursorHandler = (nextCursor, _path, _query, delta) => {
  757. const queryPageInt = parseInt(this.props.location.query.page, 10);
  758. let nextPage: number | undefined = isNaN(queryPageInt) ? delta : queryPageInt + delta;
  759. let cursor: undefined | string = nextCursor;
  760. // unset cursor and page when we navigate back to the first page
  761. // also reset cursor if somehow the previous button is enabled on
  762. // first page and user attempts to go backwards
  763. if (nextPage <= 0) {
  764. cursor = undefined;
  765. nextPage = undefined;
  766. }
  767. this.transitionTo({cursor, page: nextPage});
  768. };
  769. paginationAnalyticsEvent = (direction: string) => {
  770. trackAdvancedAnalyticsEvent('issues_stream.paginate', {
  771. organization: this.props.organization,
  772. direction,
  773. });
  774. };
  775. /**
  776. * Returns true if all results in the current query are visible/on this page
  777. */
  778. allResultsVisible(): boolean {
  779. if (!this.state.pageLinks) {
  780. return false;
  781. }
  782. const links = parseLinkHeader(this.state.pageLinks);
  783. return links && !links.previous.results && !links.next.results;
  784. }
  785. transitionTo = (
  786. newParams: Partial<EndpointParams> = {},
  787. savedSearch: (SavedSearch & {projectId?: number}) | null = this.props.savedSearch
  788. ) => {
  789. const query = {
  790. referrer: 'issue-list',
  791. ...this.getEndpointParams(),
  792. ...newParams,
  793. };
  794. const {organization} = this.props;
  795. let path: string;
  796. if (savedSearch && savedSearch.id) {
  797. path = `/organizations/${organization.slug}/issues/searches/${savedSearch.id}/`;
  798. // Remove the query as saved searches bring their own query string.
  799. delete query.query;
  800. // If we aren't going to another page in the same search
  801. // drop the query and replace the current project, with the saved search search project
  802. // if available.
  803. if (!query.cursor && savedSearch.projectId) {
  804. query.project = [savedSearch.projectId];
  805. }
  806. if (!query.cursor && !newParams.sort && savedSearch.sort) {
  807. query.sort = savedSearch.sort;
  808. }
  809. } else {
  810. path = `/organizations/${organization.slug}/issues/`;
  811. }
  812. // Remove inbox tab specific sort
  813. if (query.sort === IssueSortOptions.INBOX && query.query !== Query.FOR_REVIEW) {
  814. delete query.sort;
  815. }
  816. if (
  817. path !== this.props.location.pathname ||
  818. !isEqual(query, this.props.location.query)
  819. ) {
  820. browserHistory.push({
  821. pathname: normalizeUrl(path),
  822. query,
  823. });
  824. this.setState({issuesLoading: true});
  825. }
  826. };
  827. displayReprocessingTab() {
  828. const {organization} = this.props;
  829. const {queryCounts} = this.state;
  830. return (
  831. organization.features.includes('reprocessing-v2') &&
  832. !!queryCounts?.[Query.REPROCESSING]?.count
  833. );
  834. }
  835. displayReprocessingLayout(showReprocessingTab: boolean, query: string) {
  836. return showReprocessingTab && query === Query.REPROCESSING;
  837. }
  838. renderLoading(): React.ReactNode {
  839. return (
  840. <Layout.Page withPadding>
  841. <LoadingIndicator />
  842. </Layout.Page>
  843. );
  844. }
  845. onSavedSearchSelect = (savedSearch: SavedSearch) => {
  846. trackAdvancedAnalyticsEvent('organization_saved_search.selected', {
  847. organization: this.props.organization,
  848. search_type: 'issues',
  849. id: savedSearch.id ? parseInt(savedSearch.id, 10) : -1,
  850. is_global: savedSearch.isGlobal,
  851. query: savedSearch.query,
  852. visibility: savedSearch.visibility,
  853. });
  854. this.setState({issuesLoading: true}, () => this.transitionTo(undefined, savedSearch));
  855. };
  856. onDelete = () => {
  857. this.setState({actionTaken: true});
  858. this.fetchData(true);
  859. };
  860. onUndo = () => {
  861. const {organization, selection} = this.props;
  862. const {actionTakenGroupData} = this.state;
  863. const query = this.getQuery();
  864. const groupIds = actionTakenGroupData.map(data => data.id);
  865. const projectIds = selection?.projects?.map(p => p.toString());
  866. const endpoint = `/organizations/${organization.slug}/issues/`;
  867. if (this._lastRequest) {
  868. this._lastRequest.cancel();
  869. }
  870. if (this._lastStatsRequest) {
  871. this._lastStatsRequest.cancel();
  872. }
  873. if (this._lastFetchCountsRequest) {
  874. this._lastFetchCountsRequest.cancel();
  875. }
  876. this.props.api.request(endpoint, {
  877. method: 'PUT',
  878. data: {
  879. status: 'unresolved',
  880. },
  881. query: {
  882. project: projectIds,
  883. id: groupIds,
  884. },
  885. success: response => {
  886. if (!response) {
  887. return;
  888. }
  889. // If on the Ignore or For Review tab, adding back to the GroupStore will make the issue show up
  890. // on this page for a second and then be removed (will show up on All Unresolved). This is to
  891. // stop this from happening and avoid confusion.
  892. if (!query.includes('is:ignored') && !isForReviewQuery(query)) {
  893. GroupStore.add(actionTakenGroupData);
  894. }
  895. this.setState({undo: true});
  896. },
  897. error: err => {
  898. this.setState({
  899. error: parseApiError(err),
  900. issuesLoading: false,
  901. });
  902. },
  903. complete: () => {
  904. this.setState({actionTakenGroupData: []});
  905. this.fetchData();
  906. },
  907. });
  908. };
  909. onMarkReviewed = (itemIds: string[]) => {
  910. const {organization} = this.props;
  911. const query = this.getQuery();
  912. const hasIssueListRemovalAction = organization.features.includes(
  913. 'issue-list-removal-action'
  914. );
  915. if (!isForReviewQuery(query)) {
  916. if (itemIds.length > 1) {
  917. addMessage(
  918. tn('Reviewed %s Issue', 'Reviewed %s Issues', itemIds.length),
  919. 'success',
  920. {duration: 4000}
  921. );
  922. } else {
  923. const shortId = itemIds.map(item => GroupStore.get(item)?.shortId).toString();
  924. addMessage(t('Reviewed %s', shortId), 'success', {duration: 4000});
  925. }
  926. return;
  927. }
  928. const {queryCounts, itemsRemoved} = this.state;
  929. const currentQueryCount = queryCounts[query as Query];
  930. if (itemIds.length && currentQueryCount) {
  931. const inInboxCount = itemIds.filter(id => GroupStore.get(id)?.inbox).length;
  932. currentQueryCount.count -= inInboxCount;
  933. // TODO(Kelly): update once issue-list-removal-action feature is stable
  934. if (!hasIssueListRemovalAction) {
  935. this.setState({
  936. reviewedIds: itemIds,
  937. forReview: true,
  938. });
  939. }
  940. this.setState({
  941. queryCounts: {
  942. ...queryCounts,
  943. [query as Query]: currentQueryCount,
  944. },
  945. itemsRemoved: itemsRemoved + inInboxCount,
  946. });
  947. }
  948. };
  949. onActionTaken = (itemIds: string[]) => {
  950. const actionTakenGroupData = itemIds.map(id => GroupStore.get(id) as Group);
  951. this.setState({
  952. actionTakenGroupData,
  953. });
  954. };
  955. onIssueAction = (
  956. itemIds: string[],
  957. actionType: 'Reviewed' | 'Resolved' | 'Ignored'
  958. ) => {
  959. if (itemIds.length > 1) {
  960. addMessage(`${actionType} ${itemIds.length} ${t('Issues')}`, 'success', {
  961. duration: 4000,
  962. ...(actionType !== 'Reviewed' && {undo: this.onUndo}),
  963. });
  964. } else {
  965. const shortId = itemIds.map(item => GroupStore.get(item)?.shortId).toString();
  966. addMessage(`${actionType} ${shortId}`, 'success', {
  967. duration: 4000,
  968. ...(actionType !== 'Reviewed' && {undo: this.onUndo}),
  969. });
  970. }
  971. const links = parseLinkHeader(this.state.pageLinks);
  972. GroupStore.remove(itemIds);
  973. const queryCount = this.state.queryCount - itemIds.length;
  974. this.setState({
  975. actionTaken: true,
  976. queryCount,
  977. });
  978. if (GroupStore.getAllItemIds().length === 0) {
  979. // If we run out of issues on the last page, navigate back a page to
  980. // avoid showing an empty state - if not on the last page, just show a spinner
  981. const shouldGoBackAPage = links?.previous?.results && !links?.next?.results;
  982. this.transitionTo({cursor: shouldGoBackAPage ? links.previous.cursor : undefined});
  983. this.fetchCounts(queryCount, true);
  984. } else {
  985. this.fetchData(true);
  986. }
  987. };
  988. tagValueLoader = (key: string, search: string) => {
  989. const {organization} = this.props;
  990. const projectIds = this.getSelectedProjectIds();
  991. const endpointParams = this.getEndpointParams();
  992. return fetchTagValues({
  993. api: this.props.api,
  994. orgSlug: organization.slug,
  995. tagKey: key,
  996. search,
  997. projectIds,
  998. endpointParams: endpointParams as any,
  999. });
  1000. };
  1001. render() {
  1002. if (this.props.savedSearchLoading) {
  1003. return this.renderLoading();
  1004. }
  1005. const {
  1006. pageLinks,
  1007. queryCount,
  1008. queryCounts,
  1009. realtimeActive,
  1010. groupIds,
  1011. queryMaxCount,
  1012. itemsRemoved,
  1013. issuesLoading,
  1014. error,
  1015. } = this.state;
  1016. const {organization, selection, router} = this.props;
  1017. const query = this.getQuery();
  1018. const numIssuesOnPage = groupIds.length;
  1019. const modifiedQueryCount = Math.max(queryCount - itemsRemoved, 0);
  1020. const displayCount = tct('[count] of [total]', {
  1021. count: numIssuesOnPage,
  1022. total: (
  1023. <StyledQueryCount
  1024. hideParens
  1025. hideIfEmpty={false}
  1026. count={modifiedQueryCount}
  1027. max={queryMaxCount || 100}
  1028. />
  1029. ),
  1030. });
  1031. const projectIds = selection?.projects?.map(p => p.toString());
  1032. const showReprocessingTab = this.displayReprocessingTab();
  1033. const displayReprocessingActions = this.displayReprocessingLayout(
  1034. showReprocessingTab,
  1035. query
  1036. );
  1037. return (
  1038. <Layout.Page>
  1039. <IssueListHeader
  1040. organization={organization}
  1041. query={query}
  1042. sort={this.getSort()}
  1043. queryCount={queryCount}
  1044. queryCounts={queryCounts}
  1045. realtimeActive={realtimeActive}
  1046. onRealtimeChange={this.onRealtimeChange}
  1047. router={router}
  1048. displayReprocessingTab={showReprocessingTab}
  1049. selectedProjectIds={selection.projects}
  1050. />
  1051. <StyledBody>
  1052. <StyledMain>
  1053. <IssueListFilters query={query} onSearch={this.onSearch} />
  1054. <Panel>
  1055. <IssueListActions
  1056. selection={selection}
  1057. query={query}
  1058. queryCount={modifiedQueryCount}
  1059. displayCount={displayCount}
  1060. onSelectStatsPeriod={this.onSelectStatsPeriod}
  1061. onMarkReviewed={this.onMarkReviewed}
  1062. onActionTaken={this.onActionTaken}
  1063. onDelete={this.onDelete}
  1064. statsPeriod={this.getGroupStatsPeriod()}
  1065. groupIds={groupIds}
  1066. allResultsVisible={this.allResultsVisible()}
  1067. displayReprocessingActions={displayReprocessingActions}
  1068. sort={this.getSort()}
  1069. onSortChange={this.onSortChange}
  1070. />
  1071. <PanelBody>
  1072. <ProcessingIssueList
  1073. organization={organization}
  1074. projectIds={projectIds}
  1075. showProject
  1076. />
  1077. <VisuallyCompleteWithData
  1078. hasData={this.state.groupIds.length > 0}
  1079. id="IssueList-Body"
  1080. >
  1081. <GroupListBody
  1082. memberList={this.state.memberList}
  1083. groupStatsPeriod={this.getGroupStatsPeriod()}
  1084. groupIds={groupIds}
  1085. displayReprocessingLayout={displayReprocessingActions}
  1086. query={query}
  1087. sort={this.getSort()}
  1088. selectedProjectIds={selection.projects}
  1089. loading={issuesLoading}
  1090. error={error}
  1091. refetchGroups={this.fetchData}
  1092. />
  1093. </VisuallyCompleteWithData>
  1094. </PanelBody>
  1095. </Panel>
  1096. <StyledPagination
  1097. caption={
  1098. !issuesLoading
  1099. ? tct('Showing [displayCount] issues', {
  1100. displayCount,
  1101. })
  1102. : null
  1103. }
  1104. pageLinks={pageLinks}
  1105. onCursor={this.onCursorChange}
  1106. paginationAnalyticsEvent={this.paginationAnalyticsEvent}
  1107. />
  1108. </StyledMain>
  1109. <SavedIssueSearches
  1110. {...{organization, query}}
  1111. onSavedSearchSelect={this.onSavedSearchSelect}
  1112. sort={this.getSort()}
  1113. />
  1114. </StyledBody>
  1115. </Layout.Page>
  1116. );
  1117. }
  1118. }
  1119. export default withRouteAnalytics(
  1120. withApi(
  1121. withPageFilters(
  1122. withSavedSearches(withOrganization(withIssueTags(withProfiler(IssueListOverview))))
  1123. )
  1124. )
  1125. );
  1126. export {IssueListOverview};
  1127. const StyledBody = styled('div')`
  1128. background-color: ${p => p.theme.background};
  1129. flex: 1;
  1130. display: grid;
  1131. gap: 0;
  1132. padding: 0;
  1133. grid-template-rows: 1fr;
  1134. grid-template-columns: minmax(0, 1fr) auto;
  1135. grid-template-areas: 'content saved-searches';
  1136. `;
  1137. const StyledMain = styled('section')`
  1138. grid-area: content;
  1139. padding: ${space(2)};
  1140. @media (min-width: ${p => p.theme.breakpoints.medium}) {
  1141. padding: ${space(3)} ${space(4)};
  1142. }
  1143. `;
  1144. const StyledPagination = styled(Pagination)`
  1145. margin-top: 0;
  1146. `;
  1147. const StyledQueryCount = styled(QueryCount)`
  1148. margin-left: 0;
  1149. `;