import type {RouteComponentProps} from 'react-router'; import {hasEveryAccess} from 'sentry/components/acl/access'; import Feature from 'sentry/components/acl/feature'; import Form from 'sentry/components/forms/form'; import JsonForm from 'sentry/components/forms/jsonForm'; import ExternalLink from 'sentry/components/links/externalLink'; import LoadingError from 'sentry/components/loadingError'; import LoadingIndicator from 'sentry/components/loadingIndicator'; import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle'; import {fields} from 'sentry/data/forms/projectIssueGrouping'; import {t, tct} from 'sentry/locale'; import ProjectsStore from 'sentry/stores/projectsStore'; import type {EventGroupingConfig, Organization, Project} from 'sentry/types'; import {useApiQuery} from 'sentry/utils/queryClient'; import routeTitleGen from 'sentry/utils/routeTitle'; import useApi from 'sentry/utils/useApi'; import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader'; import TextBlock from 'sentry/views/settings/components/text/textBlock'; import PermissionAlert from 'sentry/views/settings/project/permissionAlert'; import UpgradeGrouping from './upgradeGrouping'; type Props = RouteComponentProps<{}, {projectId: string}> & { organization: Organization; project: Project; }; export default function ProjectIssueGrouping({ organization, project, params, location, }: Props) { const api = useApi(); const queryKey = `/projects/${organization.slug}/${project.slug}/grouping-configs/`; const { data: groupingConfigs, isLoading, isError, refetch, } = useApiQuery([queryKey], {staleTime: 0, cacheTime: 0}); if (isLoading) { return ; } if (isError) { return ( ); } const handleSubmit = (response: Project) => { // This will update our project context ProjectsStore.onUpdateSuccess(response); }; const endpoint = `/projects/${organization.slug}/${project.slug}/`; const access = new Set(organization.access.concat(project.access)); const hasAccess = hasEveryAccess(['project:write'], {organization, project}); const jsonFormProps = { additionalFieldProps: { organization, groupingConfigs, }, features: new Set(organization.features), access, disabled: !hasAccess, }; return ( {tct( `All events have a fingerprint. Events with the same fingerprint are grouped together into an issue. To learn more about issue grouping, [link: read the docs].`, { link: ( ), } )}
); }