tweb/src/components/lazyLoadQueue.ts
morethanwords d1e3827c12 fix mediaviewer
mediaviewer forward
chat contextmenu with rights
support manually attached stickers (not upload)
right sidebar fix blink & preloader
minor fixes

Signed-off-by: morethanwords <thanwords24@gmail.com>
2020-05-27 09:21:16 +03:00

134 lines
3.1 KiB
TypeScript

type LazyLoadElement = {
div: HTMLDivElement,
load: () => Promise<any>,
wasSeen?: boolean
};
export default class LazyLoadQueue {
private lazyLoadMedia: Array<LazyLoadElement> = [];
private loadingMedia = 0;
private tempID = 0;
private lockPromise: Promise<void> = null;
private unlockResolve: () => void = null;
private log = console.log.bind(console, '[LL]:');
private debug = false;
private observer: IntersectionObserver;
constructor(private parallelLimit = 5, withObserver = true) {
if(!withObserver) return;
this.observer = new IntersectionObserver(entries => {
if(this.lockPromise) return;
for(let entry of entries) {
if(entry.isIntersecting) {
let target = entry.target as HTMLElement;
// need for set element first if scrolled
let item = this.lazyLoadMedia.findAndSplice(i => i.div == target);
if(item) {
item.wasSeen = true;
this.lazyLoadMedia.unshift(item);
this.processQueue(item);
}
}
}
});
}
public clear() {
this.tempID--;
this.lazyLoadMedia.length = 0;
this.loadingMedia = 0;
if(this.observer) {
this.observer.disconnect();
}
}
public length() {
return this.lazyLoadMedia.length + this.loadingMedia;
}
public lock() {
if(this.lockPromise) return;
this.lockPromise = new Promise((resolve, reject) => {
this.unlockResolve = resolve;
});
}
public unlock() {
if(!this.unlockResolve) return;
this.lockPromise = null;
this.unlockResolve();
this.unlockResolve = null;
}
public async processQueue(item?: LazyLoadElement) {
if(this.parallelLimit > 0 && this.loadingMedia >= this.parallelLimit) return;
if(item) {
this.lazyLoadMedia.findAndSplice(i => i == item);
} else {
item = this.lazyLoadMedia.findAndSplice(i => i.wasSeen);
}
if(item) {
this.loadingMedia++;
let tempID = this.tempID;
this.debug && this.log('will load media', this.lockPromise, item);
try {
if(this.lockPromise/* && false */) {
let perf = performance.now();
await this.lockPromise;
this.debug && this.log('waited lock:', performance.now() - perf);
}
//await new Promise((resolve, reject) => window.requestAnimationFrame(() => window.requestAnimationFrame(resolve)));
await item.load();
} catch(err) {
console.error('loadMediaQueue error:', err, item);
}
if(tempID == this.tempID) {
this.loadingMedia--;
}
this.debug && this.log('loaded media');
if(this.lazyLoadMedia.length) {
this.processQueue();
}
}
}
public addElement(el: LazyLoadElement) {
if(el.wasSeen) {
this.processQueue(el);
} else {
el.wasSeen = false;
if(this.observer) {
this.observer.observe(el.div);
}
}
}
public push(el: LazyLoadElement) {
this.lazyLoadMedia.push(el);
this.addElement(el);
}
public unshift(el: LazyLoadElement) {
this.lazyLoadMedia.unshift(el);
this.addElement(el);
}
}