mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3b31e69e28
Summary: Changelog: [General] [Fixed] - License header cleanup Reviewed By: yungsters Differential Revision: D17952694 fbshipit-source-id: 17c87de7ebb271fa2ac8d00af72a4d1addef8bd0
50 lines
1.5 KiB
Java
50 lines
1.5 KiB
Java
/*
|
|
* Copyright (c) Facebook, Inc. and its 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;
|
|
|
|
/*package*/ class DiffClampAnimatedNode extends ValueAnimatedNode {
|
|
private final NativeAnimatedNodesManager mNativeAnimatedNodesManager;
|
|
private final int mInputNodeTag;
|
|
private final double mMin;
|
|
private final double mMax;
|
|
|
|
private double mLastValue;
|
|
|
|
public DiffClampAnimatedNode(
|
|
ReadableMap config, NativeAnimatedNodesManager nativeAnimatedNodesManager) {
|
|
mNativeAnimatedNodesManager = nativeAnimatedNodesManager;
|
|
mInputNodeTag = config.getInt("input");
|
|
mMin = config.getDouble("min");
|
|
mMax = config.getDouble("max");
|
|
|
|
mValue = mLastValue = 0;
|
|
}
|
|
|
|
@Override
|
|
public void update() {
|
|
double value = getInputNodeValue();
|
|
|
|
double diff = value - mLastValue;
|
|
mLastValue = value;
|
|
mValue = Math.min(Math.max(mValue + diff, mMin), mMax);
|
|
}
|
|
|
|
private double getInputNodeValue() {
|
|
AnimatedNode animatedNode = mNativeAnimatedNodesManager.getNodeById(mInputNodeTag);
|
|
if (animatedNode == null || !(animatedNode instanceof ValueAnimatedNode)) {
|
|
throw new JSApplicationCausedNativeException(
|
|
"Illegal node ID set as an input for " + "Animated.DiffClamp node");
|
|
}
|
|
|
|
return ((ValueAnimatedNode) animatedNode).getValue();
|
|
}
|
|
}
|