Extract message_util.js

This commit is contained in:
Steve Howell
2017-03-19 14:43:38 -07:00
committed by Tim Abbott
parent 8d3d70984d
commit fd856d728c
9 changed files with 52 additions and 41 deletions

View File

@@ -168,35 +168,6 @@ exports.add_message_metadata = function (message) {
return message;
};
exports.add_messages = function add_messages(messages, msg_list, opts) {
if (!messages) {
return;
}
opts = _.extend({messages_are_new: false, delay_render: false}, opts);
loading.destroy_indicator($('#page_loading_indicator'));
$('#first_run_message').remove();
msg_list.add_messages(messages, opts);
if (msg_list === home_msg_list && opts.messages_are_new) {
_.each(messages, function (message) {
if (message.local_id === undefined) {
compose.report_as_received(message);
}
});
}
};
// This function could probably benefit from some refactoring
exports.do_unread_count_updates = function do_unread_count_updates(messages) {
unread.process_loaded_messages(messages);
unread_ui.update_unread_counts();
resize.resize_page_components();
};
exports.clear = function clear() {
this.stored_messages = {};
};