reactions: Prevent multiple simultaneous requests for reaction update.

Prevents multiple simultaneous requests to the API when adding or
removing reactions. This commit blocks emoji state changes until
the request is executed.

Fixes part of #21213
This commit is contained in:
Daniil Fadeev 2023-02-27 18:59:23 +04:00 committed by Tim Abbott
parent b9dd109e93
commit a80f96dde6
2 changed files with 37 additions and 9 deletions

View File

@ -14,7 +14,9 @@ import * as people from "./people";
import * as spectators from "./spectators";
import {user_settings} from "./user_settings";
export const view = {}; // function namespace
export const view = {
waiting_for_server_request_ids: new Set(),
}; // function namespace
export function get_local_reaction_id(reaction_info) {
return [reaction_info.reaction_type, reaction_info.emoji_code].join(",");
@ -78,6 +80,14 @@ function update_ui_and_send_reaction_ajax(message_id, reaction_info) {
const operation = has_reacted ? "remove" : "add";
const reaction = create_reaction(message_id, reaction_info);
// To avoid duplicate requests to the server, we construct a
// unique request ID combining the message ID and the local ID,
// which identifies just which emoji to use.
const reaction_request_id = [message_id, local_id].join(",");
if (view.waiting_for_server_request_ids.has(reaction_request_id)) {
return;
}
if (operation === "add") {
add_reaction(reaction);
} else {
@ -87,17 +97,17 @@ function update_ui_and_send_reaction_ajax(message_id, reaction_info) {
const args = {
url: "/json/messages/" + message_id + "/reactions",
data: reaction_info,
success() {},
success() {
view.waiting_for_server_request_ids.delete(reaction_request_id);
},
error(xhr) {
view.waiting_for_server_request_ids.delete(reaction_request_id);
const response = channel.xhr_error_message("Error sending reaction", xhr);
// Errors are somewhat common here, due to race conditions
// where the user tries to add/remove the reaction when there is already
// an in-flight request. We eventually want to make this a blueslip
// error, rather than a warning, but we need to implement either
// #4291 or #4295 first.
blueslip.warn(response);
blueslip.error(response);
},
};
view.waiting_for_server_request_ids.add(reaction_request_id);
if (operation === "add") {
channel.post(args);
} else if (operation === "remove") {

View File

@ -308,7 +308,7 @@ test("sending", ({override, override_rewire}) => {
// similarly, we only exercise the failure codepath
// Since this path calls blueslip.warn, we need to handle it.
blueslip.expect("warn", "XHR error message.");
blueslip.expect("error", "XHR error message.");
channel.xhr_error_message = () => "XHR error message.";
args.error();
}
@ -369,6 +369,24 @@ test("sending", ({override, override_rewire}) => {
});
});
test("prevent_simultaneous_requests_updating_reaction", ({override, override_rewire}) => {
const message = {...sample_message};
override(message_store, "get", (message_id) => {
assert.equal(message_id, message.id);
return message;
});
override_rewire(reactions, "add_reaction", () => {});
const stub = make_stub();
channel.post = stub.f;
// Verify that two requests to add the same reaction in a row only
// result in a single request to the server.
reactions.toggle_emoji_reaction(message.id, "cow");
reactions.toggle_emoji_reaction(message.id, "cow");
assert.equal(stub.num_calls, 1);
});
function stub_reactions(message_id) {
const $message_row = $.create("message-row-stub");
const $message_reactions = $.create("reactions-stub");