import type { FC } from '../../../lib/teact/teact'; import React, { memo, useRef } from '../../../lib/teact/teact'; import { getActions, withGlobal } from '../../../global'; import type { ApiMessage, ApiTypeStory } from '../../../api/types'; import type { ObserveFn } from '../../../hooks/useIntersectionObserver'; import { AudioOrigin, type ISettings } from '../../../types'; import { getMessageWebPage } from '../../../global/helpers'; import { selectCanPlayAnimatedEmojis } from '../../../global/selectors'; import buildClassName from '../../../util/buildClassName'; import trimText from '../../../util/trimText'; import renderText from '../../common/helpers/renderText'; import { calculateMediaDimensions } from './helpers/mediaDimensions'; import { getWebpageButtonLangKey } from './helpers/webpageType'; import useDynamicColorListener from '../../../hooks/stickers/useDynamicColorListener'; import useAppLayout from '../../../hooks/useAppLayout'; import useEnsureStory from '../../../hooks/useEnsureStory'; import useLang from '../../../hooks/useLang'; import useLastCallback from '../../../hooks/useLastCallback'; import useOldLang from '../../../hooks/useOldLang'; import Audio from '../../common/Audio'; import Document from '../../common/Document'; import EmojiIconBackground from '../../common/embedded/EmojiIconBackground'; import PeerColorWrapper from '../../common/PeerColorWrapper'; import SafeLink from '../../common/SafeLink'; import StickerView from '../../common/StickerView'; import Button from '../../ui/Button'; import BaseStory from './BaseStory'; import Photo from './Photo'; import Video from './Video'; import WebPageUniqueGift from './WebPageUniqueGift'; import './WebPage.scss'; const MAX_TEXT_LENGTH = 170; // symbols const WEBPAGE_STORY_TYPE = 'telegram_story'; const WEBPAGE_GIFT_TYPE = 'telegram_nft'; const STICKER_SIZE = 80; const EMOJI_SIZE = 38; type OwnProps = { message: ApiMessage; observeIntersectionForLoading?: ObserveFn; observeIntersectionForPlaying?: ObserveFn; noAvatars?: boolean; canAutoLoad?: boolean; canAutoPlay?: boolean; inPreview?: boolean; asForwarded?: boolean; isDownloading?: boolean; isProtected?: boolean; isConnected?: boolean; backgroundEmojiId?: string; theme: ISettings['theme']; story?: ApiTypeStory; shouldWarnAboutSvg?: boolean; autoLoadFileMaxSizeMb?: number; onAudioPlay?: NoneToVoidFunction; onMediaClick?: NoneToVoidFunction; onCancelMediaTransfer?: NoneToVoidFunction; onContainerClick?: ((e: React.MouseEvent) => void); isEditing?: boolean; }; type StateProps = { canPlayAnimatedEmojis: boolean; }; const WebPage: FC = ({ message, observeIntersectionForLoading, observeIntersectionForPlaying, noAvatars, canAutoLoad, canAutoPlay, inPreview, asForwarded, isDownloading = false, isProtected, isConnected, story, theme, backgroundEmojiId, shouldWarnAboutSvg, autoLoadFileMaxSizeMb, onMediaClick, onContainerClick, onAudioPlay, onCancelMediaTransfer, isEditing, }) => { const { openUrl, openTelegramLink } = getActions(); const webPage = getMessageWebPage(message); const { isMobile } = useAppLayout(); // eslint-disable-next-line no-null/no-null const stickersRef = useRef(null); const oldLang = useOldLang(); const lang = useLang(); const handleMediaClick = useLastCallback(() => { onMediaClick!(); }); const handleContainerClick = useLastCallback((e: React.MouseEvent) => { onContainerClick?.(e); }); const handleOpenTelegramLink = useLastCallback(() => { if (!webPage) return; openTelegramLink({ url: webPage.url, }); }); const { story: storyData, stickers } = webPage || {}; useEnsureStory(storyData?.peerId, storyData?.id, story); const hasCustomColor = stickers?.isWithTextColor || stickers?.documents?.[0]?.shouldUseTextColor; const customColor = useDynamicColorListener(stickersRef, undefined, !hasCustomColor); if (!webPage) { return undefined; } const { siteName, url, displayUrl, title, description, photo, video, audio, type, document, mediaSize, } = webPage; const isStory = type === WEBPAGE_STORY_TYPE; const isGift = type === WEBPAGE_GIFT_TYPE; const isExpiredStory = story && 'isDeleted' in story; const quickButtonLangKey = !inPreview && !isExpiredStory ? getWebpageButtonLangKey(type) : undefined; const quickButtonTitle = quickButtonLangKey && lang(quickButtonLangKey); const truncatedDescription = trimText(description, MAX_TEXT_LENGTH); const isArticle = Boolean(truncatedDescription || title || siteName); let isSquarePhoto = Boolean(stickers); if (isArticle && webPage?.photo && !webPage.video && !webPage.document) { const { width, height } = calculateMediaDimensions({ media: webPage.photo, isOwn: message.isOutgoing, isInWebPage: true, asForwarded, noAvatars, isMobile, }); isSquarePhoto = (width === height || mediaSize === 'small') && mediaSize !== 'large'; } const isMediaInteractive = (photo || video) && onMediaClick && !isSquarePhoto; const className = buildClassName( 'WebPage', inPreview && 'in-preview', !isEditing && inPreview && 'interactive', isSquarePhoto && 'with-square-photo', !photo && !video && !inPreview && 'without-media', video && 'with-video', !isArticle && 'no-article', document && 'with-document', quickButtonTitle && 'with-quick-button', isGift && 'with-gift', ); function renderQuickButton(caption: string) { return ( ); } return (
{backgroundEmojiId && ( )} {isStory && ( )} {isGift && !inPreview && ( )} {isArticle && (
openUrl({ url, shouldSkipModal: true }) : undefined} > {(!inPreview || isGift) && title && (

{renderText(title)}

)} {truncatedDescription && !isGift && (

{renderText(truncatedDescription, ['emoji', 'br'])}

)}
)} {photo && !isGift && !video && !document && ( )} {!inPreview && video && (
{quickButtonTitle && renderQuickButton(quickButtonTitle)}
); }; export default memo(withGlobal( (global): StateProps => { return { canPlayAnimatedEmojis: selectCanPlayAnimatedEmojis(global), }; }, )(WebPage));