import {Component, Fragment} from 'react'; import {RouteComponentProps} from 'react-router'; import uniq from 'lodash/uniq'; import {createNote, deleteNote, updateNote} from 'sentry/actionCreators/group'; import { addErrorMessage, addLoadingMessage, clearIndicators, } from 'sentry/actionCreators/indicator'; import {Client} from 'sentry/api'; import ActivityAuthor from 'sentry/components/activity/author'; import ActivityItem from 'sentry/components/activity/item'; import Note from 'sentry/components/activity/note'; import NoteInputWithStorage from 'sentry/components/activity/note/inputWithStorage'; import {CreateError} from 'sentry/components/activity/note/types'; import ErrorBoundary from 'sentry/components/errorBoundary'; import * as Layout from 'sentry/components/layouts/thirds'; import LoadingIndicator from 'sentry/components/loadingIndicator'; import ReprocessedBox from 'sentry/components/reprocessedBox'; import {DEFAULT_ERROR_JSON} from 'sentry/constants'; import {t} from 'sentry/locale'; import ConfigStore from 'sentry/stores/configStore'; import { Group, GroupActivityAssigned, GroupActivityReprocess, GroupActivityType, Organization, User, } from 'sentry/types'; import {uniqueId} from 'sentry/utils/guid'; import Teams from 'sentry/utils/teams'; import withApi from 'sentry/utils/withApi'; import withOrganization from 'sentry/utils/withOrganization'; import GroupActivityItem from './groupActivityItem'; import { getGroupMostRecentActivity, getGroupReprocessingStatus, ReprocessingStatus, } from './utils'; type Props = { api: Client; group: Group; organization: Organization; } & RouteComponentProps<{orgId: string}, {}>; type State = { createBusy: boolean; error: boolean; errorJSON: CreateError | null; inputId: string; }; class GroupActivity extends Component { // TODO(dcramer): only re-render on group/activity change state: State = { createBusy: false, error: false, errorJSON: null, inputId: uniqueId(), }; handleNoteDelete = async ({noteId, text: oldText}) => { const {api, group} = this.props; addLoadingMessage(t('Removing comment...')); try { await deleteNote(api, group, noteId, oldText); clearIndicators(); } catch (_err) { addErrorMessage(t('Failed to delete comment')); } }; /** * Note: This is nearly the same logic as `app/views/alerts/details/activity` * This can be abstracted a bit if we create more objects that can have activities */ handleNoteCreate = async note => { const {api, group} = this.props; this.setState({ createBusy: true, }); addLoadingMessage(t('Posting comment...')); try { await createNote(api, group, note); this.setState({ createBusy: false, // This is used as a `key` to Note Input so that after successful post // we reset the value of the input inputId: uniqueId(), }); clearIndicators(); } catch (error) { this.setState({ createBusy: false, error: true, errorJSON: error.responseJSON || DEFAULT_ERROR_JSON, }); addErrorMessage(t('Unable to post comment')); } }; handleNoteUpdate = async (note, {noteId, text: oldText}) => { const {api, group} = this.props; addLoadingMessage(t('Updating comment...')); try { await updateNote(api, group, note, noteId, oldText); clearIndicators(); } catch (error) { this.setState({ error: true, errorJSON: error.responseJSON || DEFAULT_ERROR_JSON, }); addErrorMessage(t('Unable to update comment')); } }; render() { const {group, organization} = this.props; const {activity: activities, count, id: groupId} = group; const groupCount = Number(count); const mostRecentActivity = getGroupMostRecentActivity(activities); const reprocessingStatus = getGroupReprocessingStatus(group, mostRecentActivity); const me = ConfigStore.get('user'); const projectSlugs = group && group.project ? [group.project.slug] : []; const noteProps = { minHeight: 140, group, projectSlugs, placeholder: t( 'Add details or updates to this event. \nTag users with @, or teams with #' ), }; return ( {(reprocessingStatus === ReprocessingStatus.REPROCESSED_AND_HASNT_EVENT || reprocessingStatus === ReprocessingStatus.REPROCESSED_AND_HAS_EVENT) && ( )} {() => ( )} item.type === GroupActivityType.ASSIGNED && item.data.assigneeType === 'team' && item.data.assignee?.length > 0 ) .map(item => item.data.assignee) )} > {({initiallyLoaded}) => initiallyLoaded ? ( group.activity.map(item => { const authorName = item.user ? item.user.name : 'Sentry'; if (item.type === GroupActivityType.NOTE) { return ( ); } return ( {authorName}} activity={item} orgSlug={this.props.params.orgId} projectId={group.project.id} /> } /> ); }) ) : ( ) } ); } } export {GroupActivity}; export default withApi(withOrganization(GroupActivity));