mirror of https://github.com/zulip/zulip.git
45 lines
894 B
JavaScript
45 lines
894 B
JavaScript
exports.ids = new Set();
|
|
|
|
exports.initialize = function () {
|
|
exports.ids.clear();
|
|
_.each(page_params.starred_messages, function (id) {
|
|
exports.ids.add(id);
|
|
});
|
|
exports.rerender_ui();
|
|
};
|
|
|
|
exports.add = function (ids) {
|
|
_.each(ids, function (id) {
|
|
exports.ids.add(id);
|
|
});
|
|
exports.rerender_ui();
|
|
};
|
|
|
|
exports.remove = function (ids) {
|
|
_.each(ids, function (id) {
|
|
exports.ids.delete(id);
|
|
});
|
|
exports.rerender_ui();
|
|
};
|
|
|
|
exports.count = function () {
|
|
return exports.ids.size;
|
|
};
|
|
|
|
exports.get_starred_msg_ids = function () {
|
|
return [...exports.ids];
|
|
};
|
|
|
|
exports.rerender_ui = function () {
|
|
let count = exports.count();
|
|
|
|
if (!page_params.starred_message_counts) {
|
|
// This essentially hides the count
|
|
count = 0;
|
|
}
|
|
|
|
top_left_corner.update_starred_count(count);
|
|
};
|
|
|
|
window.starred_messages = exports;
|