402 lines
12 KiB
TypeScript
402 lines
12 KiB
TypeScript
import type { FC } from '../../lib/teact/teact';
|
|
import React, { memo, useEffect, useState } from '../../lib/teact/teact';
|
|
import { getActions, withGlobal } from '../../global';
|
|
|
|
import type {
|
|
ApiChat, ApiPeerPhotos, ApiSticker, ApiTopic, ApiUser, ApiUserStatus,
|
|
} from '../../api/types';
|
|
import { MediaViewerOrigin } from '../../types';
|
|
|
|
import {
|
|
getUserStatus, isAnonymousForwardsChat, isChatChannel, isSystemBot, isUserOnline,
|
|
} from '../../global/helpers';
|
|
import {
|
|
selectChat,
|
|
selectCurrentMessageList,
|
|
selectPeerPhotos,
|
|
selectTabState,
|
|
selectThreadMessagesCount,
|
|
selectTopic,
|
|
selectUser,
|
|
selectUserStatus,
|
|
} from '../../global/selectors';
|
|
import buildClassName from '../../util/buildClassName';
|
|
import { captureEvents, SwipeDirection } from '../../util/captureEvents';
|
|
import { MEMO_EMPTY_ARRAY } from '../../util/memo';
|
|
import { IS_TOUCH_ENV } from '../../util/windowEnvironment';
|
|
import renderText from './helpers/renderText';
|
|
|
|
import useIntervalForceUpdate from '../../hooks/schedulers/useIntervalForceUpdate';
|
|
import useLastCallback from '../../hooks/useLastCallback';
|
|
import useOldLang from '../../hooks/useOldLang';
|
|
import usePreviousDeprecated from '../../hooks/usePreviousDeprecated';
|
|
import usePhotosPreload from './hooks/usePhotosPreload';
|
|
|
|
import Transition from '../ui/Transition';
|
|
import Avatar from './Avatar';
|
|
import FullNameTitle from './FullNameTitle';
|
|
import ProfilePhoto from './ProfilePhoto';
|
|
import TopicIcon from './TopicIcon';
|
|
|
|
import './ProfileInfo.scss';
|
|
import styles from './ProfileInfo.module.scss';
|
|
|
|
type OwnProps = {
|
|
peerId: string;
|
|
forceShowSelf?: boolean;
|
|
canPlayVideo: boolean;
|
|
};
|
|
|
|
type StateProps =
|
|
{
|
|
user?: ApiUser;
|
|
userStatus?: ApiUserStatus;
|
|
chat?: ApiChat;
|
|
mediaIndex?: number;
|
|
avatarOwnerId?: string;
|
|
topic?: ApiTopic;
|
|
messagesCount?: number;
|
|
emojiStatusSticker?: ApiSticker;
|
|
profilePhotos?: ApiPeerPhotos;
|
|
};
|
|
|
|
const EMOJI_STATUS_SIZE = 24;
|
|
const EMOJI_TOPIC_SIZE = 120;
|
|
const LOAD_MORE_THRESHOLD = 3;
|
|
const MAX_PHOTO_DASH_COUNT = 30;
|
|
const STATUS_UPDATE_INTERVAL = 1000 * 60; // 1 min
|
|
|
|
const ProfileInfo: FC<OwnProps & StateProps> = ({
|
|
forceShowSelf,
|
|
canPlayVideo,
|
|
user,
|
|
userStatus,
|
|
chat,
|
|
mediaIndex,
|
|
avatarOwnerId,
|
|
topic,
|
|
messagesCount,
|
|
emojiStatusSticker,
|
|
profilePhotos,
|
|
peerId,
|
|
}) => {
|
|
const {
|
|
openMediaViewer,
|
|
openPremiumModal,
|
|
openStickerSet,
|
|
openPrivacySettingsNoticeModal,
|
|
loadMoreProfilePhotos,
|
|
} = getActions();
|
|
|
|
const lang = useOldLang();
|
|
|
|
useIntervalForceUpdate(user ? STATUS_UPDATE_INTERVAL : undefined);
|
|
|
|
const photos = profilePhotos?.photos || MEMO_EMPTY_ARRAY;
|
|
const prevMediaIndex = usePreviousDeprecated(mediaIndex);
|
|
const prevAvatarOwnerId = usePreviousDeprecated(avatarOwnerId);
|
|
const [hasSlideAnimation, setHasSlideAnimation] = useState(true);
|
|
// slideOptimized doesn't work well when animation is dynamically disabled
|
|
const slideAnimation = hasSlideAnimation ? (lang.isRtl ? 'slideRtl' : 'slide') : 'none';
|
|
|
|
const [currentPhotoIndex, setCurrentPhotoIndex] = useState(0);
|
|
const isFirst = photos.length <= 1 || currentPhotoIndex === 0;
|
|
const isLast = photos.length <= 1 || currentPhotoIndex === photos.length - 1;
|
|
|
|
useEffect(() => {
|
|
if (photos.length - currentPhotoIndex <= LOAD_MORE_THRESHOLD) {
|
|
loadMoreProfilePhotos({ peerId });
|
|
}
|
|
}, [currentPhotoIndex, peerId, photos.length]);
|
|
|
|
// Set the current avatar photo to the last selected photo in Media Viewer after it is closed
|
|
useEffect(() => {
|
|
if (prevAvatarOwnerId && prevMediaIndex !== undefined && mediaIndex === undefined) {
|
|
setHasSlideAnimation(false);
|
|
setCurrentPhotoIndex(prevMediaIndex);
|
|
}
|
|
}, [mediaIndex, prevMediaIndex, prevAvatarOwnerId]);
|
|
|
|
// Deleting the last profile photo may result in an error
|
|
useEffect(() => {
|
|
if (currentPhotoIndex > photos.length) {
|
|
setHasSlideAnimation(false);
|
|
setCurrentPhotoIndex(Math.max(0, photos.length - 1));
|
|
}
|
|
}, [currentPhotoIndex, photos.length]);
|
|
|
|
usePhotosPreload(photos, currentPhotoIndex);
|
|
|
|
const handleProfilePhotoClick = useLastCallback(() => {
|
|
openMediaViewer({
|
|
isAvatarView: true,
|
|
chatId: peerId,
|
|
mediaIndex: currentPhotoIndex,
|
|
origin: forceShowSelf ? MediaViewerOrigin.SettingsAvatar : MediaViewerOrigin.ProfileAvatar,
|
|
});
|
|
});
|
|
|
|
const handleStatusClick = useLastCallback(() => {
|
|
if (!peerId) {
|
|
openStickerSet({
|
|
stickerSetInfo: emojiStatusSticker!.stickerSetInfo,
|
|
});
|
|
return;
|
|
}
|
|
|
|
openPremiumModal({ fromUserId: peerId });
|
|
});
|
|
|
|
const selectPreviousMedia = useLastCallback(() => {
|
|
if (isFirst) {
|
|
return;
|
|
}
|
|
setHasSlideAnimation(true);
|
|
setCurrentPhotoIndex(currentPhotoIndex - 1);
|
|
});
|
|
|
|
const selectNextMedia = useLastCallback(() => {
|
|
if (isLast) {
|
|
return;
|
|
}
|
|
setHasSlideAnimation(true);
|
|
setCurrentPhotoIndex(currentPhotoIndex + 1);
|
|
});
|
|
|
|
const handleOpenGetReadDateModal = useLastCallback(() => {
|
|
openPrivacySettingsNoticeModal({ chatId: chat!.id, isReadDate: false });
|
|
});
|
|
|
|
function handleSelectFallbackPhoto() {
|
|
if (!isFirst) return;
|
|
setHasSlideAnimation(true);
|
|
setCurrentPhotoIndex(photos.length - 1);
|
|
}
|
|
|
|
// Swipe gestures
|
|
useEffect(() => {
|
|
const element = document.querySelector<HTMLDivElement>(`.${styles.photoWrapper}`);
|
|
if (!element) {
|
|
return undefined;
|
|
}
|
|
|
|
return captureEvents(element, {
|
|
selectorToPreventScroll: '.Profile, .settings-content',
|
|
onSwipe: IS_TOUCH_ENV ? (e, direction) => {
|
|
if (direction === SwipeDirection.Right) {
|
|
selectPreviousMedia();
|
|
return true;
|
|
} else if (direction === SwipeDirection.Left) {
|
|
selectNextMedia();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
} : undefined,
|
|
});
|
|
}, [selectNextMedia, selectPreviousMedia]);
|
|
|
|
if (!user && !chat) {
|
|
return undefined;
|
|
}
|
|
|
|
function renderTopic() {
|
|
return (
|
|
<div className={styles.topicContainer}>
|
|
<TopicIcon
|
|
topic={topic!}
|
|
size={EMOJI_TOPIC_SIZE}
|
|
className={styles.topicIcon}
|
|
letterClassName={styles.topicIconTitle}
|
|
noLoopLimit
|
|
/>
|
|
<h3 className={styles.topicTitle} dir={lang.isRtl ? 'rtl' : undefined}>{renderText(topic!.title)}</h3>
|
|
<p className={styles.topicMessagesCounter}>
|
|
{messagesCount ? lang('Chat.Title.Topic', messagesCount, 'i') : lang('lng_forum_no_messages')}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function renderPhotoTabs() {
|
|
const totalPhotosLength = Math.max(photos.length, profilePhotos?.count || 0);
|
|
if (!photos || totalPhotosLength <= 1) {
|
|
return undefined;
|
|
}
|
|
|
|
const enumerator = Array.from({ length: Math.min(totalPhotosLength, MAX_PHOTO_DASH_COUNT) });
|
|
const activeDashIndex = currentPhotoIndex >= MAX_PHOTO_DASH_COUNT ? MAX_PHOTO_DASH_COUNT - 1 : currentPhotoIndex;
|
|
|
|
return (
|
|
<div className={styles.photoDashes}>
|
|
{enumerator.map((_, i) => (
|
|
<span className={buildClassName(styles.photoDash, i === activeDashIndex && styles.photoDash_current)} />
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function renderPhoto(isActive?: boolean) {
|
|
const photo = photos.length > 0
|
|
? photos[currentPhotoIndex]
|
|
: undefined;
|
|
|
|
return (
|
|
<ProfilePhoto
|
|
key={currentPhotoIndex}
|
|
user={user}
|
|
chat={chat}
|
|
photo={photo}
|
|
canPlayVideo={Boolean(isActive && canPlayVideo)}
|
|
onClick={handleProfilePhotoClick}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function renderStatus() {
|
|
const isAnonymousForwards = isAnonymousForwardsChat(peerId);
|
|
const isSystemBotChat = isSystemBot(peerId);
|
|
if (isAnonymousForwards || isSystemBotChat) return undefined;
|
|
|
|
if (user) {
|
|
return (
|
|
<div
|
|
className={buildClassName(
|
|
styles.status,
|
|
'status',
|
|
isUserOnline(user, userStatus) && 'online',
|
|
)}
|
|
>
|
|
<span className={styles.userStatus} dir="auto">
|
|
{getUserStatus(lang, user, userStatus)}
|
|
</span>
|
|
{userStatus?.isReadDateRestrictedByMe && (
|
|
<span className={styles.getStatus} onClick={handleOpenGetReadDateModal}>
|
|
<span>{lang('StatusHiddenShow')}</span>
|
|
</span>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<span className={buildClassName(styles.status, 'status')} dir="auto">{
|
|
isChatChannel(chat!)
|
|
? lang('Subscribers', chat!.membersCount ?? 0, 'i')
|
|
: lang('Members', chat!.membersCount ?? 0, 'i')
|
|
}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
if (topic) {
|
|
return renderTopic();
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={buildClassName('ProfileInfo')}
|
|
dir={lang.isRtl ? 'rtl' : undefined}
|
|
>
|
|
<div className={styles.photoWrapper}>
|
|
{renderPhotoTabs()}
|
|
{!forceShowSelf && profilePhotos?.personalPhoto && (
|
|
<div className={buildClassName(
|
|
styles.fallbackPhoto,
|
|
isFirst && styles.fallbackPhotoVisible,
|
|
)}
|
|
>
|
|
<div className={styles.fallbackPhotoContents}>
|
|
{lang(profilePhotos.personalPhoto.isVideo ? 'UserInfo.CustomVideo' : 'UserInfo.CustomPhoto')}
|
|
</div>
|
|
</div>
|
|
)}
|
|
{forceShowSelf && profilePhotos?.fallbackPhoto && (
|
|
<div className={buildClassName(
|
|
styles.fallbackPhoto,
|
|
(isFirst || isLast) && styles.fallbackPhotoVisible,
|
|
)}
|
|
>
|
|
<div className={styles.fallbackPhotoContents} onClick={handleSelectFallbackPhoto}>
|
|
{!isLast && (
|
|
<Avatar
|
|
photo={profilePhotos.fallbackPhoto}
|
|
className={styles.fallbackPhotoAvatar}
|
|
size="mini"
|
|
/>
|
|
)}
|
|
{lang(profilePhotos.fallbackPhoto.isVideo ? 'UserInfo.PublicVideo' : 'UserInfo.PublicPhoto')}
|
|
</div>
|
|
</div>
|
|
)}
|
|
<Transition activeKey={currentPhotoIndex} name={slideAnimation}>
|
|
{renderPhoto}
|
|
</Transition>
|
|
|
|
{!isFirst && (
|
|
<button
|
|
type="button"
|
|
dir={lang.isRtl ? 'rtl' : undefined}
|
|
className={buildClassName(styles.navigation, styles.navigation_prev)}
|
|
aria-label={lang('AccDescrPrevious')}
|
|
onClick={selectPreviousMedia}
|
|
/>
|
|
)}
|
|
{!isLast && (
|
|
<button
|
|
type="button"
|
|
dir={lang.isRtl ? 'rtl' : undefined}
|
|
className={buildClassName(styles.navigation, styles.navigation_next)}
|
|
aria-label={lang('Next')}
|
|
onClick={selectNextMedia}
|
|
/>
|
|
)}
|
|
</div>
|
|
|
|
<div className={styles.info} dir={lang.isRtl ? 'rtl' : 'auto'}>
|
|
{(user || chat) && (
|
|
<FullNameTitle
|
|
peer={(user || chat)!}
|
|
withEmojiStatus
|
|
emojiStatusSize={EMOJI_STATUS_SIZE}
|
|
onEmojiStatusClick={handleStatusClick}
|
|
noLoopLimit
|
|
canCopyTitle
|
|
/>
|
|
)}
|
|
{renderStatus()}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default memo(withGlobal<OwnProps>(
|
|
(global, { peerId }): StateProps => {
|
|
const user = selectUser(global, peerId);
|
|
const userStatus = selectUserStatus(global, peerId);
|
|
const chat = selectChat(global, peerId);
|
|
const profilePhotos = selectPeerPhotos(global, peerId);
|
|
const { mediaIndex, chatId: avatarOwnerId } = selectTabState(global).mediaViewer;
|
|
const isForum = chat?.isForum;
|
|
const { threadId: currentTopicId } = selectCurrentMessageList(global) || {};
|
|
const topic = isForum && currentTopicId ? selectTopic(global, peerId, currentTopicId) : undefined;
|
|
|
|
const emojiStatus = (user || chat)?.emojiStatus;
|
|
const emojiStatusSticker = emojiStatus ? global.customEmojis.byId[emojiStatus.documentId] : undefined;
|
|
|
|
return {
|
|
user,
|
|
userStatus,
|
|
chat,
|
|
mediaIndex,
|
|
avatarOwnerId,
|
|
emojiStatusSticker,
|
|
profilePhotos,
|
|
...(topic && {
|
|
topic,
|
|
messagesCount: selectThreadMessagesCount(global, peerId, currentTopicId!),
|
|
}),
|
|
};
|
|
},
|
|
)(ProfileInfo));
|