mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
82dba51f1a
Summary: This diff adds ModuloAnimatedNode on iOS. It separates out code originally submitted in #9048. Test plan (required) Set up an animation with a modulo node, and `useNativeModule: true`. Compare results with `useNativeModule: false`. Closes https://github.com/facebook/react-native/pull/9626 Differential Revision: D3799636 fbshipit-source-id: 594499f11be41bf3ee709249056a3feedeace9eb
24 lines
677 B
Objective-C
24 lines
677 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "RCTModuloAnimatedNode.h"
|
|
|
|
@implementation RCTModuloAnimatedNode
|
|
|
|
- (void)performUpdate
|
|
{
|
|
[super performUpdate];
|
|
NSNumber *inputNode = self.config[@"input"];
|
|
NSNumber *modulus = self.config[@"modulus"];
|
|
RCTValueAnimatedNode *parent = (RCTValueAnimatedNode *)self.parentNodes[inputNode];
|
|
self.value = fmodf(parent.value, modulus.floatValue);
|
|
}
|
|
|
|
@end
|