|
|
|
@ -26,6 +26,7 @@ export type PropsData = {
|
|
|
|
|
|
|
|
|
|
lastUpdated: number;
|
|
|
|
|
unreadCount: number;
|
|
|
|
|
mentionedUs: boolean;
|
|
|
|
|
isSelected: boolean;
|
|
|
|
|
|
|
|
|
|
isTyping: boolean;
|
|
|
|
@ -93,12 +94,17 @@ export class ConversationListItem extends React.PureComponent<Props> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public renderUnread() {
|
|
|
|
|
const { unreadCount } = this.props;
|
|
|
|
|
const { unreadCount, mentionedUs } = this.props;
|
|
|
|
|
|
|
|
|
|
if (unreadCount > 0) {
|
|
|
|
|
const atSymbol = mentionedUs ? <p className="at-symbol">@</p> : null;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="module-conversation-list-item__unread-count">
|
|
|
|
|
{unreadCount}
|
|
|
|
|
<div>
|
|
|
|
|
<p className="module-conversation-list-item__unread-count">
|
|
|
|
|
{unreadCount}
|
|
|
|
|
</p>
|
|
|
|
|
{atSymbol}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
@ -285,6 +291,7 @@ export class ConversationListItem extends React.PureComponent<Props> {
|
|
|
|
|
showFriendRequestIndicator,
|
|
|
|
|
isBlocked,
|
|
|
|
|
style,
|
|
|
|
|
mentionedUs,
|
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
|
|
const triggerId = `${phoneNumber}-ctxmenu-${Date.now()}`;
|
|
|
|
@ -305,6 +312,9 @@ export class ConversationListItem extends React.PureComponent<Props> {
|
|
|
|
|
unreadCount > 0
|
|
|
|
|
? 'module-conversation-list-item--has-unread'
|
|
|
|
|
: null,
|
|
|
|
|
unreadCount > 0 && mentionedUs
|
|
|
|
|
? 'module-conversation-list-item--mentioned-us'
|
|
|
|
|
: null,
|
|
|
|
|
isSelected ? 'module-conversation-list-item--is-selected' : null,
|
|
|
|
|
showFriendRequestIndicator
|
|
|
|
|
? 'module-conversation-list-item--has-friend-request'
|
|
|
|
|