123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- // XXX: A lot of the UI for this file will be changed once we use IssueListActions
- // We're using GroupList to help us iterate quickly
- import type {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import Feature from 'sentry/components/acl/feature';
- import GroupList from 'sentry/components/issues/groupList';
- import * as Layout from 'sentry/components/layouts/thirds';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {useApiQuery} from 'sentry/utils/queryClient';
- import useOrganization from 'sentry/utils/useOrganization';
- type RouteParams = {
- groupId: string;
- };
- type Props = RouteComponentProps<RouteParams, {}>;
- type RelatedIssuesResponse = {
- same_root_cause: number[];
- };
- function GroupRelatedIssues({params}: Props) {
- const {groupId} = params;
- const organization = useOrganization();
- const orgSlug = organization.slug;
- // Fetch the list of related issues
- const {
- isLoading,
- isError,
- data: relatedIssues,
- refetch,
- } = useApiQuery<RelatedIssuesResponse>([`/issues/${groupId}/related-issues/`], {
- staleTime: 0,
- });
- // If the group we're looking related issues for shows up in the table,
- // it will trigger a bug in getGroupReprocessingStatus because activites would be empty
- const groups = relatedIssues?.same_root_cause
- ?.filter(id => id.toString() !== groupId)
- ?.join(',');
- return (
- <Layout.Body>
- <Layout.Main fullWidth>
- <HeaderWrapper>
- <Title>{t('Related Issues')}</Title>
- <small>
- {t(
- 'Related Issues are issues that may have the same root cause and can be acted on together.'
- )}
- </small>
- </HeaderWrapper>
- {isLoading ? (
- <LoadingIndicator />
- ) : isError ? (
- <LoadingError
- message={t('Unable to load related issues, please try again later')}
- onRetry={refetch}
- />
- ) : groups ? (
- <GroupList
- endpointPath={`/organizations/${orgSlug}/issues/`}
- orgSlug={orgSlug}
- queryParams={{query: `issue.id:[${groups}]`}}
- query=""
- source="related-issues-tab"
- renderEmptyMessage={() => <Title>No related issues</Title>}
- renderErrorMessage={() => <Title>Error loading related issues</Title>}
- />
- ) : (
- <b>No related issues found!</b>
- )}
- </Layout.Main>
- </Layout.Body>
- );
- }
- function GroupRelatedIssuesWrapper(props: Props) {
- return (
- <Feature features={['related-issues']}>
- <GroupRelatedIssues {...props} />
- </Feature>
- );
- }
- // Export the component without feature flag controls
- export {GroupRelatedIssues};
- export default GroupRelatedIssuesWrapper;
- const Title = styled('h4')`
- margin-bottom: ${space(0.75)};
- `;
- const HeaderWrapper = styled('div')`
- margin-bottom: ${space(2)};
- small {
- color: ${p => p.theme.subText};
- }
- `;
|