TelegramPWA/src/components/common/AnimatedSticker.tsx

241 lines
5.5 KiB
TypeScript

import type { RefObject } from 'react';
import type { FC } from '../../lib/teact/teact';
import React, {
useEffect, useRef, memo, useCallback, useState,
} from '../../lib/teact/teact';
import { fastRaf } from '../../util/schedulers';
import buildClassName from '../../util/buildClassName';
import buildStyle from '../../util/buildStyle';
import useHeavyAnimationCheck from '../../hooks/useHeavyAnimationCheck';
import useBackgroundMode from '../../hooks/useBackgroundMode';
export type OwnProps = {
ref?: RefObject<HTMLDivElement>;
className?: string;
style?: string;
tgsUrl?: string;
play?: boolean | string;
playSegment?: [number, number];
speed?: number;
noLoop?: boolean;
size: number;
quality?: number;
isLowPriority?: boolean;
forceOnHeavyAnimation?: boolean;
color?: [number, number, number];
onClick?: NoneToVoidFunction;
onLoad?: NoneToVoidFunction;
onEnded?: NoneToVoidFunction;
};
type RLottieClass = typeof import('../../lib/rlottie/RLottie').default;
type RLottieInstance = import('../../lib/rlottie/RLottie').default;
let lottiePromise: Promise<RLottieClass>;
let RLottie: RLottieClass;
// Time for the main interface to completely load
const LOTTIE_LOAD_DELAY = 3000;
async function ensureLottie() {
if (!lottiePromise) {
lottiePromise = import('../../lib/rlottie/RLottie') as unknown as Promise<RLottieClass>;
RLottie = (await lottiePromise as any).default;
}
return lottiePromise;
}
setTimeout(ensureLottie, LOTTIE_LOAD_DELAY);
const AnimatedSticker: FC<OwnProps> = ({
ref,
className,
style,
tgsUrl,
play,
playSegment,
speed,
noLoop,
size,
quality,
isLowPriority,
color,
forceOnHeavyAnimation,
onClick,
onLoad,
onEnded,
}) => {
// eslint-disable-next-line no-null/no-null
let containerRef = useRef<HTMLDivElement>(null);
if (ref) {
containerRef = ref;
}
const [animation, setAnimation] = useState<RLottieInstance>();
const wasPlaying = useRef(false);
const isFrozen = useRef(false);
const isFirstRender = useRef(true);
const playRef = useRef();
playRef.current = play;
const playSegmentRef = useRef<[number, number]>();
playSegmentRef.current = playSegment;
useEffect(() => {
if (animation || !tgsUrl) {
return;
}
const exec = () => {
if (!containerRef.current) {
return;
}
const newAnimation = new RLottie(
containerRef.current,
tgsUrl,
{
noLoop,
size,
quality,
isLowPriority,
},
onLoad,
color,
onEnded,
);
if (speed) {
newAnimation.setSpeed(speed);
}
setAnimation(newAnimation);
};
if (RLottie) {
exec();
} else {
ensureLottie().then(() => {
fastRaf(() => {
if (containerRef.current) {
exec();
}
});
});
}
}, [color, animation, tgsUrl, isLowPriority, noLoop, onLoad, quality, size, speed, onEnded]);
useEffect(() => {
if (!animation) return;
animation.setColor(color);
}, [color, animation]);
useEffect(() => {
return () => {
if (animation) {
animation.destroy();
}
};
}, [animation]);
const playAnimation = useCallback((shouldRestart = false) => {
if (animation && (playRef.current || playSegmentRef.current)) {
if (playSegmentRef.current) {
animation.playSegment(playSegmentRef.current);
} else {
animation.play(shouldRestart);
}
}
}, [animation]);
const pauseAnimation = useCallback(() => {
if (!animation) {
return;
}
animation.pause();
}, [animation]);
const freezeAnimation = useCallback(() => {
isFrozen.current = true;
if (!animation) {
return;
}
if (!wasPlaying.current) {
wasPlaying.current = animation.isPlaying();
}
pauseAnimation();
}, [animation, pauseAnimation]);
const unfreezeAnimation = useCallback(() => {
if (wasPlaying.current) {
playAnimation(noLoop);
}
wasPlaying.current = false;
isFrozen.current = false;
}, [noLoop, playAnimation]);
const unfreezeAnimationOnRaf = useCallback(() => {
fastRaf(unfreezeAnimation);
}, [unfreezeAnimation]);
useEffect(() => {
if (!animation) {
return;
}
if (play || playSegment) {
if (isFrozen.current) {
wasPlaying.current = true;
} else {
playAnimation(noLoop);
}
} else {
// eslint-disable-next-line no-lonely-if
if (isFrozen.current) {
wasPlaying.current = false;
} else {
pauseAnimation();
}
}
}, [animation, play, playSegment, noLoop, playAnimation, pauseAnimation]);
useEffect(() => {
if (animation) {
if (isFirstRender.current) {
isFirstRender.current = false;
} else if (tgsUrl) {
animation.changeData(tgsUrl);
playAnimation();
}
}
}, [playAnimation, animation, tgsUrl]);
useHeavyAnimationCheck(freezeAnimation, unfreezeAnimation, forceOnHeavyAnimation);
// Pausing frame may not happen in background
// so we need to make sure it happens right after focusing,
// then we can play again.
useBackgroundMode(freezeAnimation, unfreezeAnimationOnRaf);
return (
<div
ref={containerRef}
className={buildClassName('AnimatedSticker', className)}
style={buildStyle(
size !== undefined && `width: ${size}px; height: ${size}px;`,
onClick && 'cursor: pointer',
style,
)}
onClick={onClick}
/>
);
};
export default memo(AnimatedSticker);