import {Component, Fragment, MouseEvent} from 'react'; import {browserHistory} from 'react-router'; import styled from '@emotion/styled'; import {Query} from 'history'; import {bulkDelete, bulkUpdate} from 'sentry/actionCreators/group'; import { addErrorMessage, addLoadingMessage, clearIndicators, } from 'sentry/actionCreators/indicator'; import { ModalRenderProps, openModal, openReprocessEventModal, } from 'sentry/actionCreators/modal'; import GroupActions from 'sentry/actions/groupActions'; import {Client} from 'sentry/api'; import Access from 'sentry/components/acl/access'; import Feature from 'sentry/components/acl/feature'; import FeatureDisabled from 'sentry/components/acl/featureDisabled'; import ActionButton from 'sentry/components/actions/button'; import IgnoreActions from 'sentry/components/actions/ignore'; import ResolveActions from 'sentry/components/actions/resolve'; import GuideAnchor from 'sentry/components/assistant/guideAnchor'; import Button from 'sentry/components/button'; import DropdownMenuControlV2 from 'sentry/components/dropdownMenuControlV2'; import Tooltip from 'sentry/components/tooltip'; import {IconEllipsis} from 'sentry/icons'; import {t} from 'sentry/locale'; import space from 'sentry/styles/space'; import { Group, Organization, Project, ResolutionStatus, SavedQueryVersions, UpdateResolutionStatus, } from 'sentry/types'; import {Event} from 'sentry/types/event'; import {analytics} from 'sentry/utils/analytics'; import trackAdvancedAnalyticsEvent from 'sentry/utils/analytics/trackAdvancedAnalyticsEvent'; import {getUtcDateString} from 'sentry/utils/dates'; import EventView from 'sentry/utils/discover/eventView'; import {displayReprocessEventAction} from 'sentry/utils/displayReprocessEventAction'; import {uniqueId} from 'sentry/utils/guid'; import withApi from 'sentry/utils/withApi'; import withOrganization from 'sentry/utils/withOrganization'; import ReviewAction from 'sentry/views/issueList/actions/reviewAction'; import ShareIssue from 'sentry/views/organizationGroupDetails/actions/shareIssue'; import SubscribeAction from './subscribeAction'; type Props = { api: Client; disabled: boolean; group: Group; organization: Organization; project: Project; event?: Event; query?: Query; }; type State = { shareBusy: boolean; }; class Actions extends Component { state: State = { shareBusy: false, }; componentWillReceiveProps(nextProps: Props) { if (this.state.shareBusy && nextProps.group.shareId !== this.props.group.shareId) { this.setState({shareBusy: false}); } } getShareUrl(shareId: string) { if (!shareId) { return ''; } const path = `/share/issue/${shareId}/`; const {host, protocol} = window.location; return `${protocol}//${host}${path}`; } getDiscoverUrl() { const {group, project, organization} = this.props; const {title, id, type} = group; const discoverQuery = { id: undefined, name: title || type, fields: ['title', 'release', 'environment', 'user.display', 'timestamp'], orderby: '-timestamp', query: `issue.id:${id}`, projects: [Number(project.id)], version: 2 as SavedQueryVersions, range: '90d', }; const discoverView = EventView.fromSavedQuery(discoverQuery); return discoverView.getResultsViewUrlTarget(organization.slug); } trackIssueAction( action: | 'shared' | 'deleted' | 'bookmarked' | 'subscribed' | 'mark_reviewed' | 'discarded' | 'open_in_discover' | ResolutionStatus ) { const {group, project, organization, query = {}} = this.props; const {alert_date, alert_rule_id, alert_type} = query; trackAdvancedAnalyticsEvent('issue_details.action_clicked', { organization, project_id: parseInt(project.id, 10), group_id: parseInt(group.id, 10), action_type: action, // 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, }); } onDelete = () => { const {group, project, organization, api} = this.props; addLoadingMessage(t('Delete event\u2026')); bulkDelete( api, { orgId: organization.slug, projectId: project.slug, itemIds: [group.id], }, { complete: () => { clearIndicators(); browserHistory.push(`/${organization.slug}/${project.slug}/`); }, } ); this.trackIssueAction('deleted'); }; onUpdate = ( data: | {isBookmarked: boolean} | {isSubscribed: boolean} | {inbox: boolean} | UpdateResolutionStatus ) => { const {group, project, organization, api} = this.props; addLoadingMessage(t('Saving changes\u2026')); bulkUpdate( api, { orgId: organization.slug, projectId: project.slug, itemIds: [group.id], data, }, { complete: clearIndicators, } ); if ((data as UpdateResolutionStatus).status) { this.trackIssueAction((data as UpdateResolutionStatus).status); } if ((data as {inbox: boolean}).inbox !== undefined) { this.trackIssueAction('mark_reviewed'); } }; onReprocessEvent = () => { const {group, organization} = this.props; openReprocessEventModal({organization, groupId: group.id}); }; onShare(shared: boolean) { const {group, project, organization, api} = this.props; this.setState({shareBusy: true}); // not sure why this is a bulkUpdate bulkUpdate( api, { orgId: organization.slug, projectId: project.slug, itemIds: [group.id], data: { isPublic: shared, }, }, { error: () => { addErrorMessage(t('Error sharing')); }, complete: () => { // shareBusy marked false in componentWillReceiveProps to sync // busy state update with shareId update }, } ); this.trackIssueAction('shared'); } onToggleShare = () => { const newIsPublic = !this.props.group.isPublic; if (newIsPublic) { trackAdvancedAnalyticsEvent('issue.shared_publicly', { organization: this.props.organization, }); } this.onShare(newIsPublic); }; onToggleBookmark = () => { this.onUpdate({isBookmarked: !this.props.group.isBookmarked}); this.trackIssueAction('bookmarked'); }; onToggleSubscribe = () => { this.onUpdate({isSubscribed: !this.props.group.isSubscribed}); this.trackIssueAction('subscribed'); }; onRedirectDiscover = () => { const {organization} = this.props; trackAdvancedAnalyticsEvent('growth.issue_open_in_discover_btn_clicked', { organization, }); browserHistory.push(this.getDiscoverUrl()); }; onDiscard = () => { const {group, project, organization, api} = this.props; const id = uniqueId(); addLoadingMessage(t('Discarding event\u2026')); GroupActions.discard(id, group.id); api.request(`/issues/${group.id}/`, { method: 'PUT', data: {discard: true}, success: response => { GroupActions.discardSuccess(id, group.id, response); browserHistory.push(`/${organization.slug}/${project.slug}/`); }, error: error => { GroupActions.discardError(id, group.id, error); }, complete: clearIndicators, }); this.trackIssueAction('discarded'); }; renderDiscardModal = ({Body, Footer, closeModal}: ModalRenderProps) => { const {organization, project} = this.props; function renderDiscardDisabled({children, ...props}) { return children({ ...props, renderDisabled: ({features}: {features: string[]}) => ( ), }); } return ( {({hasFeature, renderDisabled, ...props}) => ( {!hasFeature && typeof renderDisabled === 'function' && renderDisabled({...props, 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?` )}
)}
); }; openDiscardModal = () => { const {organization} = this.props; openModal(this.renderDiscardModal); analytics('feature.discard_group.modal_opened', { org_id: parseInt(organization.id, 10), }); }; handleClick(disabled: boolean, onClick: (event?: MouseEvent) => void) { return function (event: MouseEvent) { if (disabled) { event.preventDefault(); event.stopPropagation(); return; } onClick(event); }; } render() { const {group, project, organization, disabled, event} = this.props; const {status, isBookmarked} = group; const orgFeatures = new Set(organization.features); const bookmarkKey = isBookmarked ? 'unbookmark' : 'bookmark'; const bookmarkTitle = isBookmarked ? t('Remove bookmark') : t('Bookmark'); const hasRelease = !!project.features?.includes('releases'); const isResolved = status === 'resolved'; const isIgnored = status === 'ignored'; return ( { this.trackIssueAction('open_in_discover'); trackAdvancedAnalyticsEvent('growth.issue_open_in_discover_btn_clicked', { organization, }); }} > {t('Open in Discover')} {orgFeatures.has('shared-issues') && ( this.onShare(true)} /> )} {({hasAccess}) => ( , showChevron: false, size: 'xs', }} items={[ { key: bookmarkKey, label: bookmarkTitle, hidden: false, onAction: this.onToggleBookmark, }, { key: 'reprocess', label: t('Reprocess events'), hidden: !displayReprocessEventAction(organization.features, event), onAction: this.onReprocessEvent, }, { key: 'delete-issue', priority: 'danger', label: t('Delete'), hidden: !hasAccess, onAction: () => openModal(({Body, Footer, closeModal}: ModalRenderProps) => ( {t( 'Deleting this issue is permanent. Are you sure you wish to continue?' )} )), }, { key: 'delete-and-discard', priority: 'danger', label: t('Delete and discard future events'), hidden: !hasAccess, onAction: () => this.openDiscardModal(), }, ]} /> )} ); } } const Wrapper = styled('div')` display: grid; justify-content: flex-start; align-items: center; grid-auto-flow: column; gap: ${space(0.5)}; margin-top: ${space(2)}; white-space: nowrap; `; export {Actions}; export default withApi(withOrganization(Actions));