You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
4.0 KiB
TypeScript
140 lines
4.0 KiB
TypeScript
3 years ago
|
import React, { useState } from 'react';
|
||
7 years ago
|
import classNames from 'classnames';
|
||
3 years ago
|
import { useEncryptedFileFetch } from '../../hooks/useEncryptedFileFetch';
|
||
4 years ago
|
import _ from 'underscore';
|
||
3 years ago
|
import {
|
||
|
useAvatarPath,
|
||
|
useConversationUsername,
|
||
|
useIsClosedGroup,
|
||
3 years ago
|
} from '../../hooks/useParamSelector';
|
||
3 years ago
|
import { AvatarPlaceHolder } from './AvatarPlaceHolder/AvatarPlaceHolder';
|
||
|
import { ClosedGroupAvatar } from './AvatarPlaceHolder/ClosedGroupAvatar';
|
||
3 years ago
|
import { useDisableDrag } from '../../hooks/useDisableDrag';
|
||
4 years ago
|
|
||
|
export enum AvatarSize {
|
||
|
XS = 28,
|
||
|
S = 36,
|
||
|
M = 48,
|
||
|
L = 64,
|
||
|
XL = 80,
|
||
|
HUGE = 300,
|
||
|
}
|
||
7 years ago
|
|
||
4 years ago
|
type Props = {
|
||
3 years ago
|
forcedAvatarPath?: string | null;
|
||
|
forcedName?: string;
|
||
3 years ago
|
pubkey: string;
|
||
4 years ago
|
size: AvatarSize;
|
||
4 years ago
|
base64Data?: string; // if this is not empty, it will be used to render the avatar with base64 encoded data
|
||
5 years ago
|
onAvatarClick?: () => void;
|
||
3 years ago
|
dataTestId?: string;
|
||
4 years ago
|
};
|
||
|
|
||
|
const Identicon = (props: Props) => {
|
||
3 years ago
|
const { size, forcedName, pubkey } = props;
|
||
3 years ago
|
const displayName = useConversationUsername(pubkey);
|
||
|
const userName = forcedName || displayName || '0';
|
||
4 years ago
|
|
||
3 years ago
|
return <AvatarPlaceHolder diameter={size} name={userName} pubkey={pubkey} />;
|
||
4 years ago
|
};
|
||
|
|
||
3 years ago
|
const NoImage = (
|
||
|
props: Pick<Props, 'forcedName' | 'size' | 'pubkey' | 'onAvatarClick'> & {
|
||
|
isClosedGroup: boolean;
|
||
|
}
|
||
|
) => {
|
||
|
const { forcedName, size, pubkey, isClosedGroup } = props;
|
||
4 years ago
|
// if no image but we have conversations set for the group, renders group members avatars
|
||
3 years ago
|
if (pubkey && isClosedGroup) {
|
||
4 years ago
|
return (
|
||
3 years ago
|
<ClosedGroupAvatar size={size} closedGroupId={pubkey} onAvatarClick={props.onAvatarClick} />
|
||
4 years ago
|
);
|
||
6 years ago
|
}
|
||
|
|
||
3 years ago
|
return <Identicon size={size} forcedName={forcedName} pubkey={pubkey} />;
|
||
4 years ago
|
};
|
||
7 years ago
|
|
||
4 years ago
|
const AvatarImage = (props: {
|
||
|
avatarPath?: string;
|
||
4 years ago
|
base64Data?: string;
|
||
4 years ago
|
name?: string; // display name, profileName or pubkey, whatever is set first
|
||
4 years ago
|
imageBroken: boolean;
|
||
|
handleImageError: () => any;
|
||
|
}) => {
|
||
4 years ago
|
const { avatarPath, base64Data, name, imageBroken, handleImageError } = props;
|
||
7 years ago
|
|
||
3 years ago
|
const disableDrag = useDisableDrag();
|
||
4 years ago
|
|
||
4 years ago
|
if ((!avatarPath && !base64Data) || imageBroken) {
|
||
4 years ago
|
return null;
|
||
7 years ago
|
}
|
||
4 years ago
|
const dataToDisplay = base64Data ? `data:image/jpeg;base64,${base64Data}` : avatarPath;
|
||
7 years ago
|
|
||
4 years ago
|
return (
|
||
|
<img
|
||
|
onError={handleImageError}
|
||
3 years ago
|
onDragStart={disableDrag}
|
||
3 years ago
|
alt={window.i18n('contactAvatarAlt', [name || 'avatar'])}
|
||
4 years ago
|
src={dataToDisplay}
|
||
4 years ago
|
/>
|
||
|
);
|
||
|
};
|
||
7 years ago
|
|
||
4 years ago
|
const AvatarInner = (props: Props) => {
|
||
3 years ago
|
const { base64Data, size, pubkey, forcedAvatarPath, forcedName, dataTestId } = props;
|
||
4 years ago
|
const [imageBroken, setImageBroken] = useState(false);
|
||
3 years ago
|
|
||
3 years ago
|
const isClosedGroupAvatar = useIsClosedGroup(pubkey);
|
||
3 years ago
|
|
||
|
const avatarPath = useAvatarPath(pubkey);
|
||
|
const name = useConversationUsername(pubkey);
|
||
|
|
||
4 years ago
|
// contentType is not important
|
||
3 years ago
|
const { urlToLoad } = useEncryptedFileFetch(forcedAvatarPath || avatarPath || '', '', true);
|
||
4 years ago
|
const handleImageError = () => {
|
||
4 years ago
|
window.log.warn(
|
||
|
'Avatar: Image failed to load; failing over to placeholder',
|
||
|
urlToLoad,
|
||
3 years ago
|
forcedAvatarPath || avatarPath
|
||
4 years ago
|
);
|
||
4 years ago
|
setImageBroken(true);
|
||
|
};
|
||
|
|
||
4 years ago
|
const hasImage = (base64Data || urlToLoad) && !imageBroken && !isClosedGroupAvatar;
|
||
4 years ago
|
|
||
|
const isClickable = !!props.onAvatarClick;
|
||
|
return (
|
||
|
<div
|
||
|
className={classNames(
|
||
|
'module-avatar',
|
||
|
`module-avatar--${size}`,
|
||
|
hasImage ? 'module-avatar--with-image' : 'module-avatar--no-image',
|
||
|
isClickable && 'module-avatar-clickable'
|
||
|
)}
|
||
3 years ago
|
onMouseDown={e => {
|
||
|
if (props.onAvatarClick) {
|
||
|
e.stopPropagation();
|
||
|
e.preventDefault();
|
||
|
props.onAvatarClick?.();
|
||
|
}
|
||
4 years ago
|
}}
|
||
|
role="button"
|
||
3 years ago
|
data-testid={dataTestId}
|
||
4 years ago
|
>
|
||
|
{hasImage ? (
|
||
|
<AvatarImage
|
||
|
avatarPath={urlToLoad}
|
||
4 years ago
|
base64Data={base64Data}
|
||
4 years ago
|
imageBroken={imageBroken}
|
||
3 years ago
|
name={forcedName || name}
|
||
4 years ago
|
handleImageError={handleImageError}
|
||
|
/>
|
||
|
) : (
|
||
3 years ago
|
<NoImage {...props} isClosedGroup={isClosedGroupAvatar} />
|
||
4 years ago
|
)}
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
4 years ago
|
|
||
|
export const Avatar = React.memo(AvatarInner, _.isEqual);
|