mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
62 lines
1.7 KiB
JavaScript
62 lines
1.7 KiB
JavaScript
import { useRef, useEffect } from 'react';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import { isEqual } from 'lodash';
|
|
|
|
import {
|
|
getGasLoadingAnimationIsShowing,
|
|
toggleGasLoadingAnimation,
|
|
} from '../ducks/app/app';
|
|
import { useGasFeeEstimates } from './useGasFeeEstimates';
|
|
|
|
export function useShouldAnimateGasEstimations() {
|
|
const { isGasEstimatesLoading, gasFeeEstimates } = useGasFeeEstimates();
|
|
const dispatch = useDispatch();
|
|
|
|
const isGasLoadingAnimationActive = useSelector(
|
|
getGasLoadingAnimationIsShowing,
|
|
);
|
|
|
|
// Do the animation only when gas prices have changed...
|
|
const lastGasEstimates = useRef(gasFeeEstimates);
|
|
const gasEstimatesChanged = !isEqual(
|
|
lastGasEstimates.current,
|
|
gasFeeEstimates,
|
|
);
|
|
|
|
// ... and only if gas didn't just load
|
|
// Removing this line will cause the initial loading screen to stay empty
|
|
const gasJustLoaded = isEqual(lastGasEstimates.current, {});
|
|
|
|
if (gasEstimatesChanged) {
|
|
lastGasEstimates.current = gasFeeEstimates;
|
|
}
|
|
|
|
const showLoadingAnimation =
|
|
isGasEstimatesLoading || (gasEstimatesChanged && !gasJustLoaded);
|
|
|
|
useEffect(() => {
|
|
if (
|
|
isGasLoadingAnimationActive === false &&
|
|
showLoadingAnimation === true
|
|
) {
|
|
dispatch(toggleGasLoadingAnimation(true));
|
|
}
|
|
}, [dispatch, isGasLoadingAnimationActive, showLoadingAnimation]);
|
|
|
|
useEffect(() => {
|
|
let timer;
|
|
|
|
if (isGasLoadingAnimationActive && !showLoadingAnimation) {
|
|
timer = setTimeout(() => {
|
|
dispatch(toggleGasLoadingAnimation(false));
|
|
}, 2000);
|
|
}
|
|
|
|
return () => {
|
|
if (timer) {
|
|
clearTimeout(timer);
|
|
}
|
|
};
|
|
}, [dispatch, isGasLoadingAnimationActive, showLoadingAnimation]);
|
|
}
|