Files
zulip/static/js/message_live_update.js
Armaan Ahluwalia 6d255efe4c app: Prepare JS files for consumption by webpack.
This commit prepares the frontend code to be consumed by webpack.

It is a hack: In theory, modules should be declaring and importing the
modules they depend on and the globals they expose directly.

However, that requires significant per-module work, which we don't
really want to block moving our toolchain to webpack on.

So we expose the modules by setting window.varName = varName; as
needed in the js files.
2018-07-05 10:53:36 +02:00

43 lines
1.1 KiB
JavaScript

var message_live_update = (function () {
var exports = {};
exports.update_stream_name = function (stream_id, new_name) {
_.each([home_msg_list, message_list.narrowed, message_list.all], function (list) {
if (list === undefined) {
return;
}
list.update_stream_name(stream_id, new_name);
});
};
exports.update_user_full_name = function (user_id, full_name) {
_.each([home_msg_list, message_list.narrowed, message_list.all], function (list) {
if (list === undefined) {
return;
}
list.update_user_full_name(user_id, full_name);
});
};
exports.update_avatar = function (user_id, avatar_url) {
var url = avatar_url;
url = people.format_small_avatar_url(url);
_.each([home_msg_list, message_list.narrowed, message_list.all], function (list) {
if (list === undefined) {
return;
}
list.update_user_avatar(user_id, url);
});
};
return exports;
}());
if (typeof module !== 'undefined') {
module.exports = message_live_update;
}
window.message_live_update = message_live_update;