forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate DivisionAnimatedNode, Java->Kotlin (facebook#45762)
Summary: Pull Request resolved: facebook#45762 # Changelog: [Internal] - As in the title. Reviewed By: cortinico Differential Revision: D60341635
- Loading branch information
1 parent
48674a4
commit d9caab6
Showing
2 changed files
with
55 additions
and
64 deletions.
There are no files selected for viewing
64 changes: 0 additions & 64 deletions
64
...t-native/ReactAndroid/src/main/java/com/facebook/react/animated/DivisionAnimatedNode.java
This file was deleted.
Oops, something went wrong.
55 changes: 55 additions & 0 deletions
55
...act-native/ReactAndroid/src/main/java/com/facebook/react/animated/DivisionAnimatedNode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
package com.facebook.react.animated | ||
|
||
import com.facebook.react.bridge.JSApplicationCausedNativeException | ||
import com.facebook.react.bridge.ReadableMap | ||
|
||
/** | ||
* Animated node which takes two or more value node as an input and outputs an in-order division of | ||
* their values. | ||
*/ | ||
internal class DivisionAnimatedNode( | ||
config: ReadableMap, | ||
private val nativeAnimatedNodesManager: NativeAnimatedNodesManager | ||
) : ValueAnimatedNode() { | ||
private val inputNodes: IntArray | ||
|
||
init { | ||
val input = config.getArray("input") | ||
inputNodes = | ||
if (input == null) { | ||
IntArray(0) | ||
} else { | ||
IntArray(input.size()) { i -> input.getInt(i) } | ||
} | ||
} | ||
|
||
override fun update() { | ||
inputNodes.forEachIndexed { i, inputNode -> | ||
val animatedNode = nativeAnimatedNodesManager.getNodeById(inputNode) | ||
if (animatedNode != null && animatedNode is ValueAnimatedNode) { | ||
val v = animatedNode.nodeValue | ||
if (i == 0) { | ||
nodeValue = v | ||
} else if (v == 0.0) { | ||
throw JSApplicationCausedNativeException( | ||
"Detected a division by zero in Animated.divide node with Animated ID $tag") | ||
} else { | ||
nodeValue /= v | ||
} | ||
} else { | ||
throw JSApplicationCausedNativeException( | ||
"Illegal node ID set as an input for Animated.divide node with Animated ID $tag") | ||
} | ||
} | ||
} | ||
|
||
override fun prettyPrint(): String = | ||
"DivisionAnimatedNode[$tag]: input nodes: $inputNodes - super: ${super.prettyPrint()}" | ||
} |