import React from 'react'; import classNames from 'classnames'; 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; avatarPath?: string; lastUpdated: number; unreadCount: number; isSelected: boolean; lastMessage?: { status: 'sending' | 'sent' | 'delivered' | 'read' | 'error'; text: string; }; i18n: Localizer; onClick?: () => void; } function getInitial(name: string): string { return name.trim()[0] || '#'; } export class ConversationListItem extends React.Component { public renderAvatar() { const { avatarPath, color, i18n, name, phoneNumber, profileName, } = this.props; if (!avatarPath) { const initial = getInitial(name || ''); return (
{initial}
); } const title = `${name || phoneNumber}${ !name && profileName ? ` ~${profileName}` : '' }`; return ( {i18n('contactAvatarAlt', ); } public renderHeader() { const { unreadCount, i18n, lastUpdated, name, phoneNumber, profileName, } = this.props; return (
0 ? 'module-conversation-list-item__header__date--has-unread' : null )} >
); } public renderUnread() { const { unreadCount } = this.props; if (unreadCount > 0) { return (
{unreadCount}
); } return null; } public renderMessage() { const { lastMessage, unreadCount, i18n } = this.props; if (!lastMessage) { return null; } return (
{lastMessage.text ? (
0 ? 'module-conversation-list-item__message__text--has-unread' : null )} >
) : null} {lastMessage.status ? (
) : null} {this.renderUnread()}
); } public render() { const { unreadCount, onClick, isSelected } = this.props; return (
0 ? 'module-conversation-list-item--has-unread' : null, isSelected ? 'module-conversation-list-item--is-selected' : null )} > {this.renderAvatar()}
{this.renderHeader()} {this.renderMessage()}
); } }