203 lines
5.2 KiB
TypeScript
203 lines
5.2 KiB
TypeScript
import React, { useEffect, memo, useMemo } from '../../lib/teact/teact';
|
|
import { getActions, withGlobal } from '../../global';
|
|
|
|
import type { FC } from '../../lib/teact/teact';
|
|
import type {
|
|
ApiUser, ApiTypingStatus, ApiUserStatus, ApiChatMember,
|
|
} from '../../api/types';
|
|
import { MediaViewerOrigin } from '../../types';
|
|
|
|
import {
|
|
selectChatMessages,
|
|
selectUser,
|
|
selectUserStatus,
|
|
} from '../../global/selectors';
|
|
import { getMainUsername, getUserStatus, isUserOnline } from '../../global/helpers';
|
|
import buildClassName from '../../util/buildClassName';
|
|
import renderText from './helpers/renderText';
|
|
|
|
import useLastCallback from '../../hooks/useLastCallback';
|
|
import useLang from '../../hooks/useLang';
|
|
|
|
import Avatar from './Avatar';
|
|
import TypingStatus from './TypingStatus';
|
|
import DotAnimation from './DotAnimation';
|
|
import FullNameTitle from './FullNameTitle';
|
|
|
|
type OwnProps = {
|
|
userId: string;
|
|
typingStatus?: ApiTypingStatus;
|
|
avatarSize?: 'tiny' | 'small' | 'medium' | 'large' | 'jumbo';
|
|
forceShowSelf?: boolean;
|
|
status?: string;
|
|
statusIcon?: string;
|
|
withDots?: boolean;
|
|
withMediaViewer?: boolean;
|
|
withUsername?: boolean;
|
|
withFullInfo?: boolean;
|
|
withUpdatingStatus?: boolean;
|
|
emojiStatusSize?: number;
|
|
noStatusOrTyping?: boolean;
|
|
noRtl?: boolean;
|
|
adminMember?: ApiChatMember;
|
|
};
|
|
|
|
type StateProps =
|
|
{
|
|
user?: ApiUser;
|
|
userStatus?: ApiUserStatus;
|
|
isSavedMessages?: boolean;
|
|
areMessagesLoaded: boolean;
|
|
};
|
|
|
|
const PrivateChatInfo: FC<OwnProps & StateProps> = ({
|
|
typingStatus,
|
|
avatarSize = 'medium',
|
|
status,
|
|
statusIcon,
|
|
withDots,
|
|
withMediaViewer,
|
|
withUsername,
|
|
withFullInfo,
|
|
withUpdatingStatus,
|
|
emojiStatusSize,
|
|
noStatusOrTyping,
|
|
noRtl,
|
|
user,
|
|
userStatus,
|
|
isSavedMessages,
|
|
areMessagesLoaded,
|
|
adminMember,
|
|
}) => {
|
|
const {
|
|
loadFullUser,
|
|
openMediaViewer,
|
|
loadProfilePhotos,
|
|
} = getActions();
|
|
|
|
const lang = useLang();
|
|
|
|
const { id: userId } = user || {};
|
|
|
|
useEffect(() => {
|
|
if (userId) {
|
|
if (withFullInfo) loadFullUser({ userId });
|
|
if (withMediaViewer) loadProfilePhotos({ profileId: userId });
|
|
}
|
|
}, [userId, withFullInfo, withMediaViewer]);
|
|
|
|
const handleAvatarViewerOpen = useLastCallback(
|
|
(e: React.MouseEvent<HTMLDivElement, MouseEvent>, hasMedia: boolean) => {
|
|
if (user && hasMedia) {
|
|
e.stopPropagation();
|
|
openMediaViewer({
|
|
avatarOwnerId: user.id,
|
|
mediaId: 0,
|
|
origin: avatarSize === 'jumbo' ? MediaViewerOrigin.ProfileAvatar : MediaViewerOrigin.MiddleHeaderAvatar,
|
|
});
|
|
}
|
|
},
|
|
);
|
|
|
|
const mainUsername = useMemo(() => user && withUsername && getMainUsername(user), [user, withUsername]);
|
|
|
|
if (!user) {
|
|
return undefined;
|
|
}
|
|
|
|
function renderStatusOrTyping() {
|
|
if (status) {
|
|
return withDots ? (
|
|
<DotAnimation className="status" content={status} />
|
|
) : (
|
|
<span className="status" dir="auto">
|
|
{statusIcon && <i className={`icon ${statusIcon} status-icon`} />}
|
|
{renderText(status)}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
if (withUpdatingStatus && !areMessagesLoaded) {
|
|
return (
|
|
<DotAnimation className="status" content={lang('Updating')} />
|
|
);
|
|
}
|
|
|
|
if (!user) {
|
|
return undefined;
|
|
}
|
|
|
|
if (typingStatus) {
|
|
return <TypingStatus typingStatus={typingStatus} />;
|
|
}
|
|
|
|
return (
|
|
<span className={buildClassName('status', isUserOnline(user, userStatus) && 'online')}>
|
|
{mainUsername && <span className="handle">{mainUsername}</span>}
|
|
<span className="user-status" dir="auto">{getUserStatus(lang, user, userStatus)}</span>
|
|
</span>
|
|
);
|
|
}
|
|
|
|
const customTitle = adminMember
|
|
? adminMember.customTitle || lang(adminMember.isOwner ? 'GroupInfo.LabelOwner' : 'GroupInfo.LabelAdmin')
|
|
: undefined;
|
|
|
|
function renderNameTitle() {
|
|
if (customTitle) {
|
|
return (
|
|
<div className="info-name-title">
|
|
<FullNameTitle
|
|
peer={user!}
|
|
withEmojiStatus
|
|
emojiStatusSize={emojiStatusSize}
|
|
isSavedMessages={isSavedMessages}
|
|
/>
|
|
{customTitle && <span className="custom-title">{customTitle}</span>}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<FullNameTitle
|
|
peer={user!}
|
|
withEmojiStatus
|
|
emojiStatusSize={emojiStatusSize}
|
|
isSavedMessages={isSavedMessages}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="ChatInfo" dir={!noRtl && lang.isRtl ? 'rtl' : undefined}>
|
|
<Avatar
|
|
key={user.id}
|
|
size={avatarSize}
|
|
user={user}
|
|
isSavedMessages={isSavedMessages}
|
|
onClick={withMediaViewer ? handleAvatarViewerOpen : undefined}
|
|
/>
|
|
<div className="info">
|
|
{renderNameTitle()}
|
|
{(status || (!isSavedMessages && !noStatusOrTyping)) && renderStatusOrTyping()}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default memo(withGlobal<OwnProps>(
|
|
(global, { userId, forceShowSelf }): StateProps => {
|
|
const user = selectUser(global, userId);
|
|
const userStatus = selectUserStatus(global, userId);
|
|
const isSavedMessages = !forceShowSelf && user && user.isSelf;
|
|
const areMessagesLoaded = Boolean(selectChatMessages(global, userId));
|
|
|
|
return {
|
|
user,
|
|
userStatus,
|
|
isSavedMessages,
|
|
areMessagesLoaded,
|
|
};
|
|
},
|
|
)(PrivateChatInfo));
|