import {Fragment, useMemo} from 'react'; import styled from '@emotion/styled'; import moment from 'moment'; import ActorAvatar from 'sentry/components/avatar/actorAvatar'; import Duration from 'sentry/components/duration'; import ErrorBoundary from 'sentry/components/errorBoundary'; import IdBadge from 'sentry/components/idBadge'; import Link from 'sentry/components/links/link'; import {Tag} from 'sentry/components/tag'; import TimeSince from 'sentry/components/timeSince'; import {t} from 'sentry/locale'; import TeamStore from 'sentry/stores/teamStore'; import {space} from 'sentry/styles/space'; import type {Actor, Organization, Project} from 'sentry/types'; import getDynamicText from 'sentry/utils/getDynamicText'; import type {Incident} from 'sentry/views/alerts/types'; import {IncidentStatus} from 'sentry/views/alerts/types'; import {alertDetailsLink} from 'sentry/views/alerts/utils'; type Props = { incident: Incident; organization: Organization; projects: Project[]; projectsLoaded: boolean; }; function AlertListRow({incident, projectsLoaded, projects, organization}: Props) { const slug = incident.projects[0]; const started = moment(incident.dateStarted); const duration = moment .duration(moment(incident.dateClosed || new Date()).diff(started)) .as('seconds'); const project = useMemo(() => projects.find(p => p.slug === slug), [slug, projects]); const alertLink = { pathname: alertDetailsLink(organization, incident), query: {alert: incident.identifier}, }; const ownerId = incident.alertRule.owner?.split(':')[1]; let teamName = ''; if (ownerId) { teamName = TeamStore.getById(ownerId)?.name ?? ''; } const teamActor = ownerId ? {type: 'team' as Actor['type'], id: ownerId, name: teamName} : null; return ( <Link to={alertLink}>{incident.title}</Link> {getDynamicText({ value: , fixed: '1w ago', })} {incident.status === IncidentStatus.CLOSED ? ( ) : ( {t('Still Active')} )} #{incident.id} {teamActor ? ( {' '} {teamActor.name} ) : ( '-' )} ); } const Title = styled('div')` ${p => p.theme.overflowEllipsis} min-width: 130px; `; const ProjectBadge = styled(IdBadge)` flex-shrink: 0; `; const FlexCenter = styled('div')` ${p => p.theme.overflowEllipsis} display: flex; align-items: center; line-height: 1.6; `; const NoWrapNumeric = styled(FlexCenter)` white-space: nowrap; font-variant-numeric: tabular-nums; `; const TeamWrapper = styled('span')` ${p => p.theme.overflowEllipsis} `; const StyledActorAvatar = styled(ActorAvatar)` margin-right: ${space(1)}; `; export default AlertListRow;