Files
zulip/static/js/muting.js
Anders Kaseorg 28f3dfa284 js: Automatically convert var to let and const in most files.
This commit was originally automatically generated using `tools/lint
--only=eslint --fix`.  It was then modified by tabbott to contain only
changes to a set of files that are unlikely to result in significant
merge conflicts with any open pull request, excluding about 20 files.
His plan is to merge the remaining changes with more precise care,
potentially involving merging parts of conflicting pull requests
before running the `eslint --fix` operation.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2019-11-03 12:42:39 -08:00

62 lines
1.5 KiB
JavaScript

const Dict = require('./dict').Dict;
let muted_topics = new Dict();
exports.add_muted_topic = function (stream_id, topic) {
let sub_dict = muted_topics.get(stream_id);
if (!sub_dict) {
sub_dict = new Dict({fold_case: true});
muted_topics.set(stream_id, sub_dict);
}
sub_dict.set(topic, true);
};
exports.remove_muted_topic = function (stream_id, topic) {
const sub_dict = muted_topics.get(stream_id);
if (sub_dict) {
sub_dict.del(topic);
}
};
exports.is_topic_muted = function (stream_id, topic) {
if (stream_id === undefined) {
return false;
}
const sub_dict = muted_topics.get(stream_id);
return sub_dict && sub_dict.get(topic);
};
exports.get_muted_topics = function () {
const topics = [];
muted_topics.each(function (sub_dict, stream_id) {
_.each(sub_dict.keys(), function (topic) {
topics.push([stream_id, topic]);
});
});
return topics;
};
exports.set_muted_topics = function (tuples) {
muted_topics = new Dict();
_.each(tuples, function (tuple) {
const stream_name = tuple[0];
const topic = tuple[1];
const stream_id = stream_data.get_stream_id(stream_name);
if (!stream_id) {
blueslip.warn('Unknown stream in set_muted_topics: ' + stream_name);
return;
}
exports.add_muted_topic(stream_id, topic);
});
};
exports.initialize = function () {
exports.set_muted_topics(page_params.muted_topics);
};
window.muting = exports;