123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- import {Fragment} from 'react';
- import styled from '@emotion/styled';
- import ErrorBoundary from 'sentry/components/errorBoundary';
- import EventOrGroupTitle from 'sentry/components/eventOrGroupTitle';
- import EventMessage from 'sentry/components/events/eventMessage';
- import EventTitleError from 'sentry/components/eventTitleError';
- import GlobalSelectionLink from 'sentry/components/globalSelectionLink';
- import {IconStar} from 'sentry/icons';
- import {tct} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Group} from 'sentry/types/group';
- import type {Organization} from 'sentry/types/organization';
- import {getLocation, getMessage, isTombstone} from 'sentry/utils/events';
- import useOrganization from 'sentry/utils/useOrganization';
- interface EventOrGroupHeaderProps {
- data: Group;
- event_id: string;
- organization: Organization;
- }
- /**
- * Displays an event or group/issue title (i.e. in Stream)
- */
- interface IssueTitleChildrenProps {
- data: Group;
- organization: Organization;
- }
- function IssueTitleChildren(props: IssueTitleChildrenProps) {
- const {isBookmarked, hasSeen} = props.data;
- return (
- <Fragment>
- {isBookmarked && (
- <IconWrapper>
- <IconStar isSolid color="yellow400" />
- </IconWrapper>
- )}
- <ErrorBoundary customComponent={<EventTitleError />} mini>
- <StyledEventOrGroupTitle
- data={props.data}
- // hasSeen is undefined for GroupTombstone
- hasSeen={hasSeen === undefined ? true : hasSeen}
- withStackTracePreview
- />
- </ErrorBoundary>
- </Fragment>
- );
- }
- interface IssueTitleProps {
- data: Group;
- event_id: string;
- }
- function IssueTitle(props: IssueTitleProps) {
- const organization = useOrganization();
- const commonEleProps = {
- 'data-test-id': status === 'resolved' ? 'resolved-issue' : null,
- };
- if (isTombstone(props.data)) {
- return (
- <TitleWithoutLink {...commonEleProps}>
- <IssueTitleChildren data={props.data} organization={organization} />
- </TitleWithoutLink>
- );
- }
- return (
- <TitleWithLink
- {...commonEleProps}
- to={{
- pathname: `/organizations/${organization.slug}/issues/${props.data.id}/events/${props.event_id}/`,
- }}
- >
- <IssueTitleChildren data={props.data} organization={organization} />
- </TitleWithLink>
- );
- }
- export function IssueSummary({data, event_id}: EventOrGroupHeaderProps) {
- const eventLocation = getLocation(data);
- return (
- <div data-test-id="event-issue-header">
- <Title>
- <IssueTitle data={data} event_id={event_id} />
- </Title>
- {eventLocation ? <Location>{eventLocation}</Location> : null}
- <StyledEventMessage
- level={'level' in data ? data.level : undefined}
- message={getMessage(data)}
- type={data.type}
- levelIndicatorSize="9px"
- />
- </div>
- );
- }
- const Title = styled('div')`
- margin-bottom: ${space(0.25)};
- & em {
- font-size: ${p => p.theme.fontSizeMedium};
- font-style: normal;
- font-weight: ${p => p.theme.fontWeightNormal};
- color: ${p => p.theme.subText};
- }
- `;
- const LocationWrapper = styled('div')`
- overflow: hidden;
- max-width: 100%;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin: 0 0 5px;
- direction: rtl;
- text-align: left;
- font-size: ${p => p.theme.fontSizeMedium};
- color: ${p => p.theme.subText};
- span {
- direction: ltr;
- }
- `;
- function Location(props) {
- const {children, ...rest} = props;
- return (
- <LocationWrapper {...rest}>
- {tct('in [location]', {
- location: <span>{children}</span>,
- })}
- </LocationWrapper>
- );
- }
- const StyledEventMessage = styled(EventMessage)`
- margin: 0 0 5px;
- gap: ${space(0.5)};
- `;
- const IconWrapper = styled('span')`
- position: relative;
- margin-right: 5px;
- `;
- const TitleWithLink = styled(GlobalSelectionLink)`
- display: inline-flex;
- align-items: center;
- `;
- const TitleWithoutLink = styled('span')`
- display: inline-flex;
- `;
- const StyledEventOrGroupTitle = styled(EventOrGroupTitle)<{
- hasSeen: boolean;
- }>`
- font-weight: ${p => (p.hasSeen ? 400 : 600)};
- `;
|