32 lines
709 B
Objective-C
32 lines
709 B
Objective-C
#import "REAJSCallNode.h"
|
|
#import "REANodesManager.h"
|
|
#import "REAModule.h"
|
|
|
|
@implementation REAJSCallNode {
|
|
NSArray<NSNumber *> *_input;
|
|
}
|
|
|
|
- (instancetype)initWithID:(REANodeID)nodeID config:(NSDictionary<NSString *,id> *)config
|
|
{
|
|
if ((self = [super initWithID:nodeID config:config])) {
|
|
_input = config[@"input"];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (id)evaluate
|
|
{
|
|
NSMutableArray *args = [NSMutableArray arrayWithCapacity:_input.count];
|
|
for (NSUInteger i = 0; i < _input.count; i++) {
|
|
args[i] = [[self.nodesManager findNodeByID:_input[i]] value];
|
|
}
|
|
|
|
[self.nodesManager.reanimatedModule
|
|
sendEventWithName:@"onReanimatedCall"
|
|
body:@{@"id": self.nodeID, @"args": args }];
|
|
|
|
return @(0);
|
|
}
|
|
|
|
@end
|