2022-12-08 07:43:48 +00:00
|
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import type { ConversationAttributesType } from '../model-types';
|
|
|
|
import type { RecipientsByConversation } from '../state/ducks/stories';
|
|
|
|
|
|
|
|
import { getConversationMembers } from './getConversationMembers';
|
|
|
|
import { isNotNil } from './isNotNil';
|
|
|
|
|
|
|
|
export function getRecipientsByConversation(
|
|
|
|
conversations: Array<ConversationAttributesType>
|
|
|
|
): RecipientsByConversation {
|
|
|
|
const recipientsByConversation: RecipientsByConversation = {};
|
|
|
|
|
|
|
|
conversations.forEach(attributes => {
|
|
|
|
recipientsByConversation[attributes.id] = {
|
2023-08-10 16:43:33 +00:00
|
|
|
serviceIds: getConversationMembers(attributes)
|
2023-08-16 20:54:39 +00:00
|
|
|
.map(member => member.serviceId)
|
2022-12-08 07:43:48 +00:00
|
|
|
.filter(isNotNil),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
return recipientsByConversation;
|
|
|
|
}
|