|
|
|
@ -129,7 +129,11 @@ export const _getLeftPaneLists = (
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (conversation.hasReceivedFriendRequest) {
|
|
|
|
|
allReceivedFriendsRequest.push(conversation);
|
|
|
|
|
// Friend requests should always appear as coming from primary
|
|
|
|
|
const primaryConversation = conversations.find(c => c.id === conversation.primaryDevice) || conversation;
|
|
|
|
|
primaryConversation.hasReceivedFriendRequest = conversation.hasReceivedFriendRequest;
|
|
|
|
|
primaryConversation.isPendingFriendRequest = conversation.isPendingFriendRequest;
|
|
|
|
|
allReceivedFriendsRequest.push(primaryConversation);
|
|
|
|
|
} else if (
|
|
|
|
|
unreadCount < 9 &&
|
|
|
|
|
conversation.isFriend &&
|
|
|
|
@ -160,28 +164,28 @@ export const _getLeftPaneLists = (
|
|
|
|
|
group: Array<ConversationType | ConversationListItemPropsType>
|
|
|
|
|
): T => {
|
|
|
|
|
const secondariesToRemove: Array<string> = [];
|
|
|
|
|
|
|
|
|
|
group.forEach(device => {
|
|
|
|
|
if (!device.isSecondary) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const devicePrimary = group.find(c => c.id === device.primaryDevice);
|
|
|
|
|
|
|
|
|
|
// Remove secondary where primary already exists in group
|
|
|
|
|
if (group.some(c => c === devicePrimary)) {
|
|
|
|
|
secondariesToRemove.push(device.id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// tslint:disable-next-line: no-unnecessary-local-variable
|
|
|
|
|
const filteredGroup = group.filter(
|
|
|
|
|
const filteredGroup = [...new Set(group.filter(
|
|
|
|
|
c => !secondariesToRemove.find(s => s === c.id)
|
|
|
|
|
);
|
|
|
|
|
))];
|
|
|
|
|
|
|
|
|
|
return filteredGroup as T;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const friends: Array<ConversationType> = filterToPrimary(allFriends);
|
|
|
|
|
const receivedFriendsRequest: Array<
|
|
|
|
|
ConversationListItemPropsType
|
|
|
|
@ -200,7 +204,6 @@ export const _getLeftPaneLists = (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
conversations,
|
|
|
|
|
archivedConversations,
|
|
|
|
|