mirror of
https://github.com/zulip/zulip.git
synced 2025-10-28 18:43:52 +00:00
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>
62 lines
1.5 KiB
JavaScript
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;
|