diff options
Diffstat (limited to 'src/lib/custom-animations/LikeIcon.tsx')
-rw-r--r-- | src/lib/custom-animations/LikeIcon.tsx | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/lib/custom-animations/LikeIcon.tsx b/src/lib/custom-animations/LikeIcon.tsx index 5c736e88d..1bc48d43b 100644 --- a/src/lib/custom-animations/LikeIcon.tsx +++ b/src/lib/custom-animations/LikeIcon.tsx @@ -71,15 +71,15 @@ const circle2Keyframe = new Keyframe({ export function AnimatedLikeIcon({ isLiked, big, - isToggle, + hasBeenToggled, }: { isLiked: boolean big?: boolean - isToggle: boolean + hasBeenToggled: boolean }) { const t = useTheme() const size = big ? 22 : 18 - const shouldAnimate = !useReducedMotion() && isToggle + const shouldAnimate = !useReducedMotion() && hasBeenToggled return ( <View> @@ -95,12 +95,10 @@ export function AnimatedLikeIcon({ width={size} /> )} - {isLiked ? ( + {isLiked && shouldAnimate ? ( <> <Animated.View - entering={ - shouldAnimate ? circle1Keyframe.duration(300) : undefined - } + entering={circle1Keyframe.duration(300)} style={{ position: 'absolute', backgroundColor: s.likeColor.color, @@ -114,9 +112,7 @@ export function AnimatedLikeIcon({ }} /> <Animated.View - entering={ - shouldAnimate ? circle2Keyframe.duration(300) : undefined - } + entering={circle2Keyframe.duration(300)} style={{ position: 'absolute', backgroundColor: t.atoms.bg.backgroundColor, |