session-desktop/ts/components/ContactListItem.tsx

60 lines
1.6 KiB
TypeScript
Raw Normal View History

import React from 'react';
import classNames from 'classnames';
import { Avatar, AvatarSize } from './Avatar';
import { Emojify } from './conversation/Emojify';
interface Props {
phoneNumber: string;
isMe?: boolean;
name?: string;
profileName?: string;
avatarPath?: string;
onClick?: () => void;
}
export class ContactListItem extends React.Component<Props> {
public renderAvatar() {
2020-09-15 07:07:22 +02:00
const { avatarPath, name, phoneNumber, profileName } = this.props;
const userName = name || profileName || phoneNumber;
return (
2021-04-22 10:03:58 +02:00
<Avatar avatarPath={avatarPath} name={userName} size={AvatarSize.S} pubkey={phoneNumber} />
);
}
public render() {
const { name, onClick, isMe, phoneNumber, profileName } = this.props;
const title = name ? name : phoneNumber;
const displayName = isMe ? window.i18n('me') : title;
const profileElement =
!isMe && profileName && !name ? (
<span className="module-contact-list-item__text__profile-name">
2020-11-24 23:14:22 +01:00
~
<Emojify text={profileName} key={`emojify-list-item-${phoneNumber}`} />
</span>
) : null;
return (
<div
role="button"
onClick={onClick}
className={classNames(
'module-contact-list-item',
onClick ? 'module-contact-list-item--with-click-handler' : null
)}
>
{this.renderAvatar()}
<div className="module-contact-list-item__text">
<div className="module-contact-list-item__text__name">
<Emojify text={displayName} /> {profileElement}
</div>
</div>
</div>
);
}
}