123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356 |
- import {Component} from 'react';
- import type {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import * as Sentry from '@sentry/react';
- import type {Location} from 'history';
- import Cookies from 'js-cookie';
- import isEqual from 'lodash/isEqual';
- import mapValues from 'lodash/mapValues';
- import omit from 'lodash/omit';
- import pickBy from 'lodash/pickBy';
- import moment from 'moment';
- import * as qs from 'query-string';
- import {addMessage} from 'sentry/actionCreators/indicator';
- import {fetchOrgMembers, indexMembersByProject} from 'sentry/actionCreators/members';
- import {fetchTagValues, loadOrganizationTags} from 'sentry/actionCreators/tags';
- import type {Client} from 'sentry/api';
- import HookOrDefault from 'sentry/components/hookOrDefault';
- import * as Layout from 'sentry/components/layouts/thirds';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {extractSelectionParameters} from 'sentry/components/organizations/pageFilters/utils';
- import type {CursorHandler} from 'sentry/components/pagination';
- import Pagination from 'sentry/components/pagination';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import QueryCount from 'sentry/components/queryCount';
- import ProcessingIssueList from 'sentry/components/stream/processingIssueList';
- import {DEFAULT_QUERY, DEFAULT_STATS_PERIOD} from 'sentry/constants';
- import {t, tct} from 'sentry/locale';
- import GroupStore from 'sentry/stores/groupStore';
- import IssueListCacheStore from 'sentry/stores/IssueListCacheStore';
- import SelectedGroupStore from 'sentry/stores/selectedGroupStore';
- import {space} from 'sentry/styles/space';
- import type {
- BaseGroup,
- Group,
- Organization,
- PageFilters,
- PriorityLevel,
- SavedSearch,
- TagCollection,
- } from 'sentry/types';
- import {GroupStatus, IssueCategory} from 'sentry/types';
- import {defined} from 'sentry/utils';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import CursorPoller from 'sentry/utils/cursorPoller';
- import {getUtcDateString} from 'sentry/utils/dates';
- import getCurrentSentryReactRootSpan from 'sentry/utils/getCurrentSentryReactRootSpan';
- import parseApiError from 'sentry/utils/parseApiError';
- import parseLinkHeader from 'sentry/utils/parseLinkHeader';
- import {
- makeIssuesINPObserver,
- VisuallyCompleteWithData,
- } from 'sentry/utils/performanceForSentry';
- import {decodeScalar} from 'sentry/utils/queryString';
- import type {WithRouteAnalyticsProps} from 'sentry/utils/routeAnalytics/withRouteAnalytics';
- import withRouteAnalytics from 'sentry/utils/routeAnalytics/withRouteAnalytics';
- import withApi from 'sentry/utils/withApi';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import withIssueTags from 'sentry/utils/withIssueTags';
- import withOrganization from 'sentry/utils/withOrganization';
- import withPageFilters from 'sentry/utils/withPageFilters';
- import withSavedSearches from 'sentry/utils/withSavedSearches';
- import SavedIssueSearches from 'sentry/views/issueList/savedIssueSearches';
- import type {IssueUpdateData} from 'sentry/views/issueList/types';
- import {parseIssuePrioritySearch} from 'sentry/views/issueList/utils/parseIssuePrioritySearch';
- import IssueListActions from './actions';
- import IssueListFilters from './filters';
- import GroupListBody from './groupListBody';
- import IssueListHeader from './header';
- import type {QueryCounts} from './utils';
- import {
- DEFAULT_ISSUE_STREAM_SORT,
- FOR_REVIEW_QUERIES,
- getTabs,
- getTabsWithCounts,
- isForReviewQuery,
- IssueSortOptions,
- Query,
- TAB_MAX_COUNT,
- } from './utils';
- const MAX_ITEMS = 25;
- // the default period for the graph in each issue row
- const DEFAULT_GRAPH_STATS_PERIOD = '24h';
- // the allowed period choices for graph in each issue row
- const DYNAMIC_COUNTS_STATS_PERIODS = new Set(['14d', '24h', 'auto']);
- const MAX_ISSUES_COUNT = 100;
- type Params = {
- orgId: string;
- };
- type Props = {
- api: Client;
- location: Location;
- organization: Organization;
- params: Params;
- savedSearch: SavedSearch;
- savedSearchLoading: boolean;
- savedSearches: SavedSearch[];
- selectedSearchId: string;
- selection: PageFilters;
- tags: TagCollection;
- } & RouteComponentProps<{}, {searchId?: string}> &
- WithRouteAnalyticsProps;
- type State = {
- error: string | null;
- groupIds: string[];
- issuesLoading: boolean;
- memberList: ReturnType<typeof indexMembersByProject>;
- pageLinks: string;
- /**
- * Current query total
- */
- queryCount: number;
- /**
- * Counts for each inbox tab
- */
- queryCounts: QueryCounts;
- queryMaxCount: number;
- realtimeActive: boolean;
- selectAllActive: boolean;
- // Will be set to true if there is valid session data from issue-stats api call
- query?: string;
- };
- interface EndpointParams extends Partial<PageFilters['datetime']> {
- environment: string[];
- project: number[];
- cursor?: string;
- groupStatsPeriod?: string | null;
- page?: number | string;
- query?: string;
- sort?: string;
- statsPeriod?: string | null;
- useGroupSnubaDataset?: boolean;
- }
- type CountsEndpointParams = Omit<EndpointParams, 'cursor' | 'page' | 'query'> & {
- query: string[];
- };
- type StatEndpointParams = Omit<EndpointParams, 'cursor' | 'page'> & {
- groups: string[];
- expand?: string | string[];
- };
- const DataConsentBanner = HookOrDefault({
- hookName: 'component:data-consent-banner',
- defaultComponent: null,
- });
- class IssueListOverview extends Component<Props, State> {
- state: State = this.getInitialState();
- getInitialState() {
- const realtimeActiveCookie = Cookies.get('realtimeActive');
- const realtimeActive =
- typeof realtimeActiveCookie === 'undefined'
- ? false
- : realtimeActiveCookie === 'true';
- return {
- groupIds: [],
- actionTaken: false,
- selectAllActive: false,
- realtimeActive,
- pageLinks: '',
- queryCount: 0,
- queryCounts: {},
- queryMaxCount: 0,
- error: null,
- issuesLoading: true,
- memberList: {},
- };
- }
- componentDidMount() {
- this._performanceObserver = makeIssuesINPObserver();
- this._poller = new CursorPoller({
- linkPreviousHref: parseLinkHeader(this.state.pageLinks)?.previous?.href,
- success: this.onRealtimePoll,
- });
- // Wait for saved searches to load so if the user is on a saved search
- // or they have a pinned search we load the correct data the first time.
- // But if searches are already there, we can go right to fetching issues
- if (
- !this.props.savedSearchLoading ||
- this.props.organization.features.includes('issue-stream-performance')
- ) {
- const loadedFromCache = this.loadFromCache();
- if (!loadedFromCache) {
- // It's possible the projects query parameter is not yet ready and this
- // request will be repeated in componentDidUpdate
- this.fetchData();
- }
- }
- this.fetchTags();
- this.fetchMemberList();
- // let custom analytics take control
- this.props.setDisableRouteAnalytics?.();
- }
- componentDidUpdate(prevProps: Props, prevState: State) {
- if (prevState.realtimeActive !== this.state.realtimeActive) {
- // User toggled realtime button
- if (this.state.realtimeActive) {
- this.resumePolling();
- } else {
- this._poller.disable();
- }
- }
- // If the project selection has changed reload the member list and tag keys
- // allowing autocomplete and tag sidebar to be more accurate.
- if (!isEqual(prevProps.selection.projects, this.props.selection.projects)) {
- this.loadFromCache();
- this.fetchMemberList();
- this.fetchTags();
- }
- const selectionChanged = !isEqual(prevProps.selection, this.props.selection);
- // Wait for saved searches to load before we attempt to fetch stream data
- // Selection changing could indicate that the projects query parameter has populated
- // and we should refetch data.
- if (this.props.savedSearchLoading && !selectionChanged) {
- return;
- }
- if (
- prevProps.savedSearchLoading &&
- !this.props.savedSearchLoading &&
- this.props.organization.features.includes('issue-stream-performance')
- ) {
- return;
- }
- if (
- prevProps.savedSearchLoading &&
- !this.props.organization.features.includes('issue-stream-performance')
- ) {
- const loadedFromCache = this.loadFromCache();
- if (!loadedFromCache) {
- this.fetchData();
- }
- return;
- }
- const prevUrlQuery = prevProps.location.query;
- const newUrlQuery = this.props.location.query;
- const prevQuery = this.getQueryFromSavedSearchOrLocation({
- savedSearch: prevProps.savedSearch,
- location: prevProps.location,
- });
- const newQuery = this.getQuery();
- const prevSort = this.getSortFromSavedSearchOrLocation({
- savedSearch: prevProps.savedSearch,
- location: prevProps.location,
- });
- const newSort = this.getSort();
- // If any important url parameter changed or saved search changed
- // reload data.
- if (
- selectionChanged ||
- prevUrlQuery.cursor !== newUrlQuery.cursor ||
- prevUrlQuery.statsPeriod !== newUrlQuery.statsPeriod ||
- prevUrlQuery.groupStatsPeriod !== newUrlQuery.groupStatsPeriod ||
- prevQuery !== newQuery ||
- prevSort !== newSort
- ) {
- this.fetchData(selectionChanged);
- } else if (
- !this._lastRequest &&
- prevState.issuesLoading === false &&
- this.state.issuesLoading
- ) {
- // Reload if we issues are loading or their loading state changed.
- // This can happen when transitionTo is called
- this.fetchData();
- }
- }
- componentWillUnmount() {
- const groups = GroupStore.getState() as Group[];
- if (groups.length > 0 && !this.state.issuesLoading && !this.state.realtimeActive) {
- IssueListCacheStore.save(this.getCacheEndpointParams(), {
- groups,
- queryCount: this.state.queryCount,
- queryMaxCount: this.state.queryMaxCount,
- pageLinks: this.state.pageLinks,
- });
- }
- if (this._performanceObserver) {
- this._performanceObserver.disconnect();
- }
- this._poller.disable();
- SelectedGroupStore.reset();
- GroupStore.reset();
- this.props.api.clear();
- this.listener?.();
- }
- private _performanceObserver: PerformanceObserver | undefined;
- private _poller: any;
- private _lastRequest: any;
- private _lastStatsRequest: any;
- private _lastFetchCountsRequest: any;
- private actionTaken = false;
- private undo = false;
- getQueryFromSavedSearchOrLocation({
- savedSearch,
- location,
- }: Pick<Props, 'savedSearch' | 'location'>): string {
- if (savedSearch) {
- return savedSearch.query;
- }
- const {query} = location.query;
- if (query !== undefined) {
- return decodeScalar(query, '');
- }
- return DEFAULT_QUERY;
- }
- getSortFromSavedSearchOrLocation({
- savedSearch,
- location,
- }: Pick<Props, 'savedSearch' | 'location'>): string {
- if (!location.query.sort && savedSearch?.id) {
- return savedSearch.sort;
- }
- if (location.query.sort) {
- return location.query.sort as string;
- }
- return DEFAULT_ISSUE_STREAM_SORT;
- }
- /**
- * Load the previous
- * @returns Returns true if the data was loaded from cache
- */
- loadFromCache(): boolean {
- const cache = IssueListCacheStore.getFromCache(this.getCacheEndpointParams());
- if (!cache) {
- return false;
- }
- this.setState(
- {
- issuesLoading: false,
- queryCount: cache.queryCount,
- queryMaxCount: cache.queryMaxCount,
- pageLinks: cache.pageLinks,
- },
- () => {
- // Handle this in the next tick to avoid being overwritten by GroupStore.reset
- // Group details clears the GroupStore at the same time this component mounts
- GroupStore.add(cache.groups);
- // Clear cache after loading
- IssueListCacheStore.reset();
- }
- );
- return true;
- }
- getQuery(): string {
- return this.getQueryFromSavedSearchOrLocation({
- savedSearch: this.props.savedSearch,
- location: this.props.location,
- });
- }
- getSort(): string {
- return this.getSortFromSavedSearchOrLocation({
- savedSearch: this.props.savedSearch,
- location: this.props.location,
- });
- }
- getGroupStatsPeriod(): string {
- let currentPeriod: string;
- if (typeof this.props.location.query?.groupStatsPeriod === 'string') {
- currentPeriod = this.props.location.query.groupStatsPeriod;
- } else {
- currentPeriod = DEFAULT_GRAPH_STATS_PERIOD;
- }
- return DYNAMIC_COUNTS_STATS_PERIODS.has(currentPeriod)
- ? currentPeriod
- : DEFAULT_GRAPH_STATS_PERIOD;
- }
- getEndpointParams = (): EndpointParams => {
- const {selection} = this.props;
- const params: EndpointParams = {
- project: selection.projects,
- environment: selection.environments,
- query: this.getQuery(),
- ...selection.datetime,
- };
- if (selection.datetime.period) {
- delete params.period;
- params.statsPeriod = selection.datetime.period;
- }
- if (params.end) {
- params.end = getUtcDateString(params.end);
- }
- if (params.start) {
- params.start = getUtcDateString(params.start);
- }
- const sort = this.getSort();
- if (sort !== DEFAULT_ISSUE_STREAM_SORT) {
- params.sort = sort;
- }
- const groupStatsPeriod = this.getGroupStatsPeriod();
- if (groupStatsPeriod !== DEFAULT_GRAPH_STATS_PERIOD) {
- params.groupStatsPeriod = groupStatsPeriod;
- }
- if (this.props.location.query.useGroupSnubaDataset) {
- params.useGroupSnubaDataset = true;
- }
- // only include defined values.
- return pickBy(params, v => defined(v)) as EndpointParams;
- };
- getCacheEndpointParams = (): EndpointParams => {
- const cursor = this.props.location.query.cursor;
- return {
- ...this.getEndpointParams(),
- cursor,
- };
- };
- getSelectedProjectIds = (): string[] => {
- return this.props.selection.projects.map(projectId => String(projectId));
- };
- fetchMemberList() {
- const projectIds = this.getSelectedProjectIds();
- fetchOrgMembers(this.props.api, this.props.organization.slug, projectIds).then(
- members => {
- this.setState({memberList: indexMembersByProject(members)});
- }
- );
- }
- fetchTags() {
- const {api, organization, selection} = this.props;
- loadOrganizationTags(api, organization.slug, selection);
- }
- fetchStats = (groups: string[]) => {
- // If we have no groups to fetch, just skip stats
- if (!groups.length) {
- return;
- }
- const requestParams: StatEndpointParams = {
- ...this.getEndpointParams(),
- groups,
- };
- // If no stats period values are set, use default
- if (!requestParams.statsPeriod && !requestParams.start) {
- requestParams.statsPeriod = DEFAULT_STATS_PERIOD;
- }
- this._lastStatsRequest = this.props.api.request(this.groupStatsEndpoint, {
- method: 'GET',
- data: qs.stringify(requestParams),
- success: data => {
- if (!data) {
- return;
- }
- GroupStore.onPopulateStats(groups, data);
- this.trackTabViewed(groups, data, this.state.queryCount);
- },
- error: err => {
- this.setState({
- error: parseApiError(err),
- });
- },
- complete: () => {
- this._lastStatsRequest = null;
- // End navigation transaction to prevent additional page requests from impacting page metrics.
- // Other transactions include stacktrace preview request
- const currentSpan = Sentry.getActiveSpan();
- const rootSpan = currentSpan ? Sentry.getRootSpan(currentSpan) : undefined;
- if (rootSpan && Sentry.spanToJSON(rootSpan).op === 'navigation') {
- rootSpan.end();
- }
- },
- });
- };
- fetchCounts = (currentQueryCount: number, fetchAllCounts: boolean) => {
- const {queryCounts: _queryCounts} = this.state;
- let queryCounts: QueryCounts = {..._queryCounts};
- const endpointParams = this.getEndpointParams();
- const tabQueriesWithCounts = getTabsWithCounts();
- const currentTabQuery = tabQueriesWithCounts.includes(endpointParams.query as Query)
- ? endpointParams.query
- : null;
- // Update the count based on the exact number of issues, these shown as is
- if (currentTabQuery) {
- queryCounts[currentTabQuery] = {
- count: currentQueryCount,
- hasMore: false,
- };
- }
- this.setState({queryCounts});
- // If all tabs' counts are fetched, skip and only set
- if (
- fetchAllCounts ||
- !tabQueriesWithCounts.every(tabQuery => queryCounts[tabQuery] !== undefined)
- ) {
- const requestParams: CountsEndpointParams = {
- ...omit(endpointParams, 'query'),
- // fetch the counts for the tabs whose counts haven't been fetched yet
- query: tabQueriesWithCounts.filter(_query => _query !== currentTabQuery),
- };
- // If no stats period values are set, use default
- if (!requestParams.statsPeriod && !requestParams.start) {
- requestParams.statsPeriod = DEFAULT_STATS_PERIOD;
- }
- this._lastFetchCountsRequest = this.props.api.request(this.groupCountsEndpoint, {
- method: 'GET',
- data: qs.stringify(requestParams),
- success: data => {
- if (!data) {
- return;
- }
- // Counts coming from the counts endpoint is limited to 100, for >= 100 we display 99+
- queryCounts = {
- ...queryCounts,
- ...mapValues(data, (count: number) => ({
- count,
- hasMore: count > TAB_MAX_COUNT,
- })),
- };
- },
- error: () => {
- this.setState({queryCounts: {}});
- },
- complete: () => {
- this._lastFetchCountsRequest = null;
- this.setState({queryCounts});
- },
- });
- }
- };
- fetchData = (fetchAllCounts = false) => {
- const {organization} = this.props;
- const query = this.getQuery();
- if (this.state.realtimeActive || (!this.actionTaken && !this.undo)) {
- GroupStore.loadInitialData([]);
- this.setState({
- issuesLoading: true,
- queryCount: 0,
- error: null,
- });
- }
- const span = getCurrentSentryReactRootSpan();
- span?.setAttribute('query.sort', this.getSort());
- this.setState({
- error: null,
- });
- // Used for Issue Stream Performance project, enabled means we are doing saved search look up in the backend
- const savedSearchLookupEnabled = 0;
- const savedSearchLookupDisabled = 1;
- const requestParams: any = {
- ...this.getEndpointParams(),
- limit: MAX_ITEMS,
- shortIdLookup: 1,
- savedSearch: this.props.organization.features.includes('issue-stream-performance')
- ? this.props.savedSearchLoading
- ? savedSearchLookupEnabled
- : savedSearchLookupDisabled
- : savedSearchLookupDisabled,
- };
- if (
- this.props.organization.features.includes('issue-stream-performance') &&
- this.props.selectedSearchId
- ) {
- requestParams.searchId = this.props.selectedSearchId;
- }
- if (
- this.props.organization.features.includes('issue-stream-performance') &&
- this.props.savedSearchLoading &&
- !defined(this.props.location.query.query)
- ) {
- delete requestParams.query;
- }
- const currentQuery = this.props.location.query || {};
- if ('cursor' in currentQuery) {
- requestParams.cursor = currentQuery.cursor;
- }
- // If no stats period values are set, use default
- if (!requestParams.statsPeriod && !requestParams.start) {
- requestParams.statsPeriod = DEFAULT_STATS_PERIOD;
- }
- requestParams.expand = ['owners', 'inbox'];
- requestParams.collapse = ['stats', 'unhandled'];
- if (this._lastRequest) {
- this._lastRequest.cancel();
- }
- if (this._lastStatsRequest) {
- this._lastStatsRequest.cancel();
- }
- if (this._lastFetchCountsRequest) {
- this._lastFetchCountsRequest.cancel();
- }
- this._poller.disable();
- this._lastRequest = this.props.api.request(this.groupListEndpoint, {
- method: 'GET',
- data: qs.stringify(requestParams),
- success: (data, _, resp) => {
- if (!resp) {
- return;
- }
- // If this is a direct hit, we redirect to the intended result directly.
- if (resp.getResponseHeader('X-Sentry-Direct-Hit') === '1') {
- let redirect: string;
- if (data[0]?.matchingEventId) {
- const {id, matchingEventId} = data[0];
- redirect = `/organizations/${organization.slug}/issues/${id}/events/${matchingEventId}/`;
- } else {
- const {id} = data[0];
- redirect = `/organizations/${organization.slug}/issues/${id}/`;
- }
- browserHistory.replace(
- normalizeUrl({
- pathname: redirect,
- query: {
- referrer: 'issue-list',
- ...extractSelectionParameters(this.props.location.query),
- },
- })
- );
- return;
- }
- if (this.undo) {
- GroupStore.loadInitialData(data);
- }
- GroupStore.add(data);
- this.fetchStats(data.map((group: BaseGroup) => group.id));
- const hits = resp.getResponseHeader('X-Hits');
- const queryCount =
- typeof hits !== 'undefined' && hits ? parseInt(hits, 10) || 0 : 0;
- const maxHits = resp.getResponseHeader('X-Max-Hits');
- const queryMaxCount =
- typeof maxHits !== 'undefined' && maxHits ? parseInt(maxHits, 10) || 0 : 0;
- const pageLinks = resp.getResponseHeader('Link');
- this.fetchCounts(queryCount, fetchAllCounts);
- this.setState({
- error: null,
- issuesLoading: false,
- queryCount,
- queryMaxCount,
- pageLinks: pageLinks !== null ? pageLinks : '',
- });
- if (data.length === 0) {
- trackAnalytics('issue_search.empty', {
- organization: this.props.organization,
- search_type: 'issues',
- search_source: 'main_search',
- query,
- });
- }
- },
- error: err => {
- trackAnalytics('issue_search.failed', {
- organization: this.props.organization,
- search_type: 'issues',
- search_source: 'main_search',
- error: parseApiError(err),
- });
- this.setState({
- error: parseApiError(err),
- issuesLoading: false,
- });
- },
- complete: () => {
- this._lastRequest = null;
- this.resumePolling();
- if (!this.state.realtimeActive) {
- this.actionTaken = false;
- this.undo = false;
- }
- },
- });
- };
- resumePolling = () => {
- if (!this.state.pageLinks) {
- return;
- }
- // Only resume polling if we're on the first page of results
- const links = parseLinkHeader(this.state.pageLinks);
- if (links && !links.previous.results && this.state.realtimeActive) {
- this._poller.setEndpoint(links?.previous?.href);
- this._poller.enable();
- }
- };
- get groupListEndpoint(): string {
- const {organization} = this.props;
- return `/organizations/${organization.slug}/issues/`;
- }
- get groupCountsEndpoint(): string {
- const {organization} = this.props;
- return `/organizations/${organization.slug}/issues-count/`;
- }
- get groupStatsEndpoint(): string {
- const {organization} = this.props;
- return `/organizations/${organization.slug}/issues-stats/`;
- }
- onRealtimeChange = (realtime: boolean) => {
- Cookies.set('realtimeActive', realtime.toString());
- this.setState({realtimeActive: realtime});
- trackAnalytics('issues_stream.realtime_clicked', {
- organization: this.props.organization,
- enabled: realtime,
- });
- };
- onSelectStatsPeriod = (period: string) => {
- const {location} = this.props;
- if (period !== this.getGroupStatsPeriod()) {
- const cursor = location.query.cursor;
- const queryPageInt = parseInt(location.query.page, 10);
- const page = isNaN(queryPageInt) || !location.query.cursor ? 0 : queryPageInt;
- this.transitionTo({cursor, page, groupStatsPeriod: period});
- }
- };
- onRealtimePoll = (data: any, {queryCount}: {queryCount: number}) => {
- // Note: We do not update state with cursors from polling,
- // `CursorPoller` updates itself with new cursors
- GroupStore.addToFront(data);
- this.setState({queryCount});
- };
- listener = GroupStore.listen(() => this.onGroupChange(), undefined);
- onGroupChange() {
- const groupIds = GroupStore.getAllItems()
- .map(item => item.id)
- .slice(0, MAX_ISSUES_COUNT);
- if (!isEqual(groupIds, this.state.groupIds)) {
- this.setState({groupIds});
- }
- }
- trackTabViewed(groups: string[], data: Group[], numHits: number | null) {
- const {organization, location} = this.props;
- const page = location.query.page;
- const endpointParams = this.getEndpointParams();
- const tabQueriesWithCounts = getTabsWithCounts();
- const currentTabQuery = tabQueriesWithCounts.includes(endpointParams.query as Query)
- ? endpointParams.query
- : null;
- const tab = getTabs().find(([tabQuery]) => currentTabQuery === tabQuery)?.[1];
- const numPerfIssues = groups.filter(
- group => GroupStore.get(group)?.issueCategory === IssueCategory.PERFORMANCE
- ).length;
- // First and last seen are only available after the group has fetched stats
- // Number of issues shown whose first seen is more than 30 days ago
- const numOldIssues = data.filter((group: BaseGroup) =>
- moment(new Date(group.firstSeen)).isBefore(moment().subtract(30, 'd'))
- ).length;
- // number of issues shown whose first seen is less than 7 days
- const numNewIssues = data.filter((group: BaseGroup) =>
- moment(new Date(group.firstSeen)).isAfter(moment().subtract(7, 'd'))
- ).length;
- trackAnalytics('issues_tab.viewed', {
- organization,
- tab: tab?.analyticsName,
- page: page ? parseInt(page, 10) : 0,
- query: this.getQuery(),
- num_perf_issues: numPerfIssues,
- num_old_issues: numOldIssues,
- num_new_issues: numNewIssues,
- num_issues: data.length,
- total_issues_count: numHits,
- sort: this.getSort(),
- });
- }
- onSearch = (query: string) => {
- if (query === this.state.query) {
- // if query is the same, just re-fetch data
- this.fetchData();
- } else {
- // Clear the saved search as the user wants something else.
- this.transitionTo({query}, null);
- }
- };
- onSortChange = (sort: string) => {
- trackAnalytics('issues_stream.sort_changed', {
- organization: this.props.organization,
- sort,
- });
- this.transitionTo({sort});
- };
- onCursorChange: CursorHandler = (nextCursor, _path, _query, delta) => {
- const queryPageInt = parseInt(this.props.location.query.page, 10);
- let nextPage: number | undefined = isNaN(queryPageInt) ? delta : queryPageInt + delta;
- let cursor: undefined | string = nextCursor;
- // unset cursor and page when we navigate back to the first page
- // also reset cursor if somehow the previous button is enabled on
- // first page and user attempts to go backwards
- if (nextPage <= 0) {
- cursor = undefined;
- nextPage = undefined;
- }
- this.transitionTo({cursor, page: nextPage});
- };
- paginationAnalyticsEvent = (direction: string) => {
- trackAnalytics('issues_stream.paginate', {
- organization: this.props.organization,
- direction,
- });
- };
- /**
- * Returns true if all results in the current query are visible/on this page
- */
- allResultsVisible(): boolean {
- if (!this.state.pageLinks) {
- return false;
- }
- const links = parseLinkHeader(this.state.pageLinks);
- return links && !links.previous.results && !links.next.results;
- }
- transitionTo = (
- newParams: Partial<EndpointParams> = {},
- savedSearch: (SavedSearch & {projectId?: number}) | null = this.props.savedSearch
- ) => {
- const query = {
- ...omit(this.props.location.query, ['page', 'cursor']),
- referrer: 'issue-list',
- ...this.getEndpointParams(),
- ...newParams,
- };
- const {organization} = this.props;
- let path: string;
- if (savedSearch?.id) {
- path = `/organizations/${organization.slug}/issues/searches/${savedSearch.id}/`;
- // Remove the query as saved searches bring their own query string.
- delete query.query;
- // If we aren't going to another page in the same search
- // drop the query and replace the current project, with the saved search search project
- // if available.
- if (!query.cursor && savedSearch.projectId) {
- query.project = [savedSearch.projectId];
- }
- if (!query.cursor && !newParams.sort && savedSearch.sort) {
- query.sort = savedSearch.sort;
- }
- } else {
- path = `/organizations/${organization.slug}/issues/`;
- }
- if (
- query.sort === IssueSortOptions.INBOX &&
- !FOR_REVIEW_QUERIES.includes(query.query || '')
- ) {
- delete query.sort;
- }
- if (
- path !== this.props.location.pathname ||
- !isEqual(query, this.props.location.query)
- ) {
- browserHistory.push({
- pathname: normalizeUrl(path),
- query,
- });
- this.setState({issuesLoading: true});
- }
- };
- displayReprocessingTab() {
- return !!this.state.queryCounts?.[Query.REPROCESSING]?.count;
- }
- displayReprocessingLayout(showReprocessingTab: boolean, query: string) {
- return showReprocessingTab && query === Query.REPROCESSING;
- }
- renderLoading(): React.ReactNode {
- return (
- <Layout.Page withPadding>
- <LoadingIndicator />
- </Layout.Page>
- );
- }
- onSavedSearchSelect = (savedSearch: SavedSearch) => {
- trackAnalytics('organization_saved_search.selected', {
- organization: this.props.organization,
- search_type: 'issues',
- id: savedSearch.id ? parseInt(savedSearch.id, 10) : -1,
- is_global: savedSearch.isGlobal,
- query: savedSearch.query,
- visibility: savedSearch.visibility,
- });
- this.setState({issuesLoading: true}, () => this.transitionTo(undefined, savedSearch));
- };
- onDelete = () => {
- this.actionTaken = true;
- this.fetchData(true);
- };
- undoAction = ({data, groups}: {data: IssueUpdateData; groups: BaseGroup[]}) => {
- const {organization, selection} = this.props;
- const query = this.getQuery();
- const projectIds = selection?.projects?.map(p => p.toString());
- const endpoint = `/organizations/${organization.slug}/issues/`;
- if (this._lastRequest) {
- this._lastRequest.cancel();
- }
- if (this._lastStatsRequest) {
- this._lastStatsRequest.cancel();
- }
- if (this._lastFetchCountsRequest) {
- this._lastFetchCountsRequest.cancel();
- }
- this.props.api.request(endpoint, {
- method: 'PUT',
- data,
- query: {
- project: projectIds,
- id: groups.map(group => group.id),
- },
- success: response => {
- if (!response) {
- return;
- }
- // If on the Ignore or For Review tab, adding back to the GroupStore will make the issue show up
- // on this page for a second and then be removed (will show up on All Unresolved). This is to
- // stop this from happening and avoid confusion.
- if (!query.includes('is:ignored') && !isForReviewQuery(query)) {
- GroupStore.add(groups);
- }
- this.undo = true;
- },
- error: err => {
- this.setState({
- error: parseApiError(err),
- issuesLoading: false,
- });
- },
- complete: () => {
- this.fetchData();
- },
- });
- };
- onActionTaken = (itemIds: string[], data: IssueUpdateData) => {
- if (this.state.realtimeActive) {
- return;
- }
- const query = this.getQuery();
- const groups = itemIds.map(id => GroupStore.get(id)).filter(defined);
- if ('status' in data) {
- if (data.status === 'resolved') {
- this.onIssueAction({
- itemIds,
- actionType: 'Resolved',
- shouldRemove:
- query.includes('is:unresolved') ||
- query.includes('is:ignored') ||
- isForReviewQuery(query),
- undo: () =>
- this.undoAction({
- data: {status: GroupStatus.UNRESOLVED, statusDetails: {}},
- groups,
- }),
- });
- return;
- }
- if (data.status === 'ignored') {
- this.onIssueAction({
- itemIds,
- actionType: 'Archived',
- shouldRemove: query.includes('is:unresolved') || isForReviewQuery(query),
- undo: () =>
- this.undoAction({
- data: {status: GroupStatus.UNRESOLVED, statusDetails: {}},
- groups,
- }),
- });
- return;
- }
- }
- if ('inbox' in data && data.inbox === false) {
- this.onIssueAction({
- itemIds,
- actionType: 'Reviewed',
- shouldRemove: isForReviewQuery(query),
- });
- return;
- }
- if ('priority' in data && typeof data.priority === 'string') {
- const priorityValues = parseIssuePrioritySearch(query);
- const priority = data.priority.toLowerCase() as PriorityLevel;
- this.onIssueAction({
- itemIds,
- actionType: 'Reprioritized',
- shouldRemove: !priorityValues.has(priority),
- });
- return;
- }
- };
- onIssueAction = ({
- itemIds,
- actionType,
- shouldRemove,
- undo,
- }: {
- actionType: 'Reviewed' | 'Resolved' | 'Ignored' | 'Archived' | 'Reprioritized';
- itemIds: string[];
- shouldRemove: boolean;
- undo?: () => void;
- }) => {
- if (itemIds.length > 1) {
- addMessage(`${actionType} ${itemIds.length} ${t('Issues')}`, 'success', {
- duration: 4000,
- undo,
- });
- } else {
- const shortId = itemIds.map(item => GroupStore.get(item)?.shortId).toString();
- addMessage(`${actionType} ${shortId}`, 'success', {
- duration: 4000,
- undo,
- });
- }
- if (!shouldRemove) {
- return;
- }
- const links = parseLinkHeader(this.state.pageLinks);
- GroupStore.remove(itemIds);
- const queryCount = this.state.queryCount - itemIds.length;
- this.actionTaken = true;
- this.setState({queryCount});
- if (GroupStore.getAllItemIds().length === 0) {
- // If we run out of issues on the last page, navigate back a page to
- // avoid showing an empty state - if not on the last page, just show a spinner
- const shouldGoBackAPage = links?.previous?.results && !links?.next?.results;
- this.transitionTo({cursor: shouldGoBackAPage ? links.previous.cursor : undefined});
- this.fetchCounts(queryCount, true);
- } else {
- this.fetchData(true);
- }
- };
- tagValueLoader = (key: string, search: string) => {
- const {organization} = this.props;
- const projectIds = this.getSelectedProjectIds();
- const endpointParams = this.getEndpointParams();
- return fetchTagValues({
- api: this.props.api,
- orgSlug: organization.slug,
- tagKey: key,
- search,
- projectIds,
- endpointParams: endpointParams as any,
- });
- };
- getPageCounts = () => {
- const {location} = this.props;
- const {pageLinks, queryCount, groupIds} = this.state;
- const links = parseLinkHeader(pageLinks);
- const queryPageInt = parseInt(location.query.page, 10);
- // Cursor must be present for the page number to be used
- const page = isNaN(queryPageInt) || !location.query.cursor ? 0 : queryPageInt;
- let numPreviousIssues = Math.min(page * MAX_ITEMS, queryCount);
- // Because the query param `page` is not tied to the request, we need to
- // validate that it's correct at the first and last page
- if (!links?.next?.results || this.allResultsVisible()) {
- // On last available page
- numPreviousIssues = Math.max(queryCount - groupIds.length, 0);
- } else if (!links?.previous?.results) {
- // On first available page
- numPreviousIssues = 0;
- }
- return {
- numPreviousIssues,
- numIssuesOnPage: groupIds.length,
- };
- };
- render() {
- if (
- this.props.savedSearchLoading &&
- !this.props.organization.features.includes('issue-stream-performance')
- ) {
- return this.renderLoading();
- }
- const {
- pageLinks,
- queryCount,
- queryCounts,
- realtimeActive,
- groupIds,
- queryMaxCount,
- issuesLoading,
- error,
- } = this.state;
- const {organization, selection, router} = this.props;
- const query = this.getQuery();
- const modifiedQueryCount = Math.max(queryCount, 0);
- const projectIds = selection?.projects?.map(p => p.toString());
- const showReprocessingTab = this.displayReprocessingTab();
- const displayReprocessingActions = this.displayReprocessingLayout(
- showReprocessingTab,
- query
- );
- const {numPreviousIssues, numIssuesOnPage} = this.getPageCounts();
- return (
- <Layout.Page>
- <IssueListHeader
- organization={organization}
- query={query}
- sort={this.getSort()}
- queryCount={queryCount}
- queryCounts={queryCounts}
- realtimeActive={realtimeActive}
- onRealtimeChange={this.onRealtimeChange}
- router={router}
- displayReprocessingTab={showReprocessingTab}
- selectedProjectIds={selection.projects}
- />
- <StyledBody>
- <StyledMain>
- <DataConsentBanner source="issues" />
- <IssueListFilters query={query} onSearch={this.onSearch} />
- <Panel>
- {groupIds.length !== 0 && (
- <IssueListActions
- selection={selection}
- query={query}
- queryCount={modifiedQueryCount}
- onSelectStatsPeriod={this.onSelectStatsPeriod}
- onActionTaken={this.onActionTaken}
- onDelete={this.onDelete}
- statsPeriod={this.getGroupStatsPeriod()}
- groupIds={groupIds}
- allResultsVisible={this.allResultsVisible()}
- displayReprocessingActions={displayReprocessingActions}
- sort={this.getSort()}
- onSortChange={this.onSortChange}
- />
- )}
- <PanelBody>
- <ProcessingIssueList
- organization={organization}
- projectIds={projectIds}
- showProject
- />
- <VisuallyCompleteWithData
- hasData={this.state.groupIds.length > 0}
- id="IssueList-Body"
- isLoading={this.state.issuesLoading}
- >
- <GroupListBody
- memberList={this.state.memberList}
- groupStatsPeriod={this.getGroupStatsPeriod()}
- groupIds={groupIds}
- displayReprocessingLayout={displayReprocessingActions}
- query={query}
- selectedProjectIds={selection.projects}
- loading={issuesLoading}
- error={error}
- refetchGroups={this.fetchData}
- onActionTaken={this.onActionTaken}
- />
- </VisuallyCompleteWithData>
- </PanelBody>
- </Panel>
- <StyledPagination
- caption={
- !issuesLoading && modifiedQueryCount > 0
- ? tct('[start]-[end] of [total]', {
- start: numPreviousIssues + 1,
- end: numPreviousIssues + numIssuesOnPage,
- total: (
- <StyledQueryCount
- hideParens
- hideIfEmpty={false}
- count={modifiedQueryCount}
- max={queryMaxCount || 100}
- />
- ),
- })
- : null
- }
- pageLinks={pageLinks}
- onCursor={this.onCursorChange}
- paginationAnalyticsEvent={this.paginationAnalyticsEvent}
- />
- </StyledMain>
- <SavedIssueSearches
- {...{organization, query}}
- onSavedSearchSelect={this.onSavedSearchSelect}
- sort={this.getSort()}
- />
- </StyledBody>
- </Layout.Page>
- );
- }
- }
- export default withRouteAnalytics(
- withApi(
- withPageFilters(
- withSavedSearches(
- withOrganization(withIssueTags(Sentry.withProfiler(IssueListOverview)))
- )
- )
- )
- );
- export {IssueListOverview};
- const StyledBody = styled('div')`
- background-color: ${p => p.theme.background};
- flex: 1;
- display: grid;
- gap: 0;
- padding: 0;
- grid-template-rows: 1fr;
- grid-template-columns: minmax(0, 1fr) auto;
- grid-template-areas: 'content saved-searches';
- `;
- const StyledMain = styled('section')`
- grid-area: content;
- padding: ${space(2)};
- @media (min-width: ${p => p.theme.breakpoints.medium}) {
- padding: ${space(3)} ${space(4)};
- }
- `;
- const StyledPagination = styled(Pagination)`
- margin-top: 0;
- `;
- const StyledQueryCount = styled(QueryCount)`
- margin-left: 0;
- `;
|