123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- import {Fragment, useMemo} from 'react';
- import styled from '@emotion/styled';
- import {Hovercard} from 'sentry/components/hovercard';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {SQLishFormatter} from 'sentry/utils/sqlish/SQLishFormatter';
- import {FullSpanDescription} from 'sentry/views/insights/common/components/fullSpanDescription';
- import {SpanGroupDetailsLink} from 'sentry/views/insights/common/components/spanGroupDetailsLink';
- import {ModuleName, SpanMetricsField} from 'sentry/views/insights/types';
- const formatter = new SQLishFormatter();
- const {SPAN_OP} = SpanMetricsField;
- interface Props {
- description: string;
- moduleName: ModuleName.DB | ModuleName.RESOURCE;
- projectId: number;
- extraLinkQueryParams?: Record<string, string>; // extra query params to add to the link
- group?: string;
- spanOp?: string;
- }
- export function SpanDescriptionCell({
- description: rawDescription,
- group,
- moduleName,
- spanOp,
- projectId,
- extraLinkQueryParams,
- }: Props) {
- const formatterDescription = useMemo(() => {
- if (moduleName !== ModuleName.DB) {
- return rawDescription;
- }
- return formatter.toSimpleMarkup(rawDescription);
- }, [moduleName, rawDescription]);
- if (!rawDescription) {
- return NULL_DESCRIPTION;
- }
- const descriptionLink = (
- <SpanGroupDetailsLink
- moduleName={moduleName}
- group={group}
- projectId={projectId}
- spanOp={spanOp}
- description={formatterDescription}
- extraLinkQueryParams={extraLinkQueryParams}
- />
- );
- if (moduleName === ModuleName.DB) {
- return (
- <WiderHovercard
- position="right"
- body={
- <FullSpanDescription
- group={group}
- shortDescription={rawDescription}
- language="sql"
- />
- }
- >
- {descriptionLink}
- </WiderHovercard>
- );
- }
- if (moduleName === ModuleName.RESOURCE) {
- return (
- <WiderHovercard
- position="right"
- body={
- <Fragment>
- <TitleWrapper>{t('Example')}</TitleWrapper>
- <FullSpanDescription
- group={group}
- shortDescription={rawDescription}
- language="http"
- filters={spanOp ? {[SPAN_OP]: spanOp} : undefined}
- />
- </Fragment>
- }
- >
- {descriptionLink}
- </WiderHovercard>
- );
- }
- return descriptionLink;
- }
- const NULL_DESCRIPTION = <span><null></span>;
- export const WiderHovercard = styled(
- ({children, className, ...props}: React.ComponentProps<typeof Hovercard>) => (
- <Hovercard
- className={(className ?? '') + ' wider'}
- containerDisplayMode="inline-flex"
- {...props}
- >
- {children}
- </Hovercard>
- )
- )`
- &.wider {
- width: auto;
- max-width: 550px;
- }
- `;
- const TitleWrapper = styled('div')`
- margin-bottom: ${space(1)};
- `;
|