123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- 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} from 'sentry/types/release';
- import type {User} from 'sentry/types/user';
- 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 {isPending, isError, data} = useApiQuery<ReleaseWithHealth>(
- [
- `/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 && (
- <ReleaseContextContainer data-test-id="quick-context-release-details-container">
- <ContextHeader data-test-id="quick-context-release-author-header">
- <ContextTitle>{getCommitAuthorTitle()}</ContextTitle>
- </ContextHeader>
- <ContextBody>
- {data.commitCount === 0 ? (
- <IconNot color="gray500" size="md" />
- ) : (
- <StyledAvatarList users={data.authors} maxVisibleAvatars={10} />
- )}
- </ContextBody>
- </ReleaseContextContainer>
- )
- );
- };
- const renderLastCommit = () =>
- data?.lastCommit && (
- <ReleaseContextContainer data-test-id="quick-context-release-last-commit-container">
- <ContextHeader>
- <ContextTitle>{t('Last Commit')}</ContextTitle>
- </ContextHeader>
- <DataSection>
- <Panel>
- <QuickContextCommitRow commit={data.lastCommit} />
- </Panel>
- </DataSection>
- </ReleaseContextContainer>
- );
- const renderReleaseDetails = () =>
- data && (
- <ReleaseContextContainer data-test-id="quick-context-release-issues-and-authors-container">
- <ContextRow>
- <div>
- <ContextHeader>
- <ContextTitle>{t('Created')}</ContextTitle>
- </ContextHeader>
- <ReleaseBody>
- <TimeSince date={data.dateCreated} />
- </ReleaseBody>
- </div>
- <div>
- <ContextHeader>
- <ContextTitle>{t('Last Event')}</ContextTitle>
- </ContextHeader>
- <ReleaseBody>
- {data.lastEvent ? <TimeSince date={data.lastEvent} /> : '\u2014'}
- </ReleaseBody>
- </div>
- <div>
- <ContextHeader>
- <ContextTitle>{t('New Issues')}</ContextTitle>
- </ContextHeader>
- <ContextBody>{data.newGroups}</ContextBody>
- </div>
- </ContextRow>
- </ReleaseContextContainer>
- );
- if (isPending || isError) {
- return <NoContext isLoading={isPending} />;
- }
- return (
- <Wrapper data-test-id="quick-context-hover-body">
- {renderReleaseDetails()}
- {renderReleaseAuthors()}
- {renderLastCommit()}
- </Wrapper>
- );
- }
- 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;
|