people: Add function get participants from user_ids_string.

This implements the TODO in recent_senders.
This commit is contained in:
Aman Agrawal 2023-02-24 20:43:42 +00:00 committed by Tim Abbott
parent e6f3ffb946
commit b0a468907b
3 changed files with 16 additions and 16 deletions

View File

@ -232,6 +232,19 @@ export function user_ids_string_to_ids_array(user_ids_string) {
return ids;
}
export function get_participants_from_user_ids_string(user_ids_string) {
let user_ids = user_ids_string_to_ids_array(user_ids_string);
// Convert to set to ensure there are no duplicate ids.
user_ids = new Set(user_ids);
// For group PMs or 1:1 private messages, the user_ids_string
// contains just the other user, so we need to add ourselves if not
// already present. For PM to self, the current user is already present,
// in user_ids_string, so we don't need to add it which is take care of
// by user_ids being a `Set`.
user_ids.add(my_user_id);
return user_ids;
}
export function emails_strings_to_user_ids_array(emails_string) {
const user_ids_string = emails_strings_to_user_ids_string(emails_string);
if (user_ids_string === undefined) {

View File

@ -225,24 +225,13 @@ export function process_private_message({to_user_ids, sender_id, id}) {
}
export function get_pm_recent_senders(user_ids_string) {
const user_ids = user_ids_string.split(",").map((id) => Number.parseInt(id, 10));
const user_ids = [...people.get_participants_from_user_ids_string(user_ids_string)];
const sender_dict = pm_senders.get(user_ids_string);
const pm_senders_info = {participants: [], non_participants: []};
if (!sender_dict) {
return pm_senders_info;
}
if (!(user_ids.length === 1 && user_ids[0] === people.my_current_user_id())) {
// For group PMs or 1:1 private messages, the user_ids_string
// contains just the other user, so we need to add ourselves if not
// already present. For PM to self, the current user is already present,
// in user_ids_string, so we don't need to add it.
//
// TODO: Replace this logic with a people.js common function for parsing
// user_ids_string and returning the set of user_ids, self included.
user_ids.push(people.my_current_user_id());
}
function compare_pm_user_ids_by_recency(user_id1, user_id2) {
const max_id1 = sender_dict.get(user_id1)?.max_id() || -1;
const max_id2 = sender_dict.get(user_id2)?.max_id() || -1;

View File

@ -26,10 +26,8 @@ function make_stream_message({stream_id, topic, sender_id}) {
mock_esm("../src/message_store", {
get: (message_id) => messages.get(message_id),
});
mock_esm("../src/people", {
my_current_user_id: () => 1,
});
const people = zrequire("people");
people.initialize_current_user(1);
const rs = zrequire("recent_senders");
zrequire("message_util.js");