8f3e3b7aaf
And two initials.
179 lines
4.2 KiB
TypeScript
179 lines
4.2 KiB
TypeScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import { Avatar } from './Avatar';
|
|
import { MessageBody } from './conversation/MessageBody';
|
|
import { Timestamp } from './conversation/Timestamp';
|
|
import { ContactName } from './conversation/ContactName';
|
|
import { Localizer } from '../types/Util';
|
|
|
|
interface Props {
|
|
phoneNumber: string;
|
|
profileName?: string;
|
|
name?: string;
|
|
color?: string;
|
|
conversationType: 'group' | 'direct';
|
|
avatarPath?: string;
|
|
|
|
lastUpdated: number;
|
|
unreadCount: number;
|
|
isSelected: boolean;
|
|
|
|
lastMessage?: {
|
|
status: 'sending' | 'sent' | 'delivered' | 'read' | 'error';
|
|
text: string;
|
|
};
|
|
|
|
i18n: Localizer;
|
|
onClick?: () => void;
|
|
}
|
|
|
|
export class ConversationListItem extends React.Component<Props> {
|
|
public renderAvatar() {
|
|
const {
|
|
avatarPath,
|
|
color,
|
|
conversationType,
|
|
i18n,
|
|
name,
|
|
phoneNumber,
|
|
profileName,
|
|
} = this.props;
|
|
|
|
return (
|
|
<div className="module-conversation-list-item__avatar-container">
|
|
<Avatar
|
|
avatarPath={avatarPath}
|
|
color={color}
|
|
conversationType={conversationType}
|
|
i18n={i18n}
|
|
name={name}
|
|
phoneNumber={phoneNumber}
|
|
profileName={profileName}
|
|
size={48}
|
|
/>
|
|
{this.renderUnread()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
public renderUnread() {
|
|
const { unreadCount } = this.props;
|
|
|
|
if (unreadCount > 0) {
|
|
return (
|
|
<div className="module-conversation-list-item__unread-count">
|
|
{unreadCount}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public renderHeader() {
|
|
const {
|
|
unreadCount,
|
|
i18n,
|
|
lastUpdated,
|
|
name,
|
|
phoneNumber,
|
|
profileName,
|
|
} = this.props;
|
|
|
|
return (
|
|
<div className="module-conversation-list-item__header">
|
|
<div
|
|
className={classNames(
|
|
'module-conversation-list-item__header__name',
|
|
unreadCount > 0
|
|
? 'module-conversation-list-item__header__name--with-unread'
|
|
: null
|
|
)}
|
|
>
|
|
<ContactName
|
|
phoneNumber={phoneNumber}
|
|
name={name}
|
|
profileName={profileName}
|
|
i18n={i18n}
|
|
/>
|
|
</div>
|
|
<div
|
|
className={classNames(
|
|
'module-conversation-list-item__header__date',
|
|
unreadCount > 0
|
|
? 'module-conversation-list-item__header__date--has-unread'
|
|
: null
|
|
)}
|
|
>
|
|
<Timestamp
|
|
timestamp={lastUpdated}
|
|
extended={false}
|
|
module="module-conversation-list-item__header__timestamp"
|
|
i18n={i18n}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
public renderMessage() {
|
|
const { lastMessage, unreadCount, i18n } = this.props;
|
|
|
|
if (!lastMessage) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="module-conversation-list-item__message">
|
|
<div
|
|
className={classNames(
|
|
'module-conversation-list-item__message__text',
|
|
unreadCount > 0
|
|
? 'module-conversation-list-item__message__text--has-unread'
|
|
: null
|
|
)}
|
|
>
|
|
<MessageBody
|
|
text={lastMessage.text || ''}
|
|
disableJumbomoji={true}
|
|
disableLinks={true}
|
|
i18n={i18n}
|
|
/>
|
|
</div>
|
|
{lastMessage.status ? (
|
|
<div
|
|
className={classNames(
|
|
'module-conversation-list-item__message__status-icon',
|
|
`module-conversation-list-item__message__status-icon--${
|
|
lastMessage.status
|
|
}`
|
|
)}
|
|
/>
|
|
) : null}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
public render() {
|
|
const { unreadCount, onClick, isSelected } = this.props;
|
|
|
|
return (
|
|
<div
|
|
role="button"
|
|
onClick={onClick}
|
|
className={classNames(
|
|
'module-conversation-list-item',
|
|
unreadCount > 0 ? 'module-conversation-list-item--has-unread' : null,
|
|
isSelected ? 'module-conversation-list-item--is-selected' : null
|
|
)}
|
|
>
|
|
{this.renderAvatar()}
|
|
<div className="module-conversation-list-item__content">
|
|
{this.renderHeader()}
|
|
{this.renderMessage()}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|