2015-02-20 04:10:52 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#import "RCTEventDispatcher.h"
|
|
|
|
|
|
|
|
#import "RCTAssert.h"
|
|
|
|
#import "RCTBridge.h"
|
|
|
|
|
|
|
|
@implementation RCTEventDispatcher
|
|
|
|
{
|
2015-02-24 17:06:57 +00:00
|
|
|
RCTBridge __weak *_bridge;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge
|
|
|
|
{
|
|
|
|
if ((self = [super init])) {
|
|
|
|
_bridge = bridge;
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-02-24 17:06:57 +00:00
|
|
|
+ (NSArray *)JSMethods
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-02-24 17:06:57 +00:00
|
|
|
return @[
|
|
|
|
@"RCTNativeAppEventEmitter.emit",
|
|
|
|
@"RCTDeviceEventEmitter.emit",
|
|
|
|
@"RCTEventEmitter.receiveEvent",
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)sendAppEventWithName:(NSString *)name body:(id)body
|
|
|
|
{
|
|
|
|
[_bridge enqueueJSCall:@"RCTNativeAppEventEmitter.emit"
|
2015-02-20 04:10:52 +00:00
|
|
|
args:body ? @[name, body] : @[name]];
|
|
|
|
}
|
|
|
|
|
2015-02-24 17:06:57 +00:00
|
|
|
- (void)sendDeviceEventWithName:(NSString *)name body:(id)body
|
|
|
|
{
|
|
|
|
[_bridge enqueueJSCall:@"RCTDeviceEventEmitter.emit"
|
|
|
|
args:body ? @[name, body] : @[name]];
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
- (void)sendInputEventWithName:(NSString *)name body:(NSDictionary *)body
|
|
|
|
{
|
|
|
|
RCTAssert([body[@"target"] isKindOfClass:[NSNumber class]],
|
2015-02-24 17:06:57 +00:00
|
|
|
@"Event body dictionary must include a 'target' property containing a react tag");
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
[_bridge enqueueJSCall:@"RCTEventEmitter.receiveEvent"
|
2015-02-24 17:06:57 +00:00
|
|
|
args:body ? @[body[@"target"], name, body] : @[body[@"target"], name]];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)sendTextEventWithType:(RCTTextEventType)type
|
|
|
|
reactTag:(NSNumber *)reactTag
|
|
|
|
text:(NSString *)text
|
|
|
|
{
|
|
|
|
static NSString *events[] = {
|
|
|
|
@"topFocus",
|
|
|
|
@"topBlur",
|
|
|
|
@"topChange",
|
|
|
|
@"topSubmitEditing",
|
|
|
|
@"topEndEditing",
|
|
|
|
};
|
|
|
|
|
2015-02-24 17:06:57 +00:00
|
|
|
[self sendInputEventWithName:events[type] body:text ? @{
|
2015-02-20 04:10:52 +00:00
|
|
|
@"text": text,
|
|
|
|
@"target": reactTag
|
2015-02-24 17:06:57 +00:00
|
|
|
} : @{
|
|
|
|
@"target": reactTag
|
2015-02-20 04:10:52 +00:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TODO: throttling
|
|
|
|
* NOTE: the old system used a per-scrollview throttling
|
|
|
|
* which would be fairly easy to re-implement if needed,
|
|
|
|
* but this is non-optimal as it leads to degradation in
|
|
|
|
* scroll responsiveness. A better solution would be to
|
|
|
|
* coalesce multiple scroll events into a single batch.
|
|
|
|
*/
|
|
|
|
- (void)sendScrollEventWithType:(RCTScrollEventType)type
|
|
|
|
reactTag:(NSNumber *)reactTag
|
|
|
|
scrollView:(UIScrollView *)scrollView
|
|
|
|
userData:(NSDictionary *)userData
|
|
|
|
{
|
|
|
|
static NSString *events[] = {
|
|
|
|
@"topScrollBeginDrag",
|
|
|
|
@"topScroll",
|
|
|
|
@"topScrollEndDrag",
|
|
|
|
@"topMomentumScrollBegin",
|
|
|
|
@"topMomentumScrollEnd",
|
|
|
|
@"topScrollAnimationEnd",
|
|
|
|
};
|
|
|
|
|
|
|
|
NSDictionary *body = @{
|
|
|
|
@"contentOffset": @{
|
|
|
|
@"x": @(scrollView.contentOffset.x),
|
|
|
|
@"y": @(scrollView.contentOffset.y)
|
|
|
|
},
|
|
|
|
@"contentSize": @{
|
|
|
|
@"width": @(scrollView.contentSize.width),
|
|
|
|
@"height": @(scrollView.contentSize.height)
|
|
|
|
},
|
|
|
|
@"layoutMeasurement": @{
|
|
|
|
@"width": @(scrollView.frame.size.width),
|
|
|
|
@"height": @(scrollView.frame.size.height)
|
|
|
|
},
|
|
|
|
@"zoomScale": @(scrollView.zoomScale ?: 1),
|
|
|
|
@"target": reactTag
|
|
|
|
};
|
|
|
|
|
|
|
|
if (userData) {
|
|
|
|
NSMutableDictionary *mutableBody = [body mutableCopy];
|
|
|
|
[mutableBody addEntriesFromDictionary:userData];
|
|
|
|
body = mutableBody;
|
|
|
|
}
|
|
|
|
|
|
|
|
[self sendInputEventWithName:events[type] body:body];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|