123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- import {useEffect, useState} from 'react';
- import {useTheme} from '@emotion/react';
- import styled from '@emotion/styled';
- import * as Sentry from '@sentry/react';
- import {Button} from 'sentry/components/button';
- import EmptyStateWarning from 'sentry/components/emptyStateWarning';
- import Link from 'sentry/components/links/link';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {IconImage} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import normalizeUrl from 'sentry/utils/url/normalizeUrl';
- import {safeURL} from 'sentry/utils/url/safeURL';
- import {useLocalStorageState} from 'sentry/utils/useLocalStorageState';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import useProjects from 'sentry/utils/useProjects';
- import ResourceSize from 'sentry/views/insights/browser/resources/components/resourceSize';
- import {useIndexedResourcesQuery} from 'sentry/views/insights/browser/resources/queries/useIndexedResourceQuery';
- import {useResourceModuleFilters} from 'sentry/views/insights/browser/resources/utils/useResourceFilters';
- import ChartPanel from 'sentry/views/insights/common/components/chartPanel';
- import {SpanIndexedField} from 'sentry/views/insights/types';
- import {usePerformanceGeneralProjectSettings} from 'sentry/views/performance/utils';
- type Props = {groupId: string; projectId?: number};
- export const LOCAL_STORAGE_SHOW_LINKS = 'performance-resources-images-showLinks';
- const {SPAN_GROUP, RAW_DOMAIN, SPAN_DESCRIPTION, HTTP_RESPONSE_CONTENT_LENGTH, SPAN_OP} =
- SpanIndexedField;
- const imageWidth = '200px';
- const imageHeight = '180px';
- function SampleImages({groupId, projectId}: Props) {
- const [showLinks, setShowLinks] = useLocalStorageState(LOCAL_STORAGE_SHOW_LINKS, false);
- const filters = useResourceModuleFilters();
- const [showImages, setShowImages] = useState(showLinks);
- const {data: settings, isPending: isSettingsLoading} =
- usePerformanceGeneralProjectSettings(projectId);
- const isImagesEnabled = settings?.enable_images ?? false;
- const {data: imageResources, isPending: isLoadingImages} = useIndexedResourcesQuery({
- queryConditions: [
- `${SPAN_GROUP}:${groupId}`,
- ...(filters[SPAN_OP] ? [`${SPAN_OP}:${filters[SPAN_OP]}`] : []),
- ],
- sorts: [{field: `measurements.${HTTP_RESPONSE_CONTENT_LENGTH}`, kind: 'desc'}],
- limit: 100,
- referrer: 'api.performance.resources.sample-images',
- });
- const uniqueResources = new Set();
- const filteredResources = imageResources
- .filter(resource => {
- const fileName = getFileNameFromDescription(resource[SPAN_DESCRIPTION]);
- if (uniqueResources.has(fileName)) {
- return false;
- }
- uniqueResources.add(fileName);
- return true;
- })
- .splice(0, 5);
- const handleClickOnlyShowLinks = () => {
- setShowLinks(true);
- setShowImages(true);
- };
- return (
- <ChartPanel title={showImages ? t('Largest Images') : undefined}>
- <SampleImagesChartPanelBody
- onClickShowLinks={handleClickOnlyShowLinks}
- images={filteredResources}
- isLoadingImages={isLoadingImages}
- isSettingsLoading={isSettingsLoading}
- isImagesEnabled={isImagesEnabled}
- showImages={showImages || isImagesEnabled}
- />
- </ChartPanel>
- );
- }
- function SampleImagesChartPanelBody(props: {
- images: ReturnType<typeof useIndexedResourcesQuery>['data'];
- isImagesEnabled: boolean;
- isLoadingImages: boolean;
- isSettingsLoading: boolean;
- showImages: boolean;
- onClickShowLinks?: () => void;
- }) {
- const {
- onClickShowLinks,
- images,
- isLoadingImages,
- showImages,
- isImagesEnabled,
- isSettingsLoading,
- } = props;
- const hasImages = images.length > 0;
- useEffect(() => {
- if (showImages && !hasImages && !isLoadingImages) {
- Sentry.captureException(new Error('No sample images found'));
- }
- }, [showImages, hasImages, isLoadingImages]);
- if (isSettingsLoading || (showImages && isLoadingImages)) {
- return <LoadingIndicator />;
- }
- if (!showImages) {
- return <DisabledImages onClickShowLinks={onClickShowLinks} />;
- }
- if (showImages && !hasImages) {
- return (
- <EmptyStateWarning>
- <p>{t('No images detected')}</p>
- </EmptyStateWarning>
- );
- }
- return (
- <ImageWrapper>
- {images.map(resource => {
- const hasRawDomain = Boolean(resource[RAW_DOMAIN]);
- const isRelativeUrl = resource[SPAN_DESCRIPTION].startsWith('/');
- let src = resource[SPAN_DESCRIPTION];
- if (isRelativeUrl && hasRawDomain) {
- try {
- const url = new URL(resource[SPAN_DESCRIPTION], resource[RAW_DOMAIN]);
- src = url.href;
- } catch {
- Sentry.setContext('resource', {
- src,
- description: resource[SPAN_DESCRIPTION],
- rawDomain: resource[RAW_DOMAIN],
- });
- Sentry.captureException(new Error('Invalid URL'));
- }
- }
- return (
- <ImageContainer
- src={src}
- showImage={isImagesEnabled}
- fileName={getFileNameFromDescription(resource[SPAN_DESCRIPTION])}
- size={resource[`measurements.${HTTP_RESPONSE_CONTENT_LENGTH}`]}
- key={resource[SPAN_DESCRIPTION]}
- />
- );
- })}
- </ImageWrapper>
- );
- }
- function DisabledImages(props: {onClickShowLinks?: () => void}) {
- const {onClickShowLinks} = props;
- const {
- selection: {projects: selectedProjects},
- } = usePageFilters();
- const {projects} = useProjects();
- const firstProjectSelected = projects.find(
- project => project.id === selectedProjects[0].toString()
- );
- return (
- <div>
- <ChartPanelTextContainer>
- <IconImage />
- <h6>{t('Images not shown')}</h6>
- {t(
- 'You know, you can see the actual images that are on your site if you opt into this feature.'
- )}
- </ChartPanelTextContainer>
- <ButtonContainer>
- <Button onClick={onClickShowLinks}>Only show links</Button>
- <Link
- to={normalizeUrl(
- `/settings/projects/${firstProjectSelected?.slug}/performance/`
- )}
- >
- <Button priority="primary" data-test-id="enable-sample-images-button">
- {t(' Enable in Settings')}
- </Button>
- </Link>
- </ButtonContainer>
- </div>
- );
- }
- function ImageContainer(props: {
- fileName: string;
- showImage: boolean;
- size: number;
- src: string;
- }) {
- const [hasError, setHasError] = useState(false);
- const {fileName, size, src, showImage = true} = props;
- const isRelativeUrl = src.startsWith('/');
- const handleError = () => {
- setHasError(true);
- Sentry.metrics.increment('performance.resource.image_load', 1, {
- tags: {status: 'error'},
- });
- };
- const handleLoad = () => {
- Sentry.metrics.increment('performance.resource.image_load', 1, {
- tags: {status: 'success'},
- });
- };
- return (
- <div style={{width: '100%', wordWrap: 'break-word'}}>
- {showImage && !isRelativeUrl && !hasError ? (
- <div
- style={{
- width: imageWidth,
- height: imageHeight,
- }}
- >
- <img
- data-test-id="sample-image"
- onError={handleError}
- onLoad={handleLoad}
- src={src}
- style={{
- width: '100%',
- height: '100%',
- objectFit: 'contain',
- objectPosition: 'center',
- }}
- />
- </div>
- ) : (
- <MissingImage />
- )}
- {fileName} (<ResourceSize bytes={size} />)
- </div>
- );
- }
- function MissingImage() {
- const theme = useTheme();
- return (
- <div
- style={{
- background: theme.gray100,
- width: imageWidth,
- height: imageHeight,
- position: 'relative',
- }}
- >
- <IconImage
- style={{
- position: 'absolute',
- top: 0,
- right: 0,
- bottom: 0,
- left: 0,
- margin: 'auto',
- }}
- />
- </div>
- );
- }
- const getFileNameFromDescription = (description: string) => {
- const url = safeURL(description);
- if (!url) {
- return description;
- }
- return url.pathname.split('/').pop() ?? '';
- };
- const ImageWrapper = styled('div')`
- display: grid;
- grid-template-columns: repeat(auto-fill, ${imageWidth});
- padding-top: ${space(2)};
- gap: 30px;
- `;
- const ButtonContainer = styled('div')`
- display: grid;
- grid-template-columns: repeat(2, auto);
- gap: ${space(1)};
- justify-content: center;
- align-items: center;
- padding-top: ${space(2)};
- `;
- const ChartPanelTextContainer = styled('div')`
- text-align: center;
- width: 300px;
- margin: auto;
- `;
- export default SampleImages;
|