mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Tweaked by tabbott to bump PROVISION_VERSION. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			26 lines
		
	
	
		
			736 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			736 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const _ = require("lodash");
 | 
						|
 | 
						|
const huddle_timestamps = new Map();
 | 
						|
 | 
						|
exports.process_loaded_messages = function (messages) {
 | 
						|
    for (const message of messages) {
 | 
						|
        const huddle_string = people.huddle_string(message);
 | 
						|
 | 
						|
        if (huddle_string) {
 | 
						|
            const old_timestamp = huddle_timestamps.get(huddle_string);
 | 
						|
 | 
						|
            if (!old_timestamp || old_timestamp < message.timestamp) {
 | 
						|
                huddle_timestamps.set(huddle_string, message.timestamp);
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
exports.get_huddles = function () {
 | 
						|
    let huddles = Array.from(huddle_timestamps.keys());
 | 
						|
    huddles = _.sortBy(huddles, (huddle) => huddle_timestamps.get(huddle));
 | 
						|
    return huddles.reverse();
 | 
						|
};
 | 
						|
 | 
						|
window.huddle_data = exports;
 |