index.tsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  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 {addLoadingMessage, clearIndicators} from 'sentry/actionCreators/indicator';
  6. import {Alert} from 'sentry/components/alert';
  7. import Checkbox from 'sentry/components/checkbox';
  8. import {t, tct, tn} from 'sentry/locale';
  9. import GroupStore from 'sentry/stores/groupStore';
  10. import SelectedGroupStore from 'sentry/stores/selectedGroupStore';
  11. import {useLegacyStore} from 'sentry/stores/useLegacyStore';
  12. import {space} from 'sentry/styles/space';
  13. import {Group, PageFilters} from 'sentry/types';
  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. displayCount: React.ReactNode;
  27. displayReprocessingActions: boolean;
  28. groupIds: string[];
  29. onDelete: () => void;
  30. onSelectStatsPeriod: (period: string) => void;
  31. onSortChange: (sort: string) => void;
  32. query: string;
  33. queryCount: number;
  34. selection: PageFilters;
  35. sort: string;
  36. statsPeriod: string;
  37. onActionTaken?: (itemIds: string[]) => void;
  38. onMarkReviewed?: (itemIds: string[]) => void;
  39. };
  40. function IssueListActions({
  41. allResultsVisible,
  42. displayReprocessingActions,
  43. groupIds,
  44. onActionTaken,
  45. onDelete,
  46. onMarkReviewed,
  47. onSelectStatsPeriod,
  48. onSortChange,
  49. queryCount,
  50. query,
  51. selection,
  52. sort,
  53. statsPeriod,
  54. }: IssueListActionsProps) {
  55. const api = useApi();
  56. const organization = useOrganization();
  57. const {
  58. pageSelected,
  59. multiSelected,
  60. anySelected,
  61. allInQuerySelected,
  62. selectedIdsSet,
  63. selectedProjectSlug,
  64. setAllInQuerySelected,
  65. } = useSelectedGroupsState();
  66. const [isSavedSearchesOpen] = useSyncedLocalStorageState(
  67. SAVED_SEARCHES_SIDEBAR_OPEN_LOCALSTORAGE_KEY,
  68. false
  69. );
  70. const disableActions = useMedia(
  71. `(max-width: ${
  72. isSavedSearchesOpen ? theme.breakpoints.large : theme.breakpoints.small
  73. })`
  74. );
  75. const numIssues = selectedIdsSet.size;
  76. function actionSelectedGroups(callback: (itemIds: string[] | undefined) => void) {
  77. const selectedIds = allInQuerySelected
  78. ? undefined // undefined means "all"
  79. : groupIds.filter(itemId => selectedIdsSet.has(itemId));
  80. callback(selectedIds);
  81. SelectedGroupStore.deselectAll();
  82. }
  83. // TODO: Remove issue.category:error filter when merging/deleting performance issues is supported
  84. // This silently avoids performance issues for bulk actions
  85. const queryExcludingPerformanceIssues = `${query ?? ''} issue.category:error`;
  86. function handleDelete() {
  87. actionSelectedGroups(itemIds => {
  88. bulkDelete(
  89. api,
  90. {
  91. orgId: organization.slug,
  92. itemIds,
  93. query: queryExcludingPerformanceIssues,
  94. project: selection.projects,
  95. environment: selection.environments,
  96. ...selection.datetime,
  97. },
  98. {
  99. complete: () => {
  100. onDelete();
  101. },
  102. }
  103. );
  104. });
  105. }
  106. function handleMerge() {
  107. actionSelectedGroups(itemIds => {
  108. mergeGroups(
  109. api,
  110. {
  111. orgId: organization.slug,
  112. itemIds,
  113. query: queryExcludingPerformanceIssues,
  114. project: selection.projects,
  115. environment: selection.environments,
  116. ...selection.datetime,
  117. },
  118. {}
  119. );
  120. });
  121. }
  122. function handleUpdate(data?: any) {
  123. const hasIssueListRemovalAction = organization.features.includes(
  124. 'issue-list-removal-action'
  125. );
  126. actionSelectedGroups(itemIds => {
  127. // TODO(Kelly): remove once issue-list-removal-action feature is stable
  128. if (!hasIssueListRemovalAction) {
  129. addLoadingMessage(t('Saving changes\u2026'));
  130. }
  131. if (data?.inbox === false) {
  132. onMarkReviewed?.(itemIds ?? []);
  133. }
  134. onActionTaken?.(itemIds ?? []);
  135. // If `itemIds` is undefined then it means we expect to bulk update all items
  136. // that match the query.
  137. //
  138. // We need to always respect the projects selected in the global selection header:
  139. // * users with no global views requires a project to be specified
  140. // * users with global views need to be explicit about what projects the query will run against
  141. const projectConstraints = {project: selection.projects};
  142. bulkUpdate(
  143. api,
  144. {
  145. orgId: organization.slug,
  146. itemIds,
  147. data,
  148. query,
  149. environment: selection.environments,
  150. ...projectConstraints,
  151. ...selection.datetime,
  152. },
  153. {
  154. complete: () => {
  155. if (!hasIssueListRemovalAction) {
  156. clearIndicators();
  157. }
  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;