Fix blank gif avatars #6060

Merged
infinite-persistence merged 1 commit from ip/blank-gif-avatar into master 2021-05-14 17:00:08 +02:00
2 changed files with 12 additions and 5 deletions

View file

@ -10,11 +10,13 @@ const FreezeframeWrapper = (props) => {
// eslint-disable-next-line
const { src, className, children } = props;
useEffect(() => {
freezeframe.current = new Freezeframe(imgRef.current);
}, []);
const srcLoaded = useLazyLoading(imgRef);
useLazyLoading(imgRef);
useEffect(() => {
if (srcLoaded) {
freezeframe.current = new Freezeframe(imgRef.current);
}
}, [srcLoaded]);
return (
<div className={classnames(className, 'freezeframe-wrapper')}>

View file

@ -1,6 +1,6 @@
// @flow
import type { ElementRef } from 'react';
import { useEffect } from 'react';
import React, { useEffect } from 'react';
/**
* Helper React hook for lazy loading images
@ -13,6 +13,8 @@ export default function useLazyLoading(
threshold: number = 0.25,
deps: Array<any> = []
) {
const [srcLoaded, setSrcLoaded] = React.useState(false);
useEffect(() => {
if (!elementRef.current) {
return;
@ -30,6 +32,7 @@ export default function useLazyLoading(
if (target.dataset.src) {
// $FlowFixMe
target.src = target.dataset.src;
setSrcLoaded(true);
return;
}
@ -49,4 +52,6 @@ export default function useLazyLoading(
lazyLoadingObserver.observe(elementRef.current);
}, deps);
return srcLoaded;
}