Telegram Web K with changes to work inside I2P https://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

156 lines
4.6 KiB

4 years ago
import { isElementInViewport, isInDOM } from "./utils";
4 years ago
import LottiePlayer, { AnimationConfigWithPath, AnimationConfigWithData, AnimationItem } from "lottie-web/build/player/lottie.d";
4 years ago
class LottieLoader {
4 years ago
private lottie: /* any */ typeof LottiePlayer = null;
4 years ago
private animations: {
[group: string]: {
4 years ago
animation: /* any */AnimationItem,
4 years ago
container: HTMLDivElement,
paused: boolean,
autoplay: boolean,
canvas: boolean
4 years ago
}[]
} = {};
private debug = false;
4 years ago
public loaded: Promise<void>;
private lastTimeLoad = 0;
private waitingTimeouts = 0;
public loadLottie() {
if(this.loaded) return this.loaded;
this.loaded = new Promise((resolve, reject) => {
(window as any).lottieLoaded = () => {
console.log('lottie loaded');
this.lottie = (window as any).lottie;
resolve();
};
let sc = document.createElement('script');
sc.src = 'npm.lottie-web.chunk.js';
sc.async = true;
sc.onload = (window as any).lottieLoaded;
document.body.appendChild(sc);
});
}
4 years ago
public checkAnimations(blurred?: boolean, group?: string, destroy = false) {
4 years ago
let groups = group ? [group] : Object.keys(this.animations);
if(group && !this.animations[group]) {
console.warn('no animation group:', group);
this.animations[group] = [];
//return;
}
for(let group of groups) {
let animations = this.animations[group];
let length = animations.length;
for(let i = length - 1; i >= 0; --i) {
let {animation, container, paused, autoplay, canvas} = animations[i];
4 years ago
if(destroy && !isInDOM(container)) {
this.debug && console.log('destroy animation');
animation.destroy();
animations.splice(i, 1);
continue;
}
4 years ago
if(canvas) {
let c = container.firstElementChild as HTMLCanvasElement;
4 years ago
if(!c.height && !c.width && isElementInViewport(container)) {
//console.log('lottie need resize');
animation.resize();
}
}
4 years ago
if(!autoplay) continue;
4 years ago
if(blurred || !isElementInViewport(container)) {
4 years ago
if(!paused) {
this.debug && console.log('pause animation', isElementInViewport(container), container);
animation.pause();
animations[i].paused = true;
}
} else if(paused) {
this.debug && console.log('play animation', container);
animation.play();
animations[i].paused = false;
}
}
}
}
public async loadAnimation(params: /* any */AnimationConfigWithPath | AnimationConfigWithData, group = '') {
//params.autoplay = false;
params.renderer = 'canvas';
4 years ago
params.rendererSettings = {
4 years ago
//context: context, // the canvas context
4 years ago
//preserveAspectRatio: 'xMinYMin slice', // Supports the same options as the svg element's preserveAspectRatio property
clearCanvas: true,
progressiveLoad: true, // Boolean, only svg renderer, loads dom elements when needed. Might speed up initialization for large number of elements.
hideOnTransparent: true, //Boolean, only svg renderer, hides elements when opacity reaches 0 (defaults to true)
};
if(!this.lottie) {
4 years ago
if(!this.loaded) this.loadLottie();
await this.loaded;
this.lottie.setQuality('low');
//this.lottie.setQuality(10);
}
let time = Date.now();
let diff = time - this.lastTimeLoad;
let delay = 150;
if(diff < delay) {
delay *= ++this.waitingTimeouts;
console.log('lottieloader delay:', delay);
//await new Promise((resolve) => setTimeout(resolve, delay));
this.waitingTimeouts--;
4 years ago
}
let animation = this.lottie.loadAnimation(params);
4 years ago
this.lastTimeLoad = Date.now();
4 years ago
if(!this.animations[group]) this.animations[group] = [];
this.animations[group].push({
animation,
container: params.container as HTMLDivElement,
paused: !params.autoplay,
autoplay: params.autoplay,
canvas: params.renderer == 'canvas'
4 years ago
});
if(params.autoplay) {
this.checkAnimations();
}
4 years ago
4 years ago
return animation;
}
public getAnimation(el: HTMLElement, group = '') {
let groups = group ? [group] : Object.keys(this.animations);
//console.log('getAnimation', groups, this.animations);
4 years ago
for(let group of groups) {
let animations = this.animations[group];
4 years ago
let animation = animations.find(a => a.container === el);
if(animation) return animation.animation;
}
return null;
}
}
const lottieLoader = new LottieLoader();
4 years ago
//(window as any).LottieLoader = lottieLoader;
4 years ago
export default lottieLoader;