123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618 |
- import type {MouseEvent} from 'react';
- import {Fragment, useMemo} from 'react';
- import styled from '@emotion/styled';
- import type {Query} from 'history';
- import {bulkDelete, bulkUpdate} from 'sentry/actionCreators/group';
- import {addLoadingMessage, clearIndicators} from 'sentry/actionCreators/indicator';
- import type {ModalRenderProps} from 'sentry/actionCreators/modal';
- import {openModal, openReprocessEventModal} from 'sentry/actionCreators/modal';
- import type {Client} from 'sentry/api';
- import Feature from 'sentry/components/acl/feature';
- import FeatureDisabled from 'sentry/components/acl/featureDisabled';
- import ArchiveActions, {getArchiveActions} from 'sentry/components/actions/archive';
- import ResolveActions from 'sentry/components/actions/resolve';
- import GuideAnchor from 'sentry/components/assistant/guideAnchor';
- import {Button, LinkButton} from 'sentry/components/button';
- import {DropdownMenu} from 'sentry/components/dropdownMenu';
- import {EnvironmentPageFilter} from 'sentry/components/organizations/environmentPageFilter';
- import {
- IconCheckmark,
- IconEllipsis,
- IconSubscribed,
- IconUnsubscribed,
- } from 'sentry/icons';
- import {t} from 'sentry/locale';
- import GroupStore from 'sentry/stores/groupStore';
- import IssueListCacheStore from 'sentry/stores/IssueListCacheStore';
- import {space} from 'sentry/styles/space';
- import type {Event} from 'sentry/types/event';
- import type {Group, GroupStatusResolution, MarkReviewed} from 'sentry/types/group';
- import {GroupStatus, GroupSubstatus, IssueCategory} from 'sentry/types/group';
- import type {Organization, SavedQueryVersions} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import {getUtcDateString} from 'sentry/utils/dates';
- import EventView from 'sentry/utils/discover/eventView';
- import {DiscoverDatasets, SavedQueryDatasets} from 'sentry/utils/discover/types';
- import {displayReprocessEventAction} from 'sentry/utils/displayReprocessEventAction';
- import {getAnalyticsDataForGroup} from 'sentry/utils/events';
- import {uniqueId} from 'sentry/utils/guid';
- import {getConfigForIssueType} from 'sentry/utils/issueTypeConfig';
- import {getAnalyicsDataForProject} from 'sentry/utils/projects';
- import normalizeUrl from 'sentry/utils/url/normalizeUrl';
- import withApi from 'sentry/utils/withApi';
- import withOrganization from 'sentry/utils/withOrganization';
- import {hasDatasetSelector} from 'sentry/views/dashboards/utils';
- import {NewIssueExperienceButton} from 'sentry/views/issueDetails/actions/newIssueExperienceButton';
- import {Divider} from 'sentry/views/issueDetails/divider';
- import {useHasStreamlinedUI} from 'sentry/views/issueDetails/utils';
- import ShareIssueModal from './shareModal';
- import SubscribeAction from './subscribeAction';
- type UpdateData =
- | {isBookmarked: boolean}
- | {isSubscribed: boolean}
- | MarkReviewed
- | GroupStatusResolution;
- const isResolutionStatus = (data: UpdateData): data is GroupStatusResolution => {
- return (data as GroupStatusResolution).status !== undefined;
- };
- type Props = {
- api: Client;
- disabled: boolean;
- group: Group;
- organization: Organization;
- project: Project;
- event?: Event;
- query?: Query;
- };
- export function Actions(props: Props) {
- const {api, group, project, organization, disabled, event, query = {}} = props;
- const {status, isBookmarked} = group;
- const bookmarkKey = isBookmarked ? 'unbookmark' : 'bookmark';
- const bookmarkTitle = isBookmarked ? t('Remove bookmark') : t('Bookmark');
- const hasRelease = !!project.features?.includes('releases');
- const isResolved = status === 'resolved';
- const isAutoResolved =
- group.status === 'resolved' ? group.statusDetails.autoResolved : undefined;
- const isIgnored = status === 'ignored';
- const hasDeleteAccess = organization.access.includes('event:admin');
- const config = useMemo(() => getConfigForIssueType(group, project), [group, project]);
- const hasStreamlinedUI = useHasStreamlinedUI();
- const {
- actions: {
- archiveUntilOccurrence: archiveUntilOccurrenceCap,
- delete: deleteCap,
- deleteAndDiscard: deleteDiscardCap,
- share: shareCap,
- resolveInRelease: resolveInReleaseCap,
- },
- discover: discoverCap,
- } = config;
- const getDiscoverUrl = () => {
- const {title, type, shortId} = group;
- const groupIsOccurrenceBacked =
- group.issueCategory === IssueCategory.PERFORMANCE && !!event?.occurrence;
- const discoverQuery = {
- id: undefined,
- name: title || type,
- fields: ['title', 'release', 'environment', 'user.display', 'timestamp'],
- orderby: '-timestamp',
- query: `issue:${shortId}`,
- projects: [Number(project.id)],
- version: 2 as SavedQueryVersions,
- range: '90d',
- dataset:
- config.usesIssuePlatform || groupIsOccurrenceBacked
- ? DiscoverDatasets.ISSUE_PLATFORM
- : undefined,
- };
- const discoverView = EventView.fromSavedQuery(discoverQuery);
- return discoverView.getResultsViewUrlTarget(
- organization.slug,
- false,
- hasDatasetSelector(organization) ? SavedQueryDatasets.ERRORS : undefined
- );
- };
- const trackIssueAction = (
- action:
- | 'shared'
- | 'deleted'
- | 'bookmarked'
- | 'subscribed'
- | 'mark_reviewed'
- | 'discarded'
- | 'open_in_discover'
- | GroupStatus,
- substatus?: GroupSubstatus | null,
- statusDetailsKey?: string
- ) => {
- const {alert_date, alert_rule_id, alert_type} = query;
- trackAnalytics('issue_details.action_clicked', {
- organization,
- action_type: action,
- action_substatus: substatus ?? undefined,
- action_status_details: statusDetailsKey,
- // Alert properties track if the user came from email/slack alerts
- alert_date:
- typeof alert_date === 'string' ? getUtcDateString(Number(alert_date)) : undefined,
- alert_rule_id: typeof alert_rule_id === 'string' ? alert_rule_id : undefined,
- alert_type: typeof alert_type === 'string' ? alert_type : undefined,
- ...getAnalyticsDataForGroup(group),
- ...getAnalyicsDataForProject(project),
- });
- };
- const onDelete = () => {
- addLoadingMessage(t('Delete event\u2026'));
- bulkDelete(
- api,
- {
- orgId: organization.slug,
- projectId: project.slug,
- itemIds: [group.id],
- },
- {
- complete: () => {
- clearIndicators();
- browserHistory.push(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/issues/`,
- query: {project: project.id},
- })
- );
- },
- }
- );
- trackIssueAction('deleted');
- IssueListCacheStore.reset();
- };
- const onUpdate = (data: UpdateData) => {
- addLoadingMessage(t('Saving changes\u2026'));
- bulkUpdate(
- api,
- {
- orgId: organization.slug,
- projectId: project.slug,
- itemIds: [group.id],
- data,
- },
- {
- complete: clearIndicators,
- }
- );
- if (isResolutionStatus(data)) {
- trackIssueAction(
- data.status,
- data.substatus,
- Object.keys(data.statusDetails || {})[0]
- );
- }
- if ((data as {inbox: boolean}).inbox !== undefined) {
- trackIssueAction('mark_reviewed');
- }
- IssueListCacheStore.reset();
- };
- const onReprocessEvent = () => {
- openReprocessEventModal({organization, groupId: group.id});
- };
- const onToggleShare = () => {
- const newIsPublic = !group.isPublic;
- if (newIsPublic) {
- trackAnalytics('issue.shared_publicly', {
- organization,
- });
- }
- trackIssueAction('shared');
- };
- const onToggleBookmark = () => {
- onUpdate({isBookmarked: !group.isBookmarked});
- trackIssueAction('bookmarked');
- };
- const onToggleSubscribe = () => {
- onUpdate({isSubscribed: !group.isSubscribed});
- trackIssueAction('subscribed');
- };
- const onDiscard = () => {
- const id = uniqueId();
- addLoadingMessage(t('Discarding event\u2026'));
- GroupStore.onDiscard(id, group.id);
- api.request(`/issues/${group.id}/`, {
- method: 'PUT',
- data: {discard: true},
- success: response => {
- GroupStore.onDiscardSuccess(id, group.id, response);
- browserHistory.push(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/issues/`,
- query: {project: project.id},
- })
- );
- },
- error: error => {
- GroupStore.onDiscardError(id, group.id, error);
- },
- complete: clearIndicators,
- });
- trackIssueAction('discarded');
- IssueListCacheStore.reset();
- };
- const renderDiscardModal = ({Body, Footer, closeModal}: ModalRenderProps) => {
- function renderDiscardDisabled({children, ...innerProps}) {
- return children({
- ...innerProps,
- renderDisabled: ({features}: {features: string[]}) => (
- <FeatureDisabled
- alert
- featureName={t('Discard and Delete')}
- features={features}
- />
- ),
- });
- }
- return (
- <Feature
- features="projects:discard-groups"
- hookName="feature-disabled:discard-groups"
- organization={organization}
- project={project}
- renderDisabled={renderDiscardDisabled}
- >
- {({hasFeature, renderDisabled, ...innerProps}) => (
- <Fragment>
- <Body>
- {!hasFeature &&
- typeof renderDisabled === 'function' &&
- renderDisabled({...innerProps, hasFeature, children: null})}
- {t(
- `Discarding this event will result in the deletion of most data associated with this issue and future events being discarded before reaching your stream. Are you sure you wish to continue?`
- )}
- </Body>
- <Footer>
- <Button onClick={closeModal}>{t('Cancel')}</Button>
- <Button
- style={{marginLeft: space(1)}}
- priority="primary"
- onClick={onDiscard}
- disabled={!hasFeature}
- >
- {t('Discard Future Events')}
- </Button>
- </Footer>
- </Fragment>
- )}
- </Feature>
- );
- };
- const openDeleteModal = () =>
- openModal(({Body, Footer, closeModal}: ModalRenderProps) => (
- <Fragment>
- <Body>
- {t('Deleting this issue is permanent. Are you sure you wish to continue?')}
- </Body>
- <Footer>
- <Button onClick={closeModal}>{t('Cancel')}</Button>
- <Button style={{marginLeft: space(1)}} priority="primary" onClick={onDelete}>
- {t('Delete')}
- </Button>
- </Footer>
- </Fragment>
- ));
- const openDiscardModal = () => {
- openModal(renderDiscardModal);
- };
- const openShareModal = () => {
- openModal(modalProps => (
- <ShareIssueModal
- {...modalProps}
- organization={organization}
- projectSlug={group.project.slug}
- groupId={group.id}
- onToggle={onToggleShare}
- />
- ));
- };
- const handleClick = (onClick: (event?: MouseEvent) => void) => {
- return function (innerEvent: MouseEvent) {
- if (disabled) {
- innerEvent.preventDefault();
- innerEvent.stopPropagation();
- return;
- }
- onClick(innerEvent);
- };
- };
- const {dropdownItems: archiveDropdownItems} = getArchiveActions({
- onUpdate,
- });
- return (
- <ActionWrapper>
- {hasStreamlinedUI &&
- (isResolved || isIgnored ? (
- <ResolvedActionWapper>
- <ResolvedWrapper>
- <IconCheckmark />
- {isResolved ? t('Resolved') : t('Archived')}
- </ResolvedWrapper>
- <Divider />
- <Button
- size="sm"
- disabled={disabled || isAutoResolved}
- onClick={() =>
- onUpdate({
- status: GroupStatus.UNRESOLVED,
- statusDetails: {},
- substatus: GroupSubstatus.ONGOING,
- })
- }
- >
- {isResolved ? t('Unresolve') : t('Unarchive')}
- </Button>
- </ResolvedActionWapper>
- ) : (
- <Fragment>
- <GuideAnchor target="resolve" position="bottom" offset={20}>
- <ResolveActions
- disableResolveInRelease={!resolveInReleaseCap.enabled}
- disabled={disabled}
- disableDropdown={disabled}
- hasRelease={hasRelease}
- latestRelease={project.latestRelease}
- onUpdate={onUpdate}
- projectSlug={project.slug}
- isResolved={isResolved}
- isAutoResolved={isAutoResolved}
- size="sm"
- priority="primary"
- />
- </GuideAnchor>
- <ArchiveActions
- className="hidden-xs"
- size="sm"
- isArchived={isIgnored}
- onUpdate={onUpdate}
- disabled={disabled}
- disableArchiveUntilOccurrence={!archiveUntilOccurrenceCap.enabled}
- />
- {!hasStreamlinedUI && (
- <EnvironmentPageFilter position="bottom-end" size="sm" />
- )}
- <SubscribeAction
- className="hidden-xs"
- disabled={disabled}
- disablePriority
- group={group}
- onClick={handleClick(onToggleSubscribe)}
- icon={group.isSubscribed ? <IconSubscribed /> : <IconUnsubscribed />}
- size="sm"
- />
- </Fragment>
- ))}
- {hasStreamlinedUI && <NewIssueExperienceButton />}
- <DropdownMenu
- triggerProps={{
- 'aria-label': t('More Actions'),
- icon: <IconEllipsis />,
- showChevron: false,
- size: 'sm',
- }}
- items={[
- ...(isIgnored
- ? []
- : [
- {
- key: 'Archive',
- className: 'hidden-sm hidden-md hidden-lg',
- label: t('Archive'),
- isSubmenu: true,
- disabled,
- children: archiveDropdownItems,
- },
- ]),
- {
- key: 'open-in-discover',
- className: 'hidden-sm hidden-md hidden-lg',
- label: t('Open in Discover'),
- to: disabled ? '' : getDiscoverUrl(),
- onAction: () => trackIssueAction('open_in_discover'),
- },
- {
- key: group.isSubscribed ? 'unsubscribe' : 'subscribe',
- className: 'hidden-sm hidden-md hidden-lg',
- label: group.isSubscribed ? t('Unsubscribe') : t('Subscribe'),
- disabled: disabled || group.subscriptionDetails?.disabled,
- onAction: onToggleSubscribe,
- },
- {
- key: 'mark-review',
- label: t('Mark reviewed'),
- disabled: !group.inbox || disabled,
- details: !group.inbox || disabled ? t('Issue has been reviewed') : undefined,
- onAction: () => onUpdate({inbox: false}),
- },
- {
- key: 'share',
- label: t('Share'),
- disabled: disabled || !shareCap.enabled,
- hidden: !organization.features.includes('shared-issues'),
- onAction: openShareModal,
- },
- {
- key: bookmarkKey,
- label: bookmarkTitle,
- onAction: onToggleBookmark,
- },
- {
- key: 'reprocess',
- label: t('Reprocess events'),
- hidden: !displayReprocessEventAction(event),
- onAction: onReprocessEvent,
- },
- {
- key: 'delete-issue',
- priority: 'danger',
- label: t('Delete'),
- hidden: !hasDeleteAccess,
- disabled: !deleteCap.enabled,
- details: deleteCap.disabledReason,
- onAction: openDeleteModal,
- },
- {
- key: 'delete-and-discard',
- priority: 'danger',
- label: t('Delete and discard future events'),
- hidden: !hasDeleteAccess,
- disabled: !deleteDiscardCap.enabled,
- details: deleteDiscardCap.disabledReason,
- onAction: openDiscardModal,
- },
- ]}
- />
- {!hasStreamlinedUI && (
- <Fragment>
- <NewIssueExperienceButton />
- <SubscribeAction
- className="hidden-xs"
- disabled={disabled}
- disablePriority
- group={group}
- onClick={handleClick(onToggleSubscribe)}
- icon={group.isSubscribed ? <IconSubscribed /> : <IconUnsubscribed />}
- size="sm"
- />
- <div className="hidden-xs">
- <EnvironmentPageFilter position="bottom-end" size="sm" />
- </div>
- {discoverCap.enabled && (
- <Feature
- hookName="feature-disabled:open-in-discover"
- features="discover-basic"
- organization={organization}
- >
- <LinkButton
- className="hidden-xs"
- disabled={disabled}
- to={disabled ? '' : getDiscoverUrl()}
- onClick={() => trackIssueAction('open_in_discover')}
- size="sm"
- >
- <GuideAnchor target="open_in_discover">
- {t('Open in Discover')}
- </GuideAnchor>
- </LinkButton>
- </Feature>
- )}
- {isResolved || isIgnored ? (
- <Button
- priority="primary"
- title={
- isAutoResolved
- ? t(
- 'This event is resolved due to the Auto Resolve configuration for this project'
- )
- : t('Change status to unresolved')
- }
- size="sm"
- disabled={disabled || isAutoResolved}
- onClick={() =>
- onUpdate({
- status: GroupStatus.UNRESOLVED,
- statusDetails: {},
- substatus: GroupSubstatus.ONGOING,
- })
- }
- >
- {isIgnored ? t('Archived') : t('Resolved')}
- </Button>
- ) : (
- <Fragment>
- <ArchiveActions
- className="hidden-xs"
- size="sm"
- isArchived={isIgnored}
- onUpdate={onUpdate}
- disabled={disabled}
- disableArchiveUntilOccurrence={!archiveUntilOccurrenceCap.enabled}
- />
- <GuideAnchor target="resolve" position="bottom" offset={20}>
- <ResolveActions
- disableResolveInRelease={!resolveInReleaseCap.enabled}
- disabled={disabled}
- disableDropdown={disabled}
- hasRelease={hasRelease}
- latestRelease={project.latestRelease}
- onUpdate={onUpdate}
- projectSlug={project.slug}
- isResolved={isResolved}
- isAutoResolved={isAutoResolved}
- size="sm"
- priority="primary"
- />
- </GuideAnchor>
- </Fragment>
- )}
- </Fragment>
- )}
- </ActionWrapper>
- );
- }
- const ActionWrapper = styled('div')`
- display: flex;
- align-items: center;
- gap: ${space(0.5)};
- `;
- const ResolvedWrapper = styled('div')`
- display: flex;
- gap: ${space(0.5)};
- align-items: center;
- color: ${p => p.theme.green400};
- font-weight: bold;
- font-size: ${p => p.theme.fontSizeLarge};
- `;
- const ResolvedActionWapper = styled('div')`
- display: flex;
- gap: ${space(1)};
- align-items: center;
- `;
- export default withApi(withOrganization(Actions));
|