import React, { useEffect, useMemo, useRef, useState } from 'react'; import { Animated } from 'react-native'; import { useDispatch, useSelector } from 'react-redux'; import { IReduxState } from '../../../app/types'; import ColorSchemeRegistry from '../../../base/color-scheme/ColorSchemeRegistry'; import { removeReaction } from '../../actions.any'; import { IReactionEmojiProps, REACTIONS } from '../../constants'; interface IProps extends IReactionEmojiProps { /** * Index of reaction on the queue. * Used to differentiate between first and other animations. */ index: number; } /** * Animated reaction emoji. * * @returns {ReactElement} */ function ReactionEmoji({ reaction, uid, index }: IProps) { const _styles: any = useSelector((state: IReduxState) => ColorSchemeRegistry.get(state, 'Toolbox')); const _height = useSelector((state: IReduxState) => state['features/base/responsive-ui'].clientHeight); const dispatch = useDispatch(); const animationVal = useRef(new Animated.Value(0)).current; const vh = useState(_height / 100)[0]; const randomInt = (min: number, max: number) => Math.floor((Math.random() * (max - min + 1)) + min); const animationIndex = useMemo(() => index % 21, [ index ]); const coordinates = useState({ topX: animationIndex === 0 ? 40 : randomInt(-100, 100), topY: animationIndex === 0 ? -70 : randomInt(-65, -75), bottomX: animationIndex === 0 ? 140 : randomInt(150, 200), bottomY: animationIndex === 0 ? -50 : randomInt(-40, -50) })[0]; useEffect(() => { setTimeout(() => dispatch(removeReaction(uid)), 5000); }, []); useEffect(() => { Animated.timing( animationVal, { toValue: 1, duration: 5000, useNativeDriver: true } ).start(); }, [ animationVal ]); return ( {REACTIONS[reaction].emoji} ); } export default ReactionEmoji;