index.tsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  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 ActionSet from './actionSet';
  19. import Headers from './headers';
  20. import IssueListSortOptions from './sortOptions';
  21. import {BULK_LIMIT, BULK_LIMIT_STR, ConfirmAction} from './utils';
  22. type IssueListActionsProps = {
  23. allResultsVisible: boolean;
  24. displayCount: React.ReactNode;
  25. displayReprocessingActions: boolean;
  26. groupIds: string[];
  27. isSavedSearchesOpen: boolean;
  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. isSavedSearchesOpen,
  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 disableActions = useMedia(
  67. `(max-width: ${
  68. isSavedSearchesOpen ? theme.breakpoints.large : theme.breakpoints.small
  69. })`
  70. );
  71. const numIssues = selectedIdsSet.size;
  72. function actionSelectedGroups(callback: (itemIds: string[] | undefined) => void) {
  73. const selectedIds = allInQuerySelected
  74. ? undefined // undefined means "all"
  75. : groupIds.filter(itemId => selectedIdsSet.has(itemId));
  76. callback(selectedIds);
  77. SelectedGroupStore.deselectAll();
  78. }
  79. // TODO: Remove this when merging/deleting performance issues is supported
  80. // This silently avoids performance issues for bulk actions
  81. const queryExcludingPerformanceIssues = organization.features.includes(
  82. 'performance-issues'
  83. )
  84. ? `${query ?? ''} issue.category:error`
  85. : query;
  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. />
  204. </StyledFlex>
  205. {!allResultsVisible && pageSelected && (
  206. <Alert type="warning" system>
  207. <SelectAllNotice data-test-id="issue-list-select-all-notice">
  208. {allInQuerySelected ? (
  209. queryCount >= BULK_LIMIT ? (
  210. tct(
  211. 'Selected up to the first [count] issues that match this search query.',
  212. {
  213. count: BULK_LIMIT_STR,
  214. }
  215. )
  216. ) : (
  217. tct('Selected all [count] issues that match this search query.', {
  218. count: queryCount,
  219. })
  220. )
  221. ) : (
  222. <Fragment>
  223. {tn(
  224. '%s issue on this page selected.',
  225. '%s issues on this page selected.',
  226. numIssues
  227. )}
  228. <SelectAllLink
  229. onClick={() => setAllInQuerySelected(true)}
  230. data-test-id="issue-list-select-all-notice-link"
  231. >
  232. {queryCount >= BULK_LIMIT
  233. ? tct(
  234. 'Select the first [count] issues that match this search query.',
  235. {
  236. count: BULK_LIMIT_STR,
  237. }
  238. )
  239. : tct('Select all [count] issues that match this search query.', {
  240. count: queryCount,
  241. })}
  242. </SelectAllLink>
  243. </Fragment>
  244. )}
  245. </SelectAllNotice>
  246. </Alert>
  247. )}
  248. </Sticky>
  249. );
  250. }
  251. function useSelectedGroupsState() {
  252. const [allInQuerySelected, setAllInQuerySelected] = useState(false);
  253. const selectedIds = useLegacyStore(SelectedGroupStore);
  254. const selected = SelectedGroupStore.getSelectedIds();
  255. const projects = [...selected]
  256. .map(id => GroupStore.get(id))
  257. .filter((group): group is Group => !!(group && group.project))
  258. .map(group => group.project.slug);
  259. const uniqProjects = uniq(projects);
  260. // we only want selectedProjectSlug set if there is 1 project
  261. // more or fewer should result in a null so that the action toolbar
  262. // can behave correctly.
  263. const selectedProjectSlug = uniqProjects.length === 1 ? uniqProjects[0] : undefined;
  264. const pageSelected = SelectedGroupStore.allSelected();
  265. const multiSelected = SelectedGroupStore.multiSelected();
  266. const anySelected = SelectedGroupStore.anySelected();
  267. const selectedIdsSet = SelectedGroupStore.getSelectedIds();
  268. useEffect(() => {
  269. setAllInQuerySelected(false);
  270. }, [selectedIds]);
  271. return {
  272. pageSelected,
  273. multiSelected,
  274. anySelected,
  275. allInQuerySelected,
  276. selectedIdsSet,
  277. selectedProjectSlug,
  278. setAllInQuerySelected,
  279. };
  280. }
  281. function shouldConfirm(
  282. action: ConfirmAction,
  283. {pageSelected, selectedIdsSet}: {pageSelected: boolean; selectedIdsSet: Set<string>}
  284. ) {
  285. switch (action) {
  286. case ConfirmAction.RESOLVE:
  287. case ConfirmAction.UNRESOLVE:
  288. case ConfirmAction.IGNORE:
  289. case ConfirmAction.UNBOOKMARK: {
  290. return pageSelected && selectedIdsSet.size > 1;
  291. }
  292. case ConfirmAction.BOOKMARK:
  293. return selectedIdsSet.size > 1;
  294. case ConfirmAction.MERGE:
  295. case ConfirmAction.DELETE:
  296. default:
  297. return true; // By default, should confirm ...
  298. }
  299. }
  300. const Sticky = styled('div')`
  301. position: sticky;
  302. z-index: ${p => p.theme.zIndex.issuesList.stickyHeader};
  303. top: -1px;
  304. `;
  305. const StyledFlex = styled('div')`
  306. display: flex;
  307. min-height: 45px;
  308. padding-top: ${space(1)};
  309. padding-bottom: ${space(1)};
  310. align-items: center;
  311. background: ${p => p.theme.backgroundSecondary};
  312. border: 1px solid ${p => p.theme.border};
  313. border-top: none;
  314. border-radius: ${p => p.theme.borderRadius} ${p => p.theme.borderRadius} 0 0;
  315. margin: 0 -1px -1px;
  316. `;
  317. const ActionsCheckbox = styled('div')<{isReprocessingQuery: boolean}>`
  318. padding-left: ${space(2)};
  319. margin-bottom: 1px;
  320. & input[type='checkbox'] {
  321. margin: 0;
  322. display: block;
  323. }
  324. ${p => p.isReprocessingQuery && 'flex: 1'};
  325. `;
  326. const HeaderButtonsWrapper = styled('div')`
  327. @media (min-width: ${p => p.theme.breakpoints.large}) {
  328. width: 50%;
  329. }
  330. flex: 1;
  331. margin: 0 ${space(1)};
  332. display: grid;
  333. gap: ${space(0.5)};
  334. grid-auto-flow: column;
  335. justify-content: flex-start;
  336. white-space: nowrap;
  337. `;
  338. const SelectAllNotice = styled('div')`
  339. display: flex;
  340. flex-wrap: wrap;
  341. justify-content: center;
  342. a:not([role='button']) {
  343. color: ${p => p.theme.linkColor};
  344. border-bottom: none;
  345. }
  346. `;
  347. const SelectAllLink = styled('a')`
  348. margin-left: ${space(1)};
  349. `;
  350. export {IssueListActions};
  351. export default IssueListActions;