mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This is just a code reorganization to avoid making it difficult to find things as we migrate more file to TypeScript.
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var Dict = require('./dict').Dict;
 | 
						|
 | 
						|
var muting = (function () {
 | 
						|
 | 
						|
var exports = {};
 | 
						|
 | 
						|
var muted_topics = new Dict();
 | 
						|
 | 
						|
exports.add_muted_topic = function (stream_id, topic) {
 | 
						|
    var 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) {
 | 
						|
    var 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;
 | 
						|
    }
 | 
						|
    var sub_dict = muted_topics.get(stream_id);
 | 
						|
    return sub_dict && sub_dict.get(topic);
 | 
						|
};
 | 
						|
 | 
						|
exports.get_muted_topics = function () {
 | 
						|
    var 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) {
 | 
						|
        var stream_name = tuple[0];
 | 
						|
        var topic = tuple[1];
 | 
						|
 | 
						|
        var 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);
 | 
						|
};
 | 
						|
 | 
						|
return exports;
 | 
						|
}());
 | 
						|
if (typeof module !== 'undefined') {
 | 
						|
    module.exports = muting;
 | 
						|
}
 | 
						|
window.muting = muting;
 |