123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- import {css} from '@emotion/react';
- import styled from '@emotion/styled';
- import {AiSuggestedSolution} from 'sentry/components/events/aiSuggestedSolution';
- import {Autofix} from 'sentry/components/events/autofix';
- import {Resources} from 'sentry/components/events/interfaces/performance/resources';
- import {t} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- import {space} from 'sentry/styles/space';
- import {EntryType, type Event} from 'sentry/types/event';
- import type {Group} from 'sentry/types/group';
- import type {Project} from 'sentry/types/project';
- import {
- getConfigForIssueType,
- shouldShowCustomErrorResourceConfig,
- } from 'sentry/utils/issueTypeConfig';
- import {getRegionDataFromOrganization} from 'sentry/utils/regions';
- import useOrganization from 'sentry/utils/useOrganization';
- import {SectionKey} from 'sentry/views/issueDetails/streamline/context';
- import {InterimSection} from 'sentry/views/issueDetails/streamline/interimSection';
- import {useIsSampleEvent} from 'sentry/views/issueDetails/utils';
- type Props = {
- event: Event;
- group: Group;
- project: Project;
- };
- // Autofix requires the event to have stack trace frames in order to work correctly.
- function hasStacktraceWithFrames(event: Event) {
- for (const entry of event.entries) {
- if (entry.type === EntryType.EXCEPTION) {
- if (entry.data.values?.some(value => value.stacktrace?.frames?.length)) {
- return true;
- }
- }
- if (entry.type === EntryType.THREADS) {
- if (entry.data.values?.some(thread => thread.stacktrace?.frames?.length)) {
- return true;
- }
- }
- }
- return false;
- }
- // This section provides users with resources and possible solutions on how to resolve an issue
- export function ResourcesAndPossibleSolutions({event, project, group}: Props) {
- const organization = useOrganization();
- const config = getConfigForIssueType(group, project);
- const isSelfHostedErrorsOnly = ConfigStore.get('isSelfHostedErrorsOnly');
- const isSampleError = useIsSampleEvent();
- // NOTE: Autofix is for INTERNAL testing only for now.
- const displayAiAutofix =
- organization.features.includes('autofix') &&
- organization.features.includes('issue-details-autofix-ui') &&
- !shouldShowCustomErrorResourceConfig(group, project) &&
- config.autofix &&
- hasStacktraceWithFrames(event) &&
- !isSampleError;
- const displayAiSuggestedSolution =
- // Skip showing AI suggested solution if the issue has a custom resource
- config.aiSuggestedSolution &&
- organization.aiSuggestedSolution &&
- getRegionDataFromOrganization(organization)?.name !== 'de' &&
- !shouldShowCustomErrorResourceConfig(group, project) &&
- !displayAiAutofix &&
- !isSampleError;
- if (
- isSelfHostedErrorsOnly ||
- (!config.resources && !(displayAiSuggestedSolution || displayAiAutofix))
- ) {
- return null;
- }
- return (
- <Wrapper
- title={t('Resources and Possible Solutions')}
- configResources={!!config.resources}
- type={SectionKey.RESOURCES}
- >
- <Content>
- {config.resources && (
- <Resources
- eventPlatform={event.platform}
- groupId={group.id}
- configResources={config.resources}
- />
- )}
- {displayAiSuggestedSolution && (
- <AiSuggestedSolution event={event} projectSlug={project.slug} />
- )}
- {displayAiAutofix && <Autofix event={event} group={group} />}
- </Content>
- </Wrapper>
- );
- }
- const Content = styled('div')`
- display: flex;
- flex-direction: column;
- gap: ${space(2)};
- `;
- const Wrapper = styled(InterimSection)<{configResources: boolean}>`
- @media (min-width: ${p => p.theme.breakpoints.xlarge}) {
- ${p =>
- !p.configResources &&
- css`
- && {
- padding-top: ${space(3)};
- }
- `}
- }
- `;
|