You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.7 KiB
102 lines
2.7 KiB
//
|
|
// RNRootViewGestureRecognizer.m
|
|
// RNGestureHandler
|
|
//
|
|
// Created by Krzysztof Magiera on 12/10/2017.
|
|
// Copyright © 2017 Software Mansion. All rights reserved.
|
|
//
|
|
|
|
#import "RNRootViewGestureRecognizer.h"
|
|
|
|
#import <UIKit/UIGestureRecognizerSubclass.h>
|
|
|
|
#ifdef RN_FABRIC_ENABLED
|
|
#import <React/RCTSurfaceTouchHandler.h>
|
|
#else
|
|
#import <React/RCTTouchHandler.h>
|
|
#endif // RN_FABRIC_ENABLED
|
|
|
|
@implementation RNRootViewGestureRecognizer {
|
|
BOOL _active;
|
|
}
|
|
|
|
@dynamic delegate;
|
|
|
|
- (instancetype)init
|
|
{
|
|
if (self = [super init]) {
|
|
self.delaysTouchesEnded = NO;
|
|
self.delaysTouchesBegan = NO;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (BOOL)shouldBeRequiredToFailByGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
|
|
{
|
|
// This method is used to implement "enabled" feature for gesture handlers. We enforce gesture
|
|
// recognizers that are connected with "disabled" handlers to wait for the root gesture
|
|
// recognizer to fail and this way we block them from acting.
|
|
RNGestureHandler *otherHandler = [RNGestureHandler findGestureHandlerByRecognizer:otherGestureRecognizer];
|
|
if (otherHandler != nil && otherHandler.enabled == NO) {
|
|
return YES;
|
|
}
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)canPreventGestureRecognizer:(UIGestureRecognizer *)preventedGestureRecognizer
|
|
{
|
|
return ![preventedGestureRecognizer isKindOfClass:[
|
|
#ifdef RN_FABRIC_ENABLED
|
|
RCTSurfaceTouchHandler
|
|
#else
|
|
RCTTouchHandler
|
|
#endif
|
|
class]];
|
|
}
|
|
|
|
- (BOOL)canBePreventedByGestureRecognizer:(UIGestureRecognizer *)preventingGestureRecognizer
|
|
{
|
|
// When this method is called it means that one of handlers has activated, in this case we want
|
|
// to send an info to JS so that it cancells all JS responders
|
|
[self.delegate gestureRecognizer:preventingGestureRecognizer didActivateInViewWithTouchHandler:self.view];
|
|
return [super canBePreventedByGestureRecognizer:preventingGestureRecognizer];
|
|
}
|
|
|
|
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
|
|
{
|
|
_active = YES;
|
|
self.state = UIGestureRecognizerStatePossible;
|
|
}
|
|
|
|
- (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
|
|
{
|
|
self.state = UIGestureRecognizerStatePossible;
|
|
}
|
|
|
|
- (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
|
|
{
|
|
if (self.state == UIGestureRecognizerStateBegan || self.state == UIGestureRecognizerStateChanged) {
|
|
self.state = UIGestureRecognizerStateEnded;
|
|
} else {
|
|
self.state = UIGestureRecognizerStateFailed;
|
|
}
|
|
[self reset];
|
|
_active = NO;
|
|
}
|
|
|
|
- (void)touchesCancelled:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
|
|
{
|
|
self.state = UIGestureRecognizerStateCancelled;
|
|
[self reset];
|
|
_active = NO;
|
|
}
|
|
|
|
- (void)blockOtherRecognizers
|
|
{
|
|
if (_active) {
|
|
self.state = UIGestureRecognizerStateBegan;
|
|
}
|
|
}
|
|
|
|
@end
|