155 lines
4.8 KiB
TypeScript
155 lines
4.8 KiB
TypeScript
import React, { memo, useEffect, useRef } from '../../lib/teact/teact';
|
|
|
|
import type { FC, TeactNode } from '../../lib/teact/teact';
|
|
import type { ApiChat, ApiPhoto, ApiUser } from '../../api/types';
|
|
|
|
import { IS_CANVAS_FILTER_SUPPORTED } from '../../util/windowEnvironment';
|
|
import {
|
|
getChatAvatarHash,
|
|
getChatTitle,
|
|
getUserColorKey,
|
|
getUserFullName,
|
|
isUserId,
|
|
isChatWithRepliesBot,
|
|
isDeletedUser, getVideoAvatarMediaHash,
|
|
} from '../../global/helpers';
|
|
import renderText from './helpers/renderText';
|
|
import buildClassName from '../../util/buildClassName';
|
|
import { getFirstLetters } from '../../util/textFormat';
|
|
import useMedia from '../../hooks/useMedia';
|
|
import useLang from '../../hooks/useLang';
|
|
import useFlag from '../../hooks/useFlag';
|
|
import useMediaTransition from '../../hooks/useMediaTransition';
|
|
import useCanvasBlur from '../../hooks/useCanvasBlur';
|
|
import useAppLayout from '../../hooks/useAppLayout';
|
|
|
|
import Spinner from '../ui/Spinner';
|
|
import OptimizedVideo from '../ui/OptimizedVideo';
|
|
|
|
import './ProfilePhoto.scss';
|
|
|
|
type OwnProps = {
|
|
chat?: ApiChat;
|
|
user?: ApiUser;
|
|
isSavedMessages?: boolean;
|
|
photo?: ApiPhoto;
|
|
canPlayVideo: boolean;
|
|
onClick: NoneToVoidFunction;
|
|
};
|
|
|
|
const ProfilePhoto: FC<OwnProps> = ({
|
|
chat,
|
|
user,
|
|
photo,
|
|
isSavedMessages,
|
|
canPlayVideo,
|
|
onClick,
|
|
}) => {
|
|
// eslint-disable-next-line no-null/no-null
|
|
const videoRef = useRef<HTMLVideoElement>(null);
|
|
|
|
const lang = useLang();
|
|
const { isMobile } = useAppLayout();
|
|
|
|
const isDeleted = user && isDeletedUser(user);
|
|
const isRepliesChat = chat && isChatWithRepliesBot(chat.id);
|
|
const userOrChat = user || chat;
|
|
const canHaveMedia = userOrChat && !isSavedMessages && !isDeleted && !isRepliesChat;
|
|
const { isVideo } = photo || {};
|
|
|
|
const avatarHash = canHaveMedia && getChatAvatarHash(userOrChat, 'normal');
|
|
const avatarBlobUrl = useMedia(avatarHash);
|
|
|
|
const photoHash = canHaveMedia && photo && !isVideo && `photo${photo.id}?size=c`;
|
|
const photoBlobUrl = useMedia(photoHash);
|
|
|
|
const videoHash = canHaveMedia && photo && isVideo && getVideoAvatarMediaHash(photo);
|
|
const videoBlobUrl = useMedia(videoHash);
|
|
|
|
const fullMediaData = videoBlobUrl || photoBlobUrl;
|
|
const [isVideoReady, markVideoReady] = useFlag();
|
|
const isFullMediaReady = Boolean(fullMediaData && (!isVideo || isVideoReady));
|
|
const transitionClassNames = useMediaTransition(isFullMediaReady);
|
|
const isBlurredThumb = canHaveMedia && !isFullMediaReady && !avatarBlobUrl && photo?.thumbnail?.dataUri;
|
|
const blurredThumbCanvasRef = useCanvasBlur(
|
|
photo?.thumbnail?.dataUri, !isBlurredThumb, isMobile && !IS_CANVAS_FILTER_SUPPORTED,
|
|
);
|
|
const hasMedia = photo || avatarBlobUrl || isBlurredThumb;
|
|
|
|
useEffect(() => {
|
|
if (videoRef.current && !canPlayVideo) {
|
|
videoRef.current.currentTime = 0;
|
|
}
|
|
}, [canPlayVideo]);
|
|
|
|
let content: TeactNode | undefined;
|
|
|
|
if (isSavedMessages) {
|
|
content = <i className="icon icon-avatar-saved-messages" />;
|
|
} else if (isDeleted) {
|
|
content = <i className="icon icon-avatar-deleted-account" />;
|
|
} else if (isRepliesChat) {
|
|
content = <i className="icon icon-reply-filled" />;
|
|
} else if (hasMedia) {
|
|
content = (
|
|
<>
|
|
{isBlurredThumb ? (
|
|
<canvas ref={blurredThumbCanvasRef} className="thumb" />
|
|
) : (
|
|
<img src={avatarBlobUrl} className="thumb" alt="" />
|
|
)}
|
|
{photo && (
|
|
isVideo ? (
|
|
<OptimizedVideo
|
|
canPlay={canPlayVideo}
|
|
ref={videoRef}
|
|
src={fullMediaData}
|
|
className={buildClassName('avatar-media', transitionClassNames)}
|
|
muted
|
|
disablePictureInPicture
|
|
loop
|
|
playsInline
|
|
onReady={markVideoReady}
|
|
/>
|
|
) : (
|
|
<img
|
|
src={fullMediaData}
|
|
className={buildClassName('avatar-media', transitionClassNames)}
|
|
alt=""
|
|
/>
|
|
)
|
|
)}
|
|
</>
|
|
);
|
|
} else if (user) {
|
|
const userFullName = getUserFullName(user);
|
|
content = userFullName ? getFirstLetters(userFullName, 2) : undefined;
|
|
} else if (chat) {
|
|
const title = getChatTitle(lang, chat);
|
|
content = title && getFirstLetters(title, isUserId(chat.id) ? 2 : 1);
|
|
} else {
|
|
content = (
|
|
<div className="spinner-wrapper">
|
|
<Spinner color="white" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const fullClassName = buildClassName(
|
|
'ProfilePhoto',
|
|
`color-bg-${getUserColorKey(user || chat)}`,
|
|
isSavedMessages && 'saved-messages',
|
|
isDeleted && 'deleted-account',
|
|
isRepliesChat && 'replies-bot-account',
|
|
(!isSavedMessages && !hasMedia) && 'no-photo',
|
|
);
|
|
|
|
return (
|
|
<div className={fullClassName} onClick={hasMedia ? onClick : undefined}>
|
|
{typeof content === 'string' ? renderText(content, ['hq_emoji']) : content}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default memo(ProfilePhoto);
|