123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- import {Fragment} from 'react';
- import styled from '@emotion/styled';
- import GuideAnchor from 'app/components/assistant/guideAnchor';
- import ProjectsStore from 'app/stores/projectsStore';
- import {BaseGroup, GroupTombstone, Organization} from 'app/types';
- import {Event} from 'app/types/event';
- import {getTitle} from 'app/utils/events';
- import withOrganization from 'app/utils/withOrganization';
- import EventTitleTreeLabel from './eventTitleTreeLabel';
- import StacktracePreview from './stacktracePreview';
- type Props = Partial<DefaultProps> & {
- data: Event | BaseGroup | GroupTombstone;
- organization: Organization;
- style?: React.CSSProperties;
- hasGuideAnchor?: boolean;
- withStackTracePreview?: boolean;
- guideAnchorName?: string;
- };
- type DefaultProps = {
- guideAnchorName: string;
- };
- function EventOrGroupTitle({
- guideAnchorName = 'issue_title',
- organization,
- data,
- withStackTracePreview,
- hasGuideAnchor,
- style,
- }: Props) {
- const event = data as Event;
- const {id, eventID, groupID, projectID} = event;
- const {title, subtitle, treeLabel} = getTitle(event, organization?.features);
- return (
- <span style={style}>
- <GuideAnchor disabled={!hasGuideAnchor} target={guideAnchorName} position="bottom">
- <StacktracePreview
- organization={organization}
- issueId={groupID ? groupID : id}
- // we need eventId and projectSlug only when hovering over Event, not Group
- // (different API call is made to get the stack trace then)
- eventId={eventID}
- projectSlug={eventID ? ProjectsStore.getById(projectID)?.slug : undefined}
- disablePreview={!withStackTracePreview}
- >
- {treeLabel ? <EventTitleTreeLabel treeLabel={treeLabel} /> : title}
- </StacktracePreview>
- </GuideAnchor>
- {subtitle && (
- <Fragment>
- <Spacer />
- <Subtitle title={subtitle}>{subtitle}</Subtitle>
- <br />
- </Fragment>
- )}
- </span>
- );
- }
- export default withOrganization(EventOrGroupTitle);
- /**
- * is used instead of margin/padding to split title and subtitle
- * into 2 separate text nodes on the HTML AST. This allows the
- * title to be highlighted without spilling over to the subtitle.
- */
- const Spacer = () => <span style={{display: 'inline-block', width: 10}}> </span>;
- const Subtitle = styled('em')`
- color: ${p => p.theme.gray300};
- font-style: normal;
- `;
|