123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- import {Component, Fragment} from 'react';
- import styled from '@emotion/styled';
- import moment from 'moment';
- import {openInviteMembersModal} from 'sentry/actionCreators/modal';
- import Alert from 'sentry/components/alert';
- import ActorAvatar from 'sentry/components/avatar/actorAvatar';
- import Button from 'sentry/components/button';
- import CommitLink from 'sentry/components/commitLink';
- import {Divider, Hovercard} from 'sentry/components/hovercard';
- import Link from 'sentry/components/links/link';
- import Version from 'sentry/components/version';
- import {IconCommit} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import space from 'sentry/styles/space';
- import type {Actor, Commit, Organization, Release} from 'sentry/types';
- import {defined} from 'sentry/utils';
- import theme from 'sentry/utils/theme';
- type Props = {
- /**
- * The suggested actor.
- */
- actor: Actor;
- /**
- * Children are required, as they are passed to the hovercard component, without it,
- * we will not be able to trigger any hovercard actions
- */
- children: React.ReactNode;
- organization: Organization;
- /**
- * The list of commits the actor is suggested for. May be left blank if the
- * actor is not suggested for commits.
- */
- commits?: Commit[];
- /**
- * Used to pre-select release project
- */
- projectId?: string;
- release?: Release;
- /**
- * The list of ownership rules the actor is suggested for. May be left blank
- * if the actor is not suggested based on ownership rules.
- */
- rules?: any[] | null;
- };
- type State = {
- commitsExpanded: boolean;
- rulesExpanded: boolean;
- };
- class SuggestedOwnerHovercard extends Component<Props, State> {
- state: State = {
- commitsExpanded: false,
- rulesExpanded: false,
- };
- render() {
- const {organization, actor, commits, rules, release, projectId, ...props} =
- this.props;
- const {commitsExpanded, rulesExpanded} = this.state;
- const modalData = {
- initialData: [
- {
- emails: actor.email ? new Set([actor.email]) : new Set([]),
- },
- ],
- source: 'suggested_assignees',
- };
- return (
- <StyledHovercard
- skipWrapper
- header={
- <Fragment>
- <HovercardHeader>
- <ActorAvatar size={20} hasTooltip={false} actor={actor} />
- {actor.name || actor.email}
- </HovercardHeader>
- {actor.id === undefined && (
- <EmailAlert type="warning" showIcon>
- {tct(
- 'The email [actorEmail] is not a member of your organization. [inviteUser:Invite] them or link additional emails in [accountSettings:account settings].',
- {
- actorEmail: <strong>{actor.email}</strong>,
- accountSettings: <Link to="/settings/account/emails/" />,
- inviteUser: <a onClick={() => openInviteMembersModal(modalData)} />,
- }
- )}
- </EmailAlert>
- )}
- </Fragment>
- }
- body={
- <HovercardBody>
- {commits !== undefined && !release && (
- <Fragment>
- <Divider>
- <h6>{t('Commits')}</h6>
- </Divider>
- <div>
- {commits
- .slice(0, commitsExpanded ? commits.length : 3)
- .map(({message, dateCreated}, i) => (
- <CommitReasonItem key={i}>
- <CommitIcon />
- <CommitMessage
- message={message ?? undefined}
- date={dateCreated}
- />
- </CommitReasonItem>
- ))}
- </div>
- {commits.length > 3 && !commitsExpanded ? (
- <ViewMoreButton
- priority="link"
- size="zero"
- onClick={() => this.setState({commitsExpanded: true})}
- >
- {t('View more')}
- </ViewMoreButton>
- ) : null}
- </Fragment>
- )}
- {commits !== undefined && release && (
- <Fragment>
- <Divider>
- <h6>{t('Suspect Release')}</h6>
- </Divider>
- <div>
- <CommitReasonItem>
- <OwnershipTag tagType="release" />
- <ReleaseValue>
- {tct('[actor] [verb] [commits] in [release]', {
- actor: actor.name,
- verb: commits.length > 1 ? t('made') : t('last committed'),
- commits:
- commits.length > 1 ? (
- // Link to release commits
- <Link
- to={{
- pathname: `/organizations/${
- organization?.slug
- }/releases/${encodeURIComponent(
- release.version
- )}/commits/`,
- query: {project: projectId},
- }}
- >
- {t('%s commits', commits.length)}
- </Link>
- ) : (
- <CommitLink
- inline
- showIcon={false}
- commitId={commits[0].id}
- repository={commits[0].repository}
- />
- ),
- release: (
- <Version version={release.version} projectId={projectId} />
- ),
- })}
- </ReleaseValue>
- </CommitReasonItem>
- </div>
- </Fragment>
- )}
- {defined(rules) && (
- <Fragment>
- <Divider>
- <h6>{t('Matching Ownership Rules')}</h6>
- </Divider>
- <div>
- {rules
- .slice(0, rulesExpanded ? rules.length : 3)
- .map(([type, matched], i) => (
- <RuleReasonItem key={i}>
- <OwnershipTag tagType={type} />
- <OwnershipValue>{matched}</OwnershipValue>
- </RuleReasonItem>
- ))}
- </div>
- {rules.length > 3 && !rulesExpanded ? (
- <ViewMoreButton
- priority="link"
- size="zero"
- onClick={() => this.setState({rulesExpanded: true})}
- >
- {t('View more')}
- </ViewMoreButton>
- ) : null}
- </Fragment>
- )}
- </HovercardBody>
- }
- {...props}
- />
- );
- }
- }
- const tagColors = {
- url: theme.green200,
- path: theme.purple300,
- tag: theme.blue300,
- codeowners: theme.pink300,
- release: theme.pink200,
- };
- const StyledHovercard = styled(Hovercard)`
- width: 400px;
- `;
- const CommitIcon = styled(IconCommit)`
- margin-right: ${space(0.5)};
- flex-shrink: 0;
- `;
- const CommitMessage = styled(({message = '', date, ...props}) => (
- <div {...props}>
- {message.split('\n')[0]}
- <CommitDate date={date} />
- </div>
- ))`
- color: ${p => p.theme.textColor};
- font-size: ${p => p.theme.fontSizeExtraSmall};
- margin-top: ${space(0.25)};
- hyphens: auto;
- `;
- const CommitDate = styled(({date, ...props}) => (
- <div {...props}>{moment(date).fromNow()}</div>
- ))`
- margin-top: ${space(0.5)};
- color: ${p => p.theme.gray300};
- `;
- const CommitReasonItem = styled('div')`
- display: flex;
- align-items: flex-start;
- gap: ${space(1)};
- `;
- const RuleReasonItem = styled('div')`
- display: flex;
- align-items: flex-start;
- gap: ${space(1)};
- `;
- const OwnershipTag = styled(({tagType, ...props}) => <div {...props}>{tagType}</div>)`
- background: ${p => tagColors[p.tagType.indexOf('tags') === -1 ? p.tagType : 'tag']};
- color: ${p => p.theme.white};
- font-size: ${p => p.theme.fontSizeExtraSmall};
- padding: ${space(0.25)} ${space(0.5)};
- margin: ${space(0.25)} ${space(0.5)} ${space(0.25)} 0;
- border-radius: 2px;
- font-weight: bold;
- text-align: center;
- `;
- const ViewMoreButton = styled(Button)`
- border: none;
- color: ${p => p.theme.gray300};
- font-size: ${p => p.theme.fontSizeExtraSmall};
- padding: ${space(0.25)} ${space(0.5)};
- margin: ${space(1)} ${space(0.25)} ${space(0.25)} 0;
- width: 100%;
- min-width: 34px;
- `;
- const OwnershipValue = styled('code')`
- word-break: break-all;
- font-size: ${p => p.theme.fontSizeExtraSmall};
- margin-top: ${space(0.25)};
- `;
- const ReleaseValue = styled('div')`
- font-size: ${p => p.theme.fontSizeSmall};
- margin-top: ${space(0.5)};
- `;
- const EmailAlert = styled(Alert)`
- margin: 10px -13px -13px;
- border-radius: 0;
- border-color: #ece0b0;
- font-size: ${p => p.theme.fontSizeSmall};
- font-weight: normal;
- box-shadow: none;
- `;
- const HovercardHeader = styled('div')`
- display: flex;
- align-items: center;
- gap: ${space(1)};
- `;
- const HovercardBody = styled('div')`
- margin-top: -${space(2)};
- `;
- export default SuggestedOwnerHovercard;
|