mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Like the other similar commits, we were doing the same work in all code paths, just with a much more error-prone approach. We can also now remove the now-unused finish_initial_narrow function.
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var FetchStatus = function () {
 | 
						|
 | 
						|
    var self = {};
 | 
						|
 | 
						|
    var loading_older = false;
 | 
						|
    var loading_newer = false;
 | 
						|
    var found_oldest = false;
 | 
						|
    var found_newest = false;
 | 
						|
    var history_limited = false;
 | 
						|
 | 
						|
    self.start_older_batch = function () {
 | 
						|
        loading_older = true;
 | 
						|
    };
 | 
						|
 | 
						|
    self.finish_older_batch = function (opts) {
 | 
						|
        loading_older = false;
 | 
						|
        found_oldest = opts.found_oldest;
 | 
						|
        history_limited = opts.history_limited;
 | 
						|
    };
 | 
						|
 | 
						|
    self.can_load_older_messages = function () {
 | 
						|
        return !loading_older && !found_oldest;
 | 
						|
    };
 | 
						|
 | 
						|
    self.history_limited = function () {
 | 
						|
        return history_limited;
 | 
						|
    };
 | 
						|
 | 
						|
    self.start_newer_batch = function () {
 | 
						|
        loading_newer = true;
 | 
						|
    };
 | 
						|
 | 
						|
    self.finish_newer_batch = function (opts) {
 | 
						|
        loading_newer = false;
 | 
						|
        found_newest = opts.found_newest;
 | 
						|
    };
 | 
						|
 | 
						|
    self.can_load_newer_messages = function () {
 | 
						|
        return !loading_newer && !found_newest;
 | 
						|
    };
 | 
						|
 | 
						|
    self.has_found_newest = function () {
 | 
						|
        return found_newest;
 | 
						|
    };
 | 
						|
 | 
						|
    return self;
 | 
						|
 | 
						|
};
 | 
						|
if (typeof module !== 'undefined') {
 | 
						|
    module.exports = FetchStatus;
 | 
						|
}
 | 
						|
window.FetchStatus = FetchStatus;
 |