123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- import {useCallback, useMemo, useState} from 'react';
- import styled from '@emotion/styled';
- import {Button} from 'sentry/components/button';
- import {CopyToClipboardButton} from 'sentry/components/copyToClipboardButton';
- import ContextLine from 'sentry/components/events/interfaces/frame/contextLine';
- import DefaultTitle from 'sentry/components/events/interfaces/frame/defaultTitle';
- import {IconChevron} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {Frame} from 'sentry/types';
- import {hasDDMExperimentalFeature} from 'sentry/utils/metrics/features';
- import {useMetricsCodeLocations} from 'sentry/utils/metrics/useMetricsCodeLocations';
- import useOrganization from 'sentry/utils/useOrganization';
- import {MetricCodeLocationFrame, MetricMetaCodeLocation} from '../../utils/metrics/index';
- export function CodeLocations({mri}: {mri: string}) {
- const {data} = useMetricsCodeLocations(mri);
- // Keeps track of which code location has expanded source context
- const [expandedCodeLocation, setExpandedCodeLocation] = useState(null);
- const organization = useOrganization();
- const toggleExpandedLocation = useCallback(
- index => {
- if (expandedCodeLocation === index) {
- setExpandedCodeLocation(null);
- } else {
- setExpandedCodeLocation(index);
- }
- },
- [expandedCodeLocation]
- );
- if (!hasDDMExperimentalFeature(organization)) {
- return null;
- }
- if (!Array.isArray(data?.codeLocations) || data?.codeLocations.length === 0) {
- return null;
- }
- const codeLocations = data?.codeLocations ?? [];
- // We only want to show the first 5 code locations
- const reversedCodeLocations = codeLocations.slice(0, 5);
- return (
- <CodeLocationsWrapper>
- {reversedCodeLocations.map((location, index) => (
- <CodeLocation
- key={`location-${index}`}
- codeLocation={location}
- showContext={expandedCodeLocation === index}
- handleShowContext={() => toggleExpandedLocation(index)}
- isFirst={index === 0}
- isLast={index === reversedCodeLocations.length - 1}
- />
- ))}
- </CodeLocationsWrapper>
- );
- }
- type CodeLocationProps = {
- codeLocation: MetricMetaCodeLocation;
- handleShowContext: () => void;
- showContext: boolean;
- isFirst?: boolean;
- isLast?: boolean;
- };
- function CodeLocation({
- codeLocation,
- showContext,
- handleShowContext,
- isFirst,
- isLast,
- }: CodeLocationProps) {
- const frameToShow = codeLocation.frames[0];
- if (!frameToShow) {
- return null;
- }
- const hasContext = !!frameToShow.contextLine;
- return (
- <CodeLocationWrapper>
- <DefaultLineWrapper
- onClick={() => {
- if (!hasContext) {
- return;
- }
- handleShowContext();
- }}
- isFirst={isFirst}
- isLast={isLast}
- hasContext={hasContext}
- >
- <DefaultLine className="title" showContext={showContext}>
- <DefaultLineTitleWrapper>
- <LeftLineTitle>
- <DefaultTitle
- frame={frameToShow as Frame}
- isHoverPreviewed={false}
- platform="other"
- />
- </LeftLineTitle>
- <DefaultLineActionButtons>
- <CopyToClipboardButton
- text={`${frameToShow.filename}:${frameToShow.lineNo}`}
- size="zero"
- iconSize="xs"
- borderless
- />
- <ToggleCodeLocationContextButton
- disabled={!hasContext}
- isToggled={showContext}
- handleToggle={handleShowContext}
- />
- </DefaultLineActionButtons>
- </DefaultLineTitleWrapper>
- </DefaultLine>
- {showContext && hasContext && (
- <CodeLocationContext frame={frameToShow} isLast={isLast} />
- )}
- </DefaultLineWrapper>
- </CodeLocationWrapper>
- );
- }
- type ToggleCodeLocationContextButtonProps = {
- disabled: boolean;
- handleToggle: () => void;
- isToggled: boolean;
- };
- function ToggleCodeLocationContextButton({
- disabled,
- isToggled,
- handleToggle,
- }: ToggleCodeLocationContextButtonProps) {
- return (
- <Button
- title={disabled ? t('No context available') : t('Toggle Context')}
- size="zero"
- onClick={handleToggle}
- disabled={disabled}
- >
- {/* legacy size is deprecated but the icon is too big without it */}
- <IconChevron direction={isToggled ? 'up' : 'down'} size="xs" legacySize="8px" />
- </Button>
- );
- }
- type CodeLocationContextProps = {
- frame: MetricCodeLocationFrame;
- isLast?: boolean;
- };
- function CodeLocationContext({frame, isLast}: CodeLocationContextProps) {
- const lineNo = frame.lineNo ?? 0;
- const preContextLines: [number, string][] = useMemo(
- () => frame.preContext?.map((line, index) => [lineNo - 5 + index, line]) ?? [],
- [frame.preContext, lineNo]
- );
- const postContextLines: [number, string][] = useMemo(
- () => frame.postContext?.map((line, index) => [lineNo + index, line]) ?? [],
- [frame.postContext, lineNo]
- );
- return (
- <SourceContextWrapper isLast={isLast}>
- {preContextLines.map(line => (
- <ContextLine key={`pre-${line[1]}`} line={line} isActive={false} />
- ))}
- <ContextLine line={[lineNo, frame.contextLine ?? '']} isActive />
- {postContextLines.map(line => (
- <ContextLine key={`post-${line[1]}`} line={line} isActive={false} />
- ))}
- </SourceContextWrapper>
- );
- }
- const CodeLocationWrapper = styled('div')`
- display: flex;
- `;
- const DefaultLineActionButtons = styled('div')`
- display: flex;
- gap: ${space(1)};
- `;
- const CodeLocationsWrapper = styled('div')`
- & code {
- font-family: inherit;
- font-size: inherit;
- }
- `;
- const SourceContextWrapper = styled('div')<{isLast?: boolean}>`
- word-wrap: break-word;
- font-family: ${p => p.theme.text.familyMono};
- font-size: ${p => p.theme.fontSizeSmall};
- /* TODO(ddm): find out how it is done on the issues page */
- line-height: 24px;
- min-height: ${space(3)};
- white-space: pre;
- white-space: pre-wrap;
- background-color: ${p => p.theme.background};
- `;
- const DefaultLineWrapper = styled('div')<{
- hasContext?: boolean;
- isFirst?: boolean;
- isLast?: boolean;
- }>`
- :hover {
- cursor: ${p => p.hasContext && 'pointer'};
- }
- flex-grow: 1;
- border-top-left-radius: ${p => (p.isFirst ? p.theme.borderRadius : 0)};
- border-top-right-radius: ${p => (p.isFirst ? p.theme.borderRadius : 0)};
- border-bottom-left-radius: ${p => (p.isLast ? p.theme.borderRadius : 0)};
- border-bottom-right-radius: ${p => (p.isLast ? p.theme.borderRadius : 0)};
- border: 1px solid ${p => p.theme.border};
- border-top: ${p => (p.isFirst ? `1px solid ${p.theme.border}` : 'none')};
- background-color: ${p => p.theme.backgroundTertiary};
- `;
- const DefaultLine = styled('div')<{showContext?: boolean}>`
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: ${p => (p.showContext ? `1px solid ${p.theme.border}` : 'none')};
- `;
- const DefaultLineTitleWrapper = styled('div')`
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: ${p => p.theme.codeFontSize};
- line-height: ${p => p.theme.fontSizeLarge};
- font-style: normal;
- padding: ${space(0.75)} ${space(3)} ${space(0.75)} ${space(1.5)};
- word-break: break-all;
- word-break: break-word;
- `;
- const LeftLineTitle = styled('div')`
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- `;
|