mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const FoldDict = require('./fold_dict').FoldDict;
 | 
						|
 | 
						|
const muted_topics = new Map();
 | 
						|
 | 
						|
exports.add_muted_topic = function (stream_id, topic) {
 | 
						|
    let sub_dict = muted_topics.get(stream_id);
 | 
						|
    if (!sub_dict) {
 | 
						|
        sub_dict = new FoldDict();
 | 
						|
        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.delete(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 = [];
 | 
						|
    for (const [stream_id, sub_dict] of muted_topics) {
 | 
						|
        for (const topic of sub_dict.keys()) {
 | 
						|
            topics.push([stream_id, topic]);
 | 
						|
        }
 | 
						|
    }
 | 
						|
    return topics;
 | 
						|
};
 | 
						|
 | 
						|
exports.set_muted_topics = function (tuples) {
 | 
						|
    muted_topics.clear();
 | 
						|
 | 
						|
    for (const tuple of tuples) {
 | 
						|
        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);
 | 
						|
            continue;
 | 
						|
        }
 | 
						|
 | 
						|
        exports.add_muted_topic(stream_id, topic);
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
exports.initialize = function () {
 | 
						|
    exports.set_muted_topics(page_params.muted_topics);
 | 
						|
};
 | 
						|
 | 
						|
window.muting = exports;
 |