123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- // eslint-disable-next-line no-restricted-imports
- import {withRouter, WithRouterProps} from 'react-router';
- import styled from '@emotion/styled';
- import EventAnnotation from 'sentry/components/events/eventAnnotation';
- import GlobalSelectionLink from 'sentry/components/globalSelectionLink';
- import InboxReason from 'sentry/components/group/inboxBadges/inboxReason';
- import InboxShortId from 'sentry/components/group/inboxBadges/shortId';
- import TimesTag from 'sentry/components/group/inboxBadges/timesTag';
- import UnhandledTag from 'sentry/components/group/inboxBadges/unhandledTag';
- import ReplayCount from 'sentry/components/group/replayCount';
- import ProjectBadge from 'sentry/components/idBadge/projectBadge';
- import Link from 'sentry/components/links/link';
- import Placeholder from 'sentry/components/placeholder';
- import {IconChat} from 'sentry/icons';
- import {tct} from 'sentry/locale';
- import space from 'sentry/styles/space';
- import {Group, Organization} from 'sentry/types';
- import {Event} from 'sentry/types/event';
- import withOrganization from 'sentry/utils/withOrganization';
- type Props = WithRouterProps<{orgId: string}> & {
- data: Event | Group;
- organization: Organization;
- showAssignee?: boolean;
- showInboxTime?: boolean;
- };
- function EventOrGroupExtraDetails({
- data,
- showAssignee,
- params,
- showInboxTime,
- organization,
- }: Props) {
- const {
- id,
- lastSeen,
- firstSeen,
- subscriptionDetails,
- numComments,
- logger,
- assignedTo,
- annotations,
- shortId,
- project,
- lifetime,
- isUnhandled,
- inbox,
- } = data as Group;
- const issuesPath = `/organizations/${params.orgId}/issues/`;
- const isReplayEnabled = organization.features.includes('session-replay-ui');
- return (
- <GroupExtra>
- {inbox && <InboxReason inbox={inbox} showDateAdded={showInboxTime} />}
- {shortId && (
- <InboxShortId
- shortId={shortId}
- avatar={
- project && (
- <ShadowlessProjectBadge project={project} avatarSize={12} hideName />
- )
- }
- />
- )}
- {isUnhandled && <UnhandledTag />}
- {!lifetime && !firstSeen && !lastSeen ? (
- <Placeholder height="14px" width="100px" />
- ) : (
- <TimesTag
- lastSeen={lifetime?.lastSeen || lastSeen}
- firstSeen={lifetime?.firstSeen || firstSeen}
- />
- )}
- {/* Always display comment count on inbox */}
- {numComments > 0 && (
- <CommentsLink to={`${issuesPath}${id}/activity/`} className="comments">
- <IconChat
- size="xs"
- color={subscriptionDetails?.reason === 'mentioned' ? 'green300' : undefined}
- />
- <span>{numComments}</span>
- </CommentsLink>
- )}
- {isReplayEnabled && <ReplayCount groupId={id} orgId={params.orgId} />}
- {logger && (
- <LoggerAnnotation>
- <GlobalSelectionLink
- to={{
- pathname: issuesPath,
- query: {
- query: `logger:${logger}`,
- },
- }}
- >
- {logger}
- </GlobalSelectionLink>
- </LoggerAnnotation>
- )}
- {annotations?.map((annotation, key) => (
- <AnnotationNoMargin
- dangerouslySetInnerHTML={{
- __html: annotation,
- }}
- key={key}
- />
- ))}
- {showAssignee && assignedTo && (
- <div>{tct('Assigned to [name]', {name: assignedTo.name})}</div>
- )}
- </GroupExtra>
- );
- }
- const GroupExtra = styled('div')`
- display: inline-grid;
- grid-auto-flow: column dense;
- gap: ${space(1.5)};
- justify-content: start;
- align-items: center;
- color: ${p => p.theme.textColor};
- font-size: ${p => p.theme.fontSizeSmall};
- position: relative;
- min-width: 500px;
- white-space: nowrap;
- line-height: 1.2;
- a {
- color: inherit;
- }
- @media (min-width: ${p => p.theme.breakpoints.xlarge}) {
- line-height: 1;
- }
- `;
- const ShadowlessProjectBadge = styled(ProjectBadge)`
- * > img {
- box-shadow: none;
- }
- `;
- const CommentsLink = styled(Link)`
- display: inline-grid;
- gap: ${space(0.5)};
- align-items: center;
- grid-auto-flow: column;
- color: ${p => p.theme.textColor};
- `;
- const AnnotationNoMargin = styled(EventAnnotation)`
- margin-left: 0;
- padding-left: 0;
- border-left: none;
- & > a {
- color: ${p => p.theme.textColor};
- }
- `;
- const LoggerAnnotation = styled(AnnotationNoMargin)`
- color: ${p => p.theme.textColor};
- `;
- export default withRouter(withOrganization(EventOrGroupExtraDetails));
|