import type { FC } from '../../../lib/teact/teact'; import React, { useEffect, useRef, useState } from '../../../lib/teact/teact'; import type { ApiMessage } from '../../../api/types'; import type { ObserveFn } from '../../../hooks/useIntersectionObserver'; import type { ISettings } from '../../../types'; import type { IMediaDimensions } from './helpers/calculateAlbumLayout'; import { CUSTOM_APPENDIX_ATTRIBUTE, MESSAGE_CONTENT_SELECTOR } from '../../../config'; import { requestMutation } from '../../../lib/fasterdom/fasterdom'; import { getMediaTransferState, getMessageMediaFormat, getMessageMediaHash, getMessageMediaThumbDataUri, getMessagePhoto, getMessageWebPagePhoto, isOwnMessage, } from '../../../global/helpers'; import buildClassName from '../../../util/buildClassName'; import getCustomAppendixBg from './helpers/getCustomAppendixBg'; import { calculateMediaDimensions, MIN_MEDIA_HEIGHT } from './helpers/mediaDimensions'; import useAppLayout from '../../../hooks/useAppLayout'; import useFlag from '../../../hooks/useFlag'; import { useIsIntersecting } from '../../../hooks/useIntersectionObserver'; import useLastCallback from '../../../hooks/useLastCallback'; import useLayoutEffectWithPrevDeps from '../../../hooks/useLayoutEffectWithPrevDeps'; import useMediaTransition from '../../../hooks/useMediaTransition'; import useMediaWithLoadProgress from '../../../hooks/useMediaWithLoadProgress'; import usePrevious from '../../../hooks/usePrevious'; import useShowTransition from '../../../hooks/useShowTransition'; import useBlurredMediaThumbRef from './hooks/useBlurredMediaThumbRef'; import MediaSpoiler from '../../common/MediaSpoiler'; import ProgressSpinner from '../../ui/ProgressSpinner'; export type OwnProps = { id?: string; message: ApiMessage; observeIntersection?: ObserveFn; noAvatars?: boolean; canAutoLoad?: boolean; isInSelectMode?: boolean; isSelected?: boolean; uploadProgress?: number; forcedWidth?: number; size?: 'inline' | 'pictogram'; shouldAffectAppendix?: boolean; dimensions?: IMediaDimensions & { isSmall?: boolean }; asForwarded?: boolean; nonInteractive?: boolean; isDownloading?: boolean; isProtected?: boolean; theme: ISettings['theme']; onClick?: (id: number) => void; onCancelUpload?: (message: ApiMessage) => void; }; const Photo: FC = ({ id, message, observeIntersection, noAvatars, canAutoLoad, isInSelectMode, isSelected, uploadProgress, forcedWidth, size = 'inline', dimensions, asForwarded, nonInteractive, shouldAffectAppendix, isDownloading, isProtected, theme, onClick, onCancelUpload, }) => { // eslint-disable-next-line no-null/no-null const ref = useRef(null); const photo = (getMessagePhoto(message) || getMessageWebPagePhoto(message))!; const localBlobUrl = photo.blobUrl; const isIntersecting = useIsIntersecting(ref, observeIntersection); const { isMobile } = useAppLayout(); const [isLoadAllowed, setIsLoadAllowed] = useState(canAutoLoad); const shouldLoad = isLoadAllowed && isIntersecting; const { mediaData, loadProgress, } = useMediaWithLoadProgress(getMessageMediaHash(message, size), !shouldLoad); const fullMediaData = localBlobUrl || mediaData; const withBlurredBackground = Boolean(forcedWidth); const [withThumb] = useState(!fullMediaData); const noThumb = Boolean(fullMediaData); const thumbRef = useBlurredMediaThumbRef(message, noThumb); const blurredBackgroundRef = useBlurredMediaThumbRef(message, !withBlurredBackground); const thumbClassNames = useMediaTransition(!noThumb); const thumbDataUri = getMessageMediaThumbDataUri(message); const [isSpoilerShown, showSpoiler, hideSpoiler] = useFlag(photo.isSpoiler); useEffect(() => { if (photo.isSpoiler) { showSpoiler(); } else { hideSpoiler(); } }, [photo.isSpoiler]); const { loadProgress: downloadProgress, } = useMediaWithLoadProgress( getMessageMediaHash(message, 'download'), !isDownloading, getMessageMediaFormat(message, 'download'), ); const { isUploading, isTransferring, transferProgress, } = getMediaTransferState( message, uploadProgress || (isDownloading ? downloadProgress : loadProgress), shouldLoad && !fullMediaData, uploadProgress !== undefined, ); const wasLoadDisabled = usePrevious(isLoadAllowed) === false; const { shouldRender: shouldRenderSpinner, transitionClassNames: spinnerClassNames, } = useShowTransition(isTransferring, undefined, wasLoadDisabled, 'slow'); const { shouldRender: shouldRenderDownloadButton, transitionClassNames: downloadButtonClassNames, } = useShowTransition(!fullMediaData && !isLoadAllowed); const handleClick = useLastCallback(() => { if (isUploading) { onCancelUpload?.(message); return; } if (!fullMediaData) { setIsLoadAllowed((isAllowed) => !isAllowed); return; } if (isSpoilerShown) { hideSpoiler(); return; } onClick?.(message.id); }); const isOwn = isOwnMessage(message); useLayoutEffectWithPrevDeps(([prevShouldAffectAppendix]) => { if (!shouldAffectAppendix) { if (prevShouldAffectAppendix) { ref.current!.closest(MESSAGE_CONTENT_SELECTOR)!.removeAttribute(CUSTOM_APPENDIX_ATTRIBUTE); } return; } const contentEl = ref.current!.closest(MESSAGE_CONTENT_SELECTOR)!; if (fullMediaData) { getCustomAppendixBg(fullMediaData, isOwn, isSelected, theme).then((appendixBg) => { requestMutation(() => { contentEl.style.setProperty('--appendix-bg', appendixBg); contentEl.setAttribute(CUSTOM_APPENDIX_ATTRIBUTE, ''); }); }); } else { contentEl.classList.add('has-appendix-thumb'); } }, [shouldAffectAppendix, fullMediaData, isOwn, isInSelectMode, isSelected, theme]); const { width, height, isSmall } = dimensions || calculateMediaDimensions(message, asForwarded, noAvatars, isMobile); const className = buildClassName( 'media-inner', !isUploading && !nonInteractive && 'interactive', isSmall && 'small-image', width === height && 'square-image', height < MIN_MEDIA_HEIGHT && 'fix-min-height', ); const dimensionsStyle = dimensions ? ` width: ${width}px; left: ${dimensions.x}px; top: ${dimensions.y}px;` : ''; const style = size === 'inline' ? `height: ${height}px;${dimensionsStyle}` : undefined; return (
{withBlurredBackground && ( )} {withThumb && ( )} {isProtected && } {shouldRenderSpinner && !shouldRenderDownloadButton && (
)} {shouldRenderDownloadButton && } {isTransferring && ( {Math.round(transferProgress * 100)}% )}
); }; export default Photo;