Merge pull request #549 from msgmaxim/mentions5

Highlight conversations with unread mentions of the user
pull/556/head
Maxim Shishmarev 6 years ago committed by GitHub
commit e26f764fca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -466,6 +466,7 @@
timestamp: this.get('timestamp'),
title: this.getTitle(),
unreadCount: this.get('unreadCount') || 0,
mentionedUs: this.get('mentionedUs') || false,
showFriendRequestIndicator: this.isPendingFriendRequest(),
isBlocked: this.isBlocked(),
@ -2007,6 +2008,21 @@
const unreadCount = unreadMessages.length - read.length;
this.set({ unreadCount });
const mentionRead = (() => {
const stillUnread = unreadMessages.filter(
m => m.get('received_at') > newestUnreadDate
);
const ourNumber = textsecure.storage.user.getNumber();
return !stillUnread.some(
m => m.propsForMessage.text.indexOf(`@${ourNumber}`) !== -1
);
})();
if (mentionRead) {
this.set({ mentionedUs: false });
}
await window.Signal.Data.updateConversation(this.id, this.attributes, {
Conversation: Whisper.Conversation,
});

@ -1969,6 +1969,12 @@
c.onReadMessage(message);
}
} else {
const ourNumber = textsecure.storage.user.getNumber();
if (message.attributes.body.indexOf(`@${ourNumber}`) !== -1) {
conversation.set({ mentionedUs: true });
}
conversation.set({
unreadCount: conversation.get('unreadCount') + 1,
isArchived: false,

@ -314,10 +314,11 @@
this.selectMember = this.selectMember.bind(this);
const updateMemberList = async () => {
const maxToFetch = 1000;
const allMessages = await window.Signal.Data.getMessagesByConversation(
this.model.id,
{
limit: Number.MAX_SAFE_INTEGER,
limit: maxToFetch,
MessageCollection: Whisper.MessageCollection,
}
);

@ -67,3 +67,32 @@
}
}
}
.module-conversation-list-item--mentioned-us {
border-left: 4px solid #ffb000 !important;
}
.at-symbol {
background-color: #ffb000;
color: $color-black;
text-align: center;
padding-top: 1px;
padding-left: 3px;
padding-right: 3px;
position: absolute;
right: -6px;
top: 12px;
font-weight: 300;
font-size: 11px;
letter-spacing: 0.25px;
height: 16px;
min-width: 16px;
border-radius: 8px;
box-shadow: 0px 0px 0px 1px $color-dark-85;
}

@ -1895,7 +1895,7 @@
position: absolute;
right: -6px;
top: 6px;
top: -6px;
font-weight: 300;
font-size: 11px;

@ -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'

@ -49,6 +49,7 @@ export type ConversationType = {
isClosable?: boolean;
lastUpdated: number;
unreadCount: number;
mentionedUs: boolean;
isSelected: boolean;
isTyping: boolean;
isFriend?: boolean;

@ -24,6 +24,7 @@ describe('state/selectors/conversations', () => {
isMe: false,
lastUpdated: Date.now(),
unreadCount: 1,
mentionedUs: false,
isSelected: false,
isTyping: false,
},
@ -39,6 +40,7 @@ describe('state/selectors/conversations', () => {
isMe: false,
lastUpdated: Date.now(),
unreadCount: 1,
mentionedUs: false,
isSelected: false,
isTyping: false,
},
@ -54,6 +56,7 @@ describe('state/selectors/conversations', () => {
isMe: false,
lastUpdated: Date.now(),
unreadCount: 1,
mentionedUs: false,
isSelected: false,
isTyping: false,
},
@ -69,6 +72,7 @@ describe('state/selectors/conversations', () => {
isMe: false,
lastUpdated: Date.now(),
unreadCount: 1,
mentionedUs: false,
isSelected: false,
isTyping: false,
},
@ -84,6 +88,7 @@ describe('state/selectors/conversations', () => {
isMe: false,
lastUpdated: Date.now(),
unreadCount: 1,
mentionedUs: false,
isSelected: false,
isTyping: false,
},

Loading…
Cancel
Save