123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- import {Fragment} from 'react';
- import {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 {fields} from 'sentry/data/forms/projectIssueGrouping';
- import {t, tct} from 'sentry/locale';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import {EventGroupingConfig, Organization, Project} from 'sentry/types';
- import routeTitleGen from 'sentry/utils/routeTitle';
- import DeprecatedAsyncView from 'sentry/views/deprecatedAsyncView';
- 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;
- };
- type State = {
- groupingConfigs: EventGroupingConfig[] | null;
- } & DeprecatedAsyncView['state'];
- class ProjectIssueGrouping extends DeprecatedAsyncView<Props, State> {
- getTitle() {
- const {projectId} = this.props.params;
- return routeTitleGen(t('Issue Grouping'), projectId, false);
- }
- getDefaultState() {
- return {
- ...super.getDefaultState(),
- groupingConfigs: [],
- };
- }
- getEndpoints(): ReturnType<DeprecatedAsyncView['getEndpoints']> {
- const {organization, project} = this.props;
- return [
- [
- 'groupingConfigs',
- `/projects/${organization.slug}/${project.slug}/grouping-configs/`,
- ],
- ];
- }
- handleSubmit = (response: Project) => {
- // This will update our project context
- ProjectsStore.onUpdateSuccess(response);
- };
- renderBody() {
- const {groupingConfigs} = this.state;
- const {organization, project, params, location} = this.props;
- 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 (
- <Fragment>
- <SettingsPageHeader title={t('Issue Grouping')} />
- <TextBlock>
- {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: (
- <ExternalLink href="https://docs.sentry.io/product/data-management-settings/event-grouping/" />
- ),
- }
- )}
- </TextBlock>
- <PermissionAlert project={project} />
- <Form
- saveOnBlur
- allowUndo
- initialData={project}
- apiMethod="PUT"
- apiEndpoint={endpoint}
- onSubmitSuccess={this.handleSubmit}
- >
- <JsonForm
- {...jsonFormProps}
- title={t('Fingerprint Rules')}
- fields={[fields.fingerprintingRules]}
- />
- <JsonForm
- {...jsonFormProps}
- title={t('Stack Trace Rules')}
- fields={[fields.groupingEnhancements]}
- />
- <Feature features="set-grouping-config" organization={organization}>
- <JsonForm
- {...jsonFormProps}
- title={t('Change defaults')}
- fields={[
- fields.groupingConfig,
- fields.secondaryGroupingConfig,
- fields.secondaryGroupingExpiry,
- ]}
- />
- </Feature>
- <JsonForm
- {...jsonFormProps}
- title={t('Automatic Grouping Updates')}
- fields={[fields.groupingAutoUpdate]}
- />
- <UpgradeGrouping
- groupingConfigs={groupingConfigs ?? []}
- organization={organization}
- projectId={params.projectId}
- project={project}
- api={this.api}
- onUpgrade={this.fetchData}
- location={location}
- />
- </Form>
- </Fragment>
- );
- }
- }
- export default ProjectIssueGrouping;
|