index.tsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. import {Fragment, useEffect, useState} from 'react';
  2. import styled from '@emotion/styled';
  3. import uniq from 'lodash/uniq';
  4. import {bulkDelete, bulkUpdate, mergeGroups} from 'sentry/actionCreators/group';
  5. import {Alert} from 'sentry/components/alert';
  6. import Checkbox from 'sentry/components/checkbox';
  7. import {tct, tn} from 'sentry/locale';
  8. import GroupStore from 'sentry/stores/groupStore';
  9. import SelectedGroupStore from 'sentry/stores/selectedGroupStore';
  10. import {useLegacyStore} from 'sentry/stores/useLegacyStore';
  11. import {space} from 'sentry/styles/space';
  12. import {Group, PageFilters} from 'sentry/types';
  13. import {trackAnalytics} from 'sentry/utils/analytics';
  14. import theme from 'sentry/utils/theme';
  15. import useApi from 'sentry/utils/useApi';
  16. import useMedia from 'sentry/utils/useMedia';
  17. import useOrganization from 'sentry/utils/useOrganization';
  18. import {useSyncedLocalStorageState} from 'sentry/utils/useSyncedLocalStorageState';
  19. import {SAVED_SEARCHES_SIDEBAR_OPEN_LOCALSTORAGE_KEY} from 'sentry/views/issueList/utils';
  20. import ActionSet from './actionSet';
  21. import Headers from './headers';
  22. import IssueListSortOptions from './sortOptions';
  23. import {BULK_LIMIT, BULK_LIMIT_STR, ConfirmAction} from './utils';
  24. type IssueListActionsProps = {
  25. allResultsVisible: boolean;
  26. displayReprocessingActions: boolean;
  27. groupIds: string[];
  28. onDelete: () => void;
  29. onSelectStatsPeriod: (period: string) => void;
  30. onSortChange: (sort: string) => void;
  31. query: string;
  32. queryCount: number;
  33. selection: PageFilters;
  34. sort: string;
  35. statsPeriod: string;
  36. onActionTaken?: (itemIds: string[]) => void;
  37. onMarkReviewed?: (itemIds: string[]) => void;
  38. };
  39. function IssueListActions({
  40. allResultsVisible,
  41. displayReprocessingActions,
  42. groupIds,
  43. onActionTaken,
  44. onDelete,
  45. onMarkReviewed,
  46. onSelectStatsPeriod,
  47. onSortChange,
  48. queryCount,
  49. query,
  50. selection,
  51. sort,
  52. statsPeriod,
  53. }: IssueListActionsProps) {
  54. const api = useApi();
  55. const organization = useOrganization();
  56. const {
  57. pageSelected,
  58. multiSelected,
  59. anySelected,
  60. allInQuerySelected,
  61. selectedIdsSet,
  62. selectedProjectSlug,
  63. setAllInQuerySelected,
  64. } = useSelectedGroupsState();
  65. const [isSavedSearchesOpen] = useSyncedLocalStorageState(
  66. SAVED_SEARCHES_SIDEBAR_OPEN_LOCALSTORAGE_KEY,
  67. false
  68. );
  69. const disableActions = useMedia(
  70. `(max-width: ${
  71. isSavedSearchesOpen ? theme.breakpoints.large : theme.breakpoints.small
  72. })`
  73. );
  74. const numIssues = selectedIdsSet.size;
  75. function actionSelectedGroups(callback: (itemIds: string[] | undefined) => void) {
  76. const selectedIds = allInQuerySelected
  77. ? undefined // undefined means "all"
  78. : groupIds.filter(itemId => selectedIdsSet.has(itemId));
  79. callback(selectedIds);
  80. SelectedGroupStore.deselectAll();
  81. }
  82. // TODO: Remove issue.category:error filter when merging/deleting performance issues is supported
  83. // This silently avoids performance issues for bulk actions
  84. const queryExcludingPerformanceIssues = `${query ?? ''} issue.category:error`;
  85. function handleDelete() {
  86. actionSelectedGroups(itemIds => {
  87. bulkDelete(
  88. api,
  89. {
  90. orgId: organization.slug,
  91. itemIds,
  92. query: queryExcludingPerformanceIssues,
  93. project: selection.projects,
  94. environment: selection.environments,
  95. ...selection.datetime,
  96. },
  97. {
  98. complete: () => {
  99. onDelete();
  100. },
  101. }
  102. );
  103. });
  104. }
  105. function handleMerge() {
  106. actionSelectedGroups(itemIds => {
  107. mergeGroups(
  108. api,
  109. {
  110. orgId: organization.slug,
  111. itemIds,
  112. query: queryExcludingPerformanceIssues,
  113. project: selection.projects,
  114. environment: selection.environments,
  115. ...selection.datetime,
  116. },
  117. {}
  118. );
  119. });
  120. }
  121. function handleUpdate(data?: any) {
  122. if (data.status === 'ignored') {
  123. const statusDetails = data.statusDetails.ignoreCount
  124. ? 'ignoreCount'
  125. : data.statusDetails.ignoreDuration
  126. ? 'ignoreDuration'
  127. : data.statusDetails.ignoreUserCount
  128. ? 'ignoreUserCount'
  129. : undefined;
  130. trackAnalytics('issues_stream.archived', {
  131. action_status_details: statusDetails,
  132. action_substatus: data.substatus,
  133. organization,
  134. });
  135. }
  136. actionSelectedGroups(itemIds => {
  137. if (data?.inbox === false) {
  138. onMarkReviewed?.(itemIds ?? []);
  139. }
  140. onActionTaken?.(itemIds ?? []);
  141. // If `itemIds` is undefined then it means we expect to bulk update all items
  142. // that match the query.
  143. //
  144. // We need to always respect the projects selected in the global selection header:
  145. // * users with no global views requires a project to be specified
  146. // * users with global views need to be explicit about what projects the query will run against
  147. const projectConstraints = {project: selection.projects};
  148. bulkUpdate(
  149. api,
  150. {
  151. orgId: organization.slug,
  152. itemIds,
  153. data,
  154. query,
  155. environment: selection.environments,
  156. ...projectConstraints,
  157. ...selection.datetime,
  158. },
  159. {}
  160. );
  161. });
  162. }
  163. return (
  164. <Sticky>
  165. <StyledFlex>
  166. {!disableActions && (
  167. <ActionsCheckbox isReprocessingQuery={displayReprocessingActions}>
  168. <Checkbox
  169. onChange={() => SelectedGroupStore.toggleSelectAll()}
  170. checked={pageSelected || (anySelected ? 'indeterminate' : false)}
  171. disabled={displayReprocessingActions}
  172. />
  173. </ActionsCheckbox>
  174. )}
  175. {!displayReprocessingActions && (
  176. <HeaderButtonsWrapper>
  177. {!disableActions && (
  178. <ActionSet
  179. queryCount={queryCount}
  180. query={query}
  181. issues={selectedIdsSet}
  182. allInQuerySelected={allInQuerySelected}
  183. anySelected={anySelected}
  184. multiSelected={multiSelected}
  185. selectedProjectSlug={selectedProjectSlug}
  186. onShouldConfirm={action =>
  187. shouldConfirm(action, {pageSelected, selectedIdsSet})
  188. }
  189. onDelete={handleDelete}
  190. onMerge={handleMerge}
  191. onUpdate={handleUpdate}
  192. />
  193. )}
  194. <IssueListSortOptions sort={sort} query={query} onSelect={onSortChange} />
  195. </HeaderButtonsWrapper>
  196. )}
  197. <Headers
  198. onSelectStatsPeriod={onSelectStatsPeriod}
  199. anySelected={anySelected}
  200. selection={selection}
  201. statsPeriod={statsPeriod}
  202. isReprocessingQuery={displayReprocessingActions}
  203. isSavedSearchesOpen={isSavedSearchesOpen}
  204. />
  205. </StyledFlex>
  206. {!allResultsVisible && pageSelected && (
  207. <Alert type="warning" system>
  208. <SelectAllNotice data-test-id="issue-list-select-all-notice">
  209. {allInQuerySelected ? (
  210. queryCount >= BULK_LIMIT ? (
  211. tct(
  212. 'Selected up to the first [count] issues that match this search query.',
  213. {
  214. count: BULK_LIMIT_STR,
  215. }
  216. )
  217. ) : (
  218. tct('Selected all [count] issues that match this search query.', {
  219. count: queryCount,
  220. })
  221. )
  222. ) : (
  223. <Fragment>
  224. {tn(
  225. '%s issue on this page selected.',
  226. '%s issues on this page selected.',
  227. numIssues
  228. )}
  229. <SelectAllLink
  230. onClick={() => setAllInQuerySelected(true)}
  231. data-test-id="issue-list-select-all-notice-link"
  232. >
  233. {queryCount >= BULK_LIMIT
  234. ? tct(
  235. 'Select the first [count] issues that match this search query.',
  236. {
  237. count: BULK_LIMIT_STR,
  238. }
  239. )
  240. : tct('Select all [count] issues that match this search query.', {
  241. count: queryCount,
  242. })}
  243. </SelectAllLink>
  244. </Fragment>
  245. )}
  246. </SelectAllNotice>
  247. </Alert>
  248. )}
  249. </Sticky>
  250. );
  251. }
  252. function useSelectedGroupsState() {
  253. const [allInQuerySelected, setAllInQuerySelected] = useState(false);
  254. const selectedIds = useLegacyStore(SelectedGroupStore);
  255. const selected = SelectedGroupStore.getSelectedIds();
  256. const projects = [...selected]
  257. .map(id => GroupStore.get(id))
  258. .filter((group): group is Group => !!(group && group.project))
  259. .map(group => group.project.slug);
  260. const uniqProjects = uniq(projects);
  261. // we only want selectedProjectSlug set if there is 1 project
  262. // more or fewer should result in a null so that the action toolbar
  263. // can behave correctly.
  264. const selectedProjectSlug = uniqProjects.length === 1 ? uniqProjects[0] : undefined;
  265. const pageSelected = SelectedGroupStore.allSelected();
  266. const multiSelected = SelectedGroupStore.multiSelected();
  267. const anySelected = SelectedGroupStore.anySelected();
  268. const selectedIdsSet = SelectedGroupStore.getSelectedIds();
  269. useEffect(() => {
  270. setAllInQuerySelected(false);
  271. }, [selectedIds]);
  272. return {
  273. pageSelected,
  274. multiSelected,
  275. anySelected,
  276. allInQuerySelected,
  277. selectedIdsSet,
  278. selectedProjectSlug,
  279. setAllInQuerySelected,
  280. };
  281. }
  282. function shouldConfirm(
  283. action: ConfirmAction,
  284. {pageSelected, selectedIdsSet}: {pageSelected: boolean; selectedIdsSet: Set<string>}
  285. ) {
  286. switch (action) {
  287. case ConfirmAction.RESOLVE:
  288. case ConfirmAction.UNRESOLVE:
  289. case ConfirmAction.IGNORE:
  290. case ConfirmAction.UNBOOKMARK: {
  291. return pageSelected && selectedIdsSet.size > 1;
  292. }
  293. case ConfirmAction.BOOKMARK:
  294. return selectedIdsSet.size > 1;
  295. case ConfirmAction.MERGE:
  296. case ConfirmAction.DELETE:
  297. default:
  298. return true; // By default, should confirm ...
  299. }
  300. }
  301. const Sticky = styled('div')`
  302. position: sticky;
  303. z-index: ${p => p.theme.zIndex.issuesList.stickyHeader};
  304. top: -1px;
  305. `;
  306. const StyledFlex = styled('div')`
  307. display: flex;
  308. min-height: 45px;
  309. padding-top: ${space(1)};
  310. padding-bottom: ${space(1)};
  311. align-items: center;
  312. background: ${p => p.theme.backgroundSecondary};
  313. border: 1px solid ${p => p.theme.border};
  314. border-top: none;
  315. border-radius: ${p => p.theme.panelBorderRadius} ${p => p.theme.panelBorderRadius} 0 0;
  316. margin: 0 -1px -1px;
  317. `;
  318. const ActionsCheckbox = styled('div')<{isReprocessingQuery: boolean}>`
  319. display: flex;
  320. align-items: center;
  321. padding-left: ${space(2)};
  322. margin-bottom: 1px;
  323. ${p => p.isReprocessingQuery && 'flex: 1'};
  324. `;
  325. const HeaderButtonsWrapper = styled('div')`
  326. @media (min-width: ${p => p.theme.breakpoints.large}) {
  327. width: 50%;
  328. }
  329. flex: 1;
  330. margin: 0 ${space(1)};
  331. display: grid;
  332. gap: ${space(0.5)};
  333. grid-auto-flow: column;
  334. justify-content: flex-start;
  335. white-space: nowrap;
  336. `;
  337. const SelectAllNotice = styled('div')`
  338. display: flex;
  339. flex-wrap: wrap;
  340. justify-content: center;
  341. a:not([role='button']) {
  342. color: ${p => p.theme.linkColor};
  343. border-bottom: none;
  344. }
  345. `;
  346. const SelectAllLink = styled('a')`
  347. margin-left: ${space(1)};
  348. `;
  349. export {IssueListActions};
  350. export default IssueListActions;