123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- import {Fragment, useEffect} from 'react';
- import styled from '@emotion/styled';
- import {Button} from 'sentry/components/button';
- import {
- type AutofixSetupRepoDefinition,
- type AutofixSetupResponse,
- useAutofixSetup,
- } from 'sentry/components/events/autofix/useAutofixSetup';
- import {GuidedSteps} from 'sentry/components/guidedSteps/guidedSteps';
- import ExternalLink from 'sentry/components/links/externalLink';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {IconCheckmark, IconGithub} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Integration} from 'sentry/types/integrations';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {useApiQuery} from 'sentry/utils/queryClient';
- import useOrganization from 'sentry/utils/useOrganization';
- function AutofixIntegrationStep({autofixSetup}: {autofixSetup: AutofixSetupResponse}) {
- if (autofixSetup.integration.ok) {
- return (
- <Fragment>
- {tct('The GitHub integration is already installed, [link: view in settings].', {
- link: <ExternalLink href={`/settings/integrations/github/`} />,
- })}
- <GuidedSteps.ButtonWrapper>
- <GuidedSteps.NextButton />
- </GuidedSteps.ButtonWrapper>
- </Fragment>
- );
- }
- if (autofixSetup.integration.reason === 'integration_inactive') {
- return (
- <Fragment>
- <p>
- {tct(
- 'The GitHub integration has been installed but is not active. Navigate to the [integration settings page] and enable it to continue.',
- {
- link: <ExternalLink href={`/settings/integrations/github/`} />,
- }
- )}
- </p>
- <p>
- {tct(
- 'Once enabled, come back to this page. For more information related to installing the GitHub integration, read the [link:documentation].',
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/product/integrations/source-code-mgmt/github/" />
- ),
- }
- )}
- </p>
- <GuidedSteps.ButtonWrapper>
- <ExternalLink href="/settings/integrations/github/">
- <Button size="sm" priority="primary">
- {t('Set up Integration')}
- </Button>
- </ExternalLink>
- <GuidedSteps.NextButton />
- </GuidedSteps.ButtonWrapper>
- </Fragment>
- );
- }
- return (
- <Fragment>
- <p>
- {t(
- 'Install the GitHub integration on the integration settings page and clicking the "Install" button. Follow the steps provided.'
- )}
- </p>
- <p>
- {tct(
- 'Once installed, come back to this page. For more information related to installing the GitHub integration, read the [link:documentation].',
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/product/integrations/source-code-mgmt/github/" />
- ),
- }
- )}
- </p>
- <GuidedSteps.ButtonWrapper>
- <ExternalLink href="/settings/integrations/github/">
- <Button size="sm" priority="primary">
- {t('Set up Integration')}
- </Button>
- </ExternalLink>
- <GuidedSteps.NextButton />
- </GuidedSteps.ButtonWrapper>
- </Fragment>
- );
- }
- function AutofixCodeMappingStep() {
- const organization = useOrganization();
- const {data: integrationConfigurations} = useApiQuery<Integration[]>(
- [
- `/organizations/${organization.slug}/integrations/?provider_key=github&includeConfig=0`,
- ],
- {
- staleTime: Infinity,
- }
- );
- const configurationId = integrationConfigurations?.at(0)?.id;
- const url = `/settings/integrations/github/${configurationId ? configurationId + '/?tab=codeMappings' : ''}`;
- return (
- <Fragment>
- <p>
- {t(
- 'Set up code mappings for the Github repositories you want to run Autofix on for this project.'
- )}
- </p>
- <GuidedSteps.ButtonWrapper>
- <GuidedSteps.BackButton />
- <ExternalLink href={url}>
- <Button size="sm" priority="primary">
- {configurationId ? t('Configure Code Mappings') : t('Configure Integration')}
- </Button>
- </ExternalLink>
- </GuidedSteps.ButtonWrapper>
- </Fragment>
- );
- }
- export function GitRepoLink({repo}: {repo: AutofixSetupRepoDefinition}) {
- if (repo.provider === 'github' || repo.provider.split(':')[1] === 'github') {
- return (
- <RepoLinkItem>
- <GithubLink>
- <IconGithub size="sm" />
- <span>
- {repo.owner}/{repo.name}
- </span>
- </GithubLink>
- {repo.ok ? <IconCheckmark color="success" isCircled /> : null}
- </RepoLinkItem>
- );
- }
- return (
- <li>
- {repo.owner}/{repo.name}
- </li>
- );
- }
- function AutofixSetupSteps({autofixSetup}: {autofixSetup: AutofixSetupResponse}) {
- return (
- <GuidedSteps>
- <GuidedSteps.Step
- stepKey="integration"
- title={t('Install the GitHub Integration')}
- isCompleted={
- autofixSetup.integration.ok ||
- autofixSetup.integration.reason === 'integration_no_code_mappings'
- }
- >
- <AutofixIntegrationStep autofixSetup={autofixSetup} />
- </GuidedSteps.Step>
- <GuidedSteps.Step
- stepKey="codeMappings"
- title={t('Set up Code Mappings')}
- isCompleted={autofixSetup.integration.ok}
- >
- <AutofixCodeMappingStep />
- </GuidedSteps.Step>
- </GuidedSteps>
- );
- }
- export function AutofixSetupContent({
- projectId,
- groupId,
- }: {
- groupId: string;
- projectId: string;
- }) {
- const organization = useOrganization();
- const {data, isPending, isError} = useAutofixSetup(
- {groupId},
- // Want to check setup status whenever the user comes back to the tab
- {refetchOnWindowFocus: true}
- );
- useEffect(() => {
- if (!data) {
- return;
- }
- trackAnalytics('autofix.setup_modal_viewed', {
- groupId,
- projectId,
- organization,
- setup_gen_ai_consent: data.genAIConsent.ok,
- setup_integration: data.integration.ok,
- setup_write_integration: data.githubWriteIntegration.ok,
- });
- }, [data, groupId, organization, projectId]);
- if (isPending) {
- return <LoadingIndicator />;
- }
- if (isError) {
- return <LoadingError message={t('Failed to fetch Autofix setup progress.')} />;
- }
- return (
- <Fragment>
- <Divider />
- <Header>Set up Autofix</Header>
- <p>
- Sentry's AI-enabled Autofix uses all of the contextual data surrounding this error
- to work with you to find the root cause and create a fix.
- </p>
- <p>To use Autofix, please follow the instructions below.</p>
- <AutofixSetupSteps autofixSetup={data} />
- </Fragment>
- );
- }
- export const AutofixSetupDone = styled('div')`
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- padding: 40px;
- font-size: ${p => p.theme.fontSizeLarge};
- `;
- const Header = styled('p')`
- font-size: ${p => p.theme.fontSizeLarge};
- font-weight: ${p => p.theme.fontWeightBold};
- margin-bottom: ${space(2)};
- margin-top: ${space(2)};
- `;
- const RepoLinkItem = styled('li')`
- display: flex;
- align-items: center;
- gap: ${space(0.5)};
- `;
- const GithubLink = styled('div')`
- display: flex;
- align-items: center;
- gap: ${space(0.5)};
- `;
- const Divider = styled('div')`
- margin: ${space(3)} 0;
- border-bottom: 2px solid ${p => p.theme.gray100};
- `;
|