2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import "RCTTouchHandler.h"
|
|
|
|
|
|
|
|
#import <UIKit/UIGestureRecognizerSubclass.h>
|
|
|
|
|
|
|
|
#import "RCTAssert.h"
|
|
|
|
#import "RCTBridge.h"
|
|
|
|
#import "RCTLog.h"
|
|
|
|
#import "RCTUIManager.h"
|
|
|
|
#import "RCTUtils.h"
|
2015-03-26 09:58:06 +00:00
|
|
|
#import "UIView+React.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
// TODO: this class behaves a lot like a module, and could be implemented as a
|
|
|
|
// module if we were to assume that modules and RootViews had a 1:1 relationship
|
|
|
|
@implementation RCTTouchHandler
|
|
|
|
{
|
|
|
|
__weak RCTBridge *_bridge;
|
2015-08-07 17:46:42 +00:00
|
|
|
BOOL _dispatchedInitialTouches;
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
/**
|
|
|
|
* Arrays managed in parallel tracking native touch object along with the
|
2015-04-27 20:55:01 +00:00
|
|
|
* native view that was touched, and the React touch data dictionary.
|
2015-02-20 04:10:52 +00:00
|
|
|
* This must be kept track of because `UIKit` destroys the touch targets
|
|
|
|
* if touches are canceled and we have no other way to recover this information.
|
|
|
|
*/
|
|
|
|
NSMutableOrderedSet *_nativeTouches;
|
|
|
|
NSMutableArray *_reactTouches;
|
|
|
|
NSMutableArray *_touchViews;
|
2015-02-27 12:05:35 +00:00
|
|
|
|
|
|
|
BOOL _recordingInteractionTiming;
|
|
|
|
CFTimeInterval _mostRecentEnqueueJS;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge
|
|
|
|
{
|
2015-06-15 14:53:45 +00:00
|
|
|
RCTAssertParam(bridge);
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-08-07 17:46:42 +00:00
|
|
|
if ((self = [super initWithTarget:self action:@selector(handleGestureUpdate:)])) {
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
_bridge = bridge;
|
2015-08-07 17:46:42 +00:00
|
|
|
_dispatchedInitialTouches = NO;
|
2015-02-20 04:10:52 +00:00
|
|
|
_nativeTouches = [[NSMutableOrderedSet alloc] init];
|
|
|
|
_reactTouches = [[NSMutableArray alloc] init];
|
|
|
|
_touchViews = [[NSMutableArray alloc] init];
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-05-05 12:58:07 +00:00
|
|
|
// `cancelsTouchesInView` is needed in order to be used as a top level
|
|
|
|
// event delegated recognizer. Otherwise, lower-level components not built
|
|
|
|
// using RCT, will fail to recognize gestures.
|
2015-02-20 04:10:52 +00:00
|
|
|
self.cancelsTouchesInView = NO;
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-06-15 14:53:45 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(-initWithTarget:(id)target action:(SEL)action)
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
typedef NS_ENUM(NSInteger, RCTTouchEventType) {
|
|
|
|
RCTTouchEventTypeStart,
|
|
|
|
RCTTouchEventTypeMove,
|
|
|
|
RCTTouchEventTypeEnd,
|
|
|
|
RCTTouchEventTypeCancel
|
|
|
|
};
|
|
|
|
|
|
|
|
#pragma mark - Bookkeeping for touch indices
|
|
|
|
|
|
|
|
- (void)_recordNewTouches:(NSSet *)touches
|
|
|
|
{
|
|
|
|
for (UITouch *touch in touches) {
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
RCTAssert(![_nativeTouches containsObject:touch],
|
|
|
|
@"Touch is already recorded. This is a critical bug.");
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
// Find closest React-managed touchable view
|
|
|
|
UIView *targetView = touch.view;
|
|
|
|
while (targetView) {
|
2015-03-25 00:37:03 +00:00
|
|
|
if (targetView.reactTag && targetView.userInteractionEnabled &&
|
|
|
|
[targetView reactRespondsToTouch:touch]) {
|
2015-02-20 04:10:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
targetView = targetView.superview;
|
|
|
|
}
|
2015-02-27 02:08:56 +00:00
|
|
|
|
2015-03-25 00:37:03 +00:00
|
|
|
NSNumber *reactTag = [targetView reactTagAtPoint:[touch locationInView:targetView]];
|
|
|
|
if (!reactTag || !targetView.userInteractionEnabled) {
|
2015-02-27 02:08:56 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-06-05 03:20:37 +00:00
|
|
|
// Get new, unique touch identifier for the react touch
|
2015-02-20 04:10:52 +00:00
|
|
|
const NSUInteger RCTMaxTouches = 11; // This is the maximum supported by iDevices
|
2015-06-05 03:20:37 +00:00
|
|
|
NSInteger touchID = ([_reactTouches.lastObject[@"identifier"] integerValue] + 1) % RCTMaxTouches;
|
2015-02-20 04:10:52 +00:00
|
|
|
for (NSDictionary *reactTouch in _reactTouches) {
|
2015-06-05 03:20:37 +00:00
|
|
|
NSInteger usedID = [reactTouch[@"identifier"] integerValue];
|
2015-02-20 04:10:52 +00:00
|
|
|
if (usedID == touchID) {
|
|
|
|
// ID has already been used, try next value
|
|
|
|
touchID ++;
|
|
|
|
} else if (usedID > touchID) {
|
|
|
|
// If usedID > touchID, touchID must be unique, so we can stop looking
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
// Create touch
|
|
|
|
NSMutableDictionary *reactTouch = [[NSMutableDictionary alloc] initWithCapacity:9];
|
2015-03-25 00:37:03 +00:00
|
|
|
reactTouch[@"target"] = reactTag;
|
2015-02-20 04:10:52 +00:00
|
|
|
reactTouch[@"identifier"] = @(touchID);
|
2015-06-12 18:05:01 +00:00
|
|
|
reactTouch[@"touches"] = (id)kCFNull; // We hijack this touchObj to serve both as an event
|
|
|
|
reactTouch[@"changedTouches"] = (id)kCFNull; // and as a Touch object, so making this JIT friendly.
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
// Add to arrays
|
|
|
|
[_touchViews addObject:targetView];
|
|
|
|
[_nativeTouches addObject:touch];
|
|
|
|
[_reactTouches addObject:reactTouch];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)_recordRemovedTouches:(NSSet *)touches
|
|
|
|
{
|
|
|
|
for (UITouch *touch in touches) {
|
|
|
|
NSUInteger index = [_nativeTouches indexOfObject:touch];
|
2015-02-27 02:08:56 +00:00
|
|
|
if(index == NSNotFound) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
[_touchViews removeObjectAtIndex:index];
|
|
|
|
[_nativeTouches removeObjectAtIndex:index];
|
|
|
|
[_reactTouches removeObjectAtIndex:index];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)_updateReactTouchAtIndex:(NSInteger)touchIndex
|
|
|
|
{
|
|
|
|
UITouch *nativeTouch = _nativeTouches[touchIndex];
|
|
|
|
CGPoint windowLocation = [nativeTouch locationInView:nativeTouch.window];
|
|
|
|
CGPoint rootViewLocation = [nativeTouch.window convertPoint:windowLocation toView:self.view];
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
UIView *touchView = _touchViews[touchIndex];
|
|
|
|
CGPoint touchViewLocation = [nativeTouch.window convertPoint:windowLocation toView:touchView];
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
NSMutableDictionary *reactTouch = _reactTouches[touchIndex];
|
|
|
|
reactTouch[@"pageX"] = @(rootViewLocation.x);
|
|
|
|
reactTouch[@"pageY"] = @(rootViewLocation.y);
|
|
|
|
reactTouch[@"locationX"] = @(touchViewLocation.x);
|
|
|
|
reactTouch[@"locationY"] = @(touchViewLocation.y);
|
|
|
|
reactTouch[@"timestamp"] = @(nativeTouch.timestamp * 1000); // in ms, for JS
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs information about touch events to send across the serialized
|
|
|
|
* boundary. This data should be compliant with W3C `Touch` objects. This data
|
|
|
|
* alone isn't sufficient to construct W3C `Event` objects. To construct that,
|
|
|
|
* there must be a simple receiver on the other side of the bridge that
|
|
|
|
* organizes the touch objects into `Event`s.
|
|
|
|
*
|
|
|
|
* We send the data as an array of `Touch`es, the type of action
|
|
|
|
* (start/end/move/cancel) and the indices that represent "changed" `Touch`es
|
|
|
|
* from that array.
|
|
|
|
*/
|
2015-05-05 12:58:07 +00:00
|
|
|
- (void)_updateAndDispatchTouches:(NSSet *)touches
|
|
|
|
eventName:(NSString *)eventName
|
2015-06-15 14:53:45 +00:00
|
|
|
originatingTime:(__unused CFTimeInterval)originatingTime
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
|
|
|
// Update touches
|
|
|
|
NSMutableArray *changedIndexes = [[NSMutableArray alloc] init];
|
|
|
|
for (UITouch *touch in touches) {
|
|
|
|
NSInteger index = [_nativeTouches indexOfObject:touch];
|
2015-02-27 02:08:56 +00:00
|
|
|
if (index == NSNotFound) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
[self _updateReactTouchAtIndex:index];
|
|
|
|
[changedIndexes addObject:@(index)];
|
|
|
|
}
|
2015-02-27 02:08:56 +00:00
|
|
|
|
|
|
|
if (changedIndexes.count == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2015-03-23 20:28:42 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
// Deep copy the touches because they will be accessed from another thread
|
|
|
|
// TODO: would it be safer to do this in the bridge or executor, rather than trusting caller?
|
|
|
|
NSMutableArray *reactTouches = [[NSMutableArray alloc] initWithCapacity:_reactTouches.count];
|
|
|
|
for (NSDictionary *touch in _reactTouches) {
|
|
|
|
[reactTouches addObject:[touch copy]];
|
|
|
|
}
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-04-17 11:02:37 +00:00
|
|
|
[_bridge enqueueJSCall:@"RCTEventEmitter.receiveTouches"
|
|
|
|
args:@[eventName, reactTouches, changedIndexes]];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Gesture Recognizer Delegate Callbacks
|
|
|
|
|
2015-05-11 18:50:28 +00:00
|
|
|
static BOOL RCTAllTouchesAreCancelledOrEnded(NSSet *touches)
|
2015-05-05 12:58:07 +00:00
|
|
|
{
|
|
|
|
for (UITouch *touch in touches) {
|
|
|
|
if (touch.phase == UITouchPhaseBegan ||
|
|
|
|
touch.phase == UITouchPhaseMoved ||
|
|
|
|
touch.phase == UITouchPhaseStationary) {
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL RCTAnyTouchesChanged(NSSet *touches)
|
|
|
|
{
|
|
|
|
for (UITouch *touch in touches) {
|
|
|
|
if (touch.phase == UITouchPhaseBegan ||
|
|
|
|
touch.phase == UITouchPhaseMoved) {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2015-08-07 17:46:42 +00:00
|
|
|
- (void)handleGestureUpdate:(UIGestureRecognizer *)gesture {
|
|
|
|
// If the gesture just recognized, send all the touches over to JS as if they just began
|
|
|
|
if (self.state == UIGestureRecognizerStateBegan) {
|
|
|
|
[self _updateAndDispatchTouches:[_nativeTouches set] eventName:@"topTouchStart" originatingTime:0];
|
|
|
|
|
|
|
|
// We store this flag separately from `state` because after a gesture is recognized, its `state` changes immediately but its action (that is, this method) isn't fired until dependent gesture recognizers have failed. We only want to send move/end/cancel touch updates if we've sent the touchStart events.
|
|
|
|
_dispatchedInitialTouches = YES;
|
|
|
|
}
|
|
|
|
// For the other states, we could dispatch the updates here but since we specifically send info about which touches changed, it's simpler to dispatch the updates from the raw touch methods below.
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
[super touchesBegan:touches withEvent:event];
|
2015-02-27 12:05:35 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
// "start" has to record new touches before extracting the event.
|
|
|
|
// "end"/"cancel" needs to remove the touch *after* extracting the event.
|
|
|
|
[self _recordNewTouches:touches];
|
2015-08-07 17:46:42 +00:00
|
|
|
if (_dispatchedInitialTouches) {
|
|
|
|
[self _updateAndDispatchTouches:touches eventName:@"topTouchStart" originatingTime:event.timestamp];
|
|
|
|
self.state = UIGestureRecognizerStateChanged;
|
|
|
|
} else {
|
|
|
|
self.state = UIGestureRecognizerStateBegan;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
[super touchesMoved:touches withEvent:event];
|
2015-05-05 12:58:07 +00:00
|
|
|
|
2015-08-07 17:46:42 +00:00
|
|
|
if (_dispatchedInitialTouches) {
|
|
|
|
[self _updateAndDispatchTouches:touches eventName:@"topTouchMove" originatingTime:event.timestamp];
|
2015-05-05 12:58:07 +00:00
|
|
|
self.state = UIGestureRecognizerStateChanged;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
[super touchesEnded:touches withEvent:event];
|
2015-05-05 12:58:07 +00:00
|
|
|
|
2015-08-07 17:46:42 +00:00
|
|
|
if (_dispatchedInitialTouches) {
|
|
|
|
[self _updateAndDispatchTouches:touches eventName:@"topTouchEnd" originatingTime:event.timestamp];
|
|
|
|
|
|
|
|
if (RCTAllTouchesAreCancelledOrEnded(event.allTouches)) {
|
|
|
|
self.state = UIGestureRecognizerStateEnded;
|
|
|
|
} else if (RCTAnyTouchesChanged(event.allTouches)) {
|
|
|
|
self.state = UIGestureRecognizerStateChanged;
|
|
|
|
}
|
2015-05-05 12:58:07 +00:00
|
|
|
}
|
2015-08-07 17:46:42 +00:00
|
|
|
[self _recordRemovedTouches:touches];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
[super touchesCancelled:touches withEvent:event];
|
2015-05-05 12:58:07 +00:00
|
|
|
|
2015-08-07 17:46:42 +00:00
|
|
|
if (_dispatchedInitialTouches) {
|
|
|
|
[self _updateAndDispatchTouches:touches eventName:@"topTouchCancel" originatingTime:event.timestamp];
|
|
|
|
|
|
|
|
if (RCTAllTouchesAreCancelledOrEnded(event.allTouches)) {
|
|
|
|
self.state = UIGestureRecognizerStateCancelled;
|
|
|
|
} else if (RCTAnyTouchesChanged(event.allTouches)) {
|
|
|
|
self.state = UIGestureRecognizerStateChanged;
|
|
|
|
}
|
2015-05-05 12:58:07 +00:00
|
|
|
}
|
2015-08-07 17:46:42 +00:00
|
|
|
[self _recordRemovedTouches:touches];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-06-15 14:53:45 +00:00
|
|
|
- (BOOL)canPreventGestureRecognizer:(__unused UIGestureRecognizer *)preventedGestureRecognizer
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2015-06-15 14:53:45 +00:00
|
|
|
- (BOOL)canBePreventedByGestureRecognizer:(__unused UIGestureRecognizer *)preventingGestureRecognizer
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2015-08-07 17:46:42 +00:00
|
|
|
- (void)reset {
|
|
|
|
_dispatchedInitialTouches = NO;
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@end
|