import {useEffect} from 'react'; import styled from '@emotion/styled'; import AvatarList from 'sentry/components/avatar/avatarList'; import {QuickContextCommitRow} from 'sentry/components/discover/quickContextCommitRow'; import {DataSection} from 'sentry/components/events/styles'; import Panel from 'sentry/components/panels/panel'; import TimeSince from 'sentry/components/timeSince'; import {IconNot} from 'sentry/icons'; import {t, tct} from 'sentry/locale'; import ConfigStore from 'sentry/stores/configStore'; import {space} from 'sentry/styles/space'; import type {ReleaseWithHealth, User} from 'sentry/types'; import {trackAnalytics} from 'sentry/utils/analytics'; import {useApiQuery} from 'sentry/utils/queryClient'; import {NoContext} from './quickContextWrapper'; import { ContextBody, ContextContainer, ContextHeader, ContextRow, ContextTitle, Wrapper, } from './styles'; import type {BaseContextProps} from './utils'; import {ContextType, tenSecondInMs} from './utils'; function ReleaseContext(props: BaseContextProps) { const {dataRow, organization} = props; const {isLoading, isError, data} = useApiQuery( [ `/organizations/${organization.slug}/releases/${encodeURIComponent( dataRow.release )}/`, ], { staleTime: tenSecondInMs, } ); useEffect(() => { trackAnalytics('discover_v2.quick_context_hover_contexts', { organization, contextType: ContextType.RELEASE, }); }, [organization]); const getCommitAuthorTitle = () => { const user = ConfigStore.get('user'); const commitCount = data?.commitCount || 0; let authorsCount = data?.authors?.length || 0; const userInAuthors = data && authorsCount >= 1 && data.authors.find((author: User) => author.id && user.id && author.id === user.id); if (userInAuthors) { authorsCount = authorsCount - 1; return authorsCount !== 1 && commitCount !== 1 ? tct('[commitCount] commits by you and [authorsCount] others', { commitCount, authorsCount, }) : commitCount !== 1 ? tct('[commitCount] commits by you and 1 other', { commitCount, }) : authorsCount !== 1 ? tct('1 commit by you and [authorsCount] others', { authorsCount, }) : t('1 commit by you and 1 other'); } return ( data && (authorsCount !== 1 && commitCount !== 1 ? tct('[commitCount] commits by [authorsCount] authors', { commitCount, authorsCount, }) : commitCount !== 1 ? tct('[commitCount] commits by 1 author', { commitCount, }) : authorsCount !== 1 ? tct('1 commit by [authorsCount] authors', { authorsCount, }) : t('1 commit by 1 author')) ); }; const renderReleaseAuthors = () => { return ( data && ( {getCommitAuthorTitle()} {data.commitCount === 0 ? ( ) : ( )} ) ); }; const renderLastCommit = () => data?.lastCommit && ( {t('Last Commit')} ); const renderReleaseDetails = () => data && (
{t('Created')}
{t('Last Event')} {data.lastEvent ? : '\u2014'}
{t('New Issues')} {data.newGroups}
); if (isLoading || isError) { return ; } return ( {renderReleaseDetails()} {renderReleaseAuthors()} {renderLastCommit()} ); } const StyledAvatarList = styled(AvatarList)` margin: 0 ${space(0.75)}; `; const ReleaseContextContainer = styled(ContextContainer)` ${Panel} { margin: 0; border: none; box-shadow: none; } ${DataSection} { padding: 0; } & + & { margin-top: ${space(2)}; } `; const ReleaseBody = styled(ContextBody)<{}>` font-size: 13px; color: ${p => p.theme.subText}; `; export default ReleaseContext;