123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- import styled from '@emotion/styled';
- import {Chevron} from 'sentry/components/chevron';
- import {DropdownMenu} from 'sentry/components/dropdownMenu';
- import ProjectBadge from 'sentry/components/idBadge/projectBadge';
- import ShortId from 'sentry/components/shortId';
- import {Tooltip} from 'sentry/components/tooltip';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Group} from 'sentry/types/group';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import normalizeUrl from 'sentry/utils/url/normalizeUrl';
- import useCopyToClipboard from 'sentry/utils/useCopyToClipboard';
- interface ShortIdBreadcrumbProps {
- group: Group;
- organization: Organization;
- project: Project;
- }
- export function ShortIdBreadcrumb({
- organization,
- project,
- group,
- }: ShortIdBreadcrumbProps) {
- const {onClick: handleCopyShortId} = useCopyToClipboard({
- text: group.shortId,
- successMessage: t('Copied Short-ID to clipboard'),
- });
- const issueUrl =
- window.location.origin +
- normalizeUrl(`/organizations/${organization.slug}/issues/${group.id}/`);
- const {onClick: handleCopyUrl} = useCopyToClipboard({
- text: issueUrl,
- successMessage: t('Copied Issue URL to clipboard'),
- });
- const {onClick: handleCopyMarkdown} = useCopyToClipboard({
- text: `[${group.shortId}](${issueUrl})`,
- successMessage: t('Copied Markdown Issue Link to clipboard'),
- });
- if (!group.shortId) {
- return null;
- }
- return (
- <Wrapper>
- <ProjectBadge
- project={project}
- avatarSize={16}
- hideName
- avatarProps={{hasTooltip: true, tooltip: project.slug}}
- />
- <ShortIdCopyable>
- <Tooltip
- className="help-link"
- title={t(
- 'This identifier is unique across your organization, and can be used to reference an issue in various places, like commit messages.'
- )}
- position="bottom"
- delay={1000}
- >
- <StyledShortId shortId={group.shortId} />
- </Tooltip>
- <DropdownMenu
- triggerProps={{
- 'aria-label': t('Short-ID copy actions'),
- icon: <Chevron direction="down" />,
- size: 'zero',
- borderless: true,
- showChevron: false,
- }}
- position="bottom"
- size="xs"
- items={[
- {
- key: 'copy-url',
- label: t('Copy Issue URL'),
- onAction: handleCopyUrl,
- },
- {
- key: 'copy-short-id',
- label: t('Copy Short-ID'),
- onAction: handleCopyShortId,
- },
- {
- key: 'copy-markdown-link',
- label: t('Copy Markdown Link'),
- onAction: handleCopyMarkdown,
- },
- ]}
- />
- </ShortIdCopyable>
- </Wrapper>
- );
- }
- const Wrapper = styled('div')`
- display: flex;
- gap: ${space(1)};
- align-items: center;
- `;
- const StyledShortId = styled(ShortId)`
- font-family: ${p => p.theme.text.family};
- font-size: ${p => p.theme.fontSizeMedium};
- line-height: 1;
- `;
- const ShortIdCopyable = styled('div')`
- display: flex;
- gap: ${space(0.25)};
- align-items: center;
- button[aria-haspopup] {
- display: block;
- opacity: 0;
- transition: opacity 50ms linear;
- }
- &:hover button[aria-haspopup],
- button[aria-expanded='true'],
- button[aria-haspopup]:focus-visible {
- opacity: 1;
- }
- `;
|