2015-08-25 10:30:51 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import "RCTKeyboardObserver.h"
|
|
|
|
|
|
|
|
#import "RCTEventDispatcher.h"
|
|
|
|
|
|
|
|
static NSDictionary *RCTParseKeyboardNotification(NSNotification *notification);
|
|
|
|
|
|
|
|
@implementation RCTKeyboardObserver
|
|
|
|
|
|
|
|
@synthesize bridge = _bridge;
|
|
|
|
|
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
|
2016-05-04 14:06:09 +00:00
|
|
|
- (instancetype)init
|
|
|
|
{
|
|
|
|
// We're only overriding this to ensure the module gets created at startup
|
|
|
|
// TODO (t11106126): Remove once we have more declarative control over module setup.
|
|
|
|
return [super init];
|
|
|
|
}
|
|
|
|
|
2015-11-25 11:09:00 +00:00
|
|
|
- (void)setBridge:(RCTBridge *)bridge
|
2015-08-25 10:30:51 +00:00
|
|
|
{
|
2015-11-25 11:09:00 +00:00
|
|
|
_bridge = bridge;
|
|
|
|
|
|
|
|
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
2015-08-25 10:30:51 +00:00
|
|
|
|
|
|
|
#define ADD_KEYBOARD_HANDLER(NAME, SELECTOR) \
|
2015-11-25 11:09:00 +00:00
|
|
|
[nc addObserver:self selector:@selector(SELECTOR:) name:NAME object:nil]
|
2015-08-25 10:30:51 +00:00
|
|
|
|
2015-11-25 11:09:00 +00:00
|
|
|
ADD_KEYBOARD_HANDLER(UIKeyboardWillShowNotification, keyboardWillShow);
|
|
|
|
ADD_KEYBOARD_HANDLER(UIKeyboardDidShowNotification, keyboardDidShow);
|
|
|
|
ADD_KEYBOARD_HANDLER(UIKeyboardWillHideNotification, keyboardWillHide);
|
|
|
|
ADD_KEYBOARD_HANDLER(UIKeyboardDidHideNotification, keyboardDidHide);
|
|
|
|
ADD_KEYBOARD_HANDLER(UIKeyboardWillChangeFrameNotification, keyboardWillChangeFrame);
|
|
|
|
ADD_KEYBOARD_HANDLER(UIKeyboardDidChangeFrameNotification, keyboardDidChangeFrame);
|
2015-08-25 10:30:51 +00:00
|
|
|
|
|
|
|
#undef ADD_KEYBOARD_HANDLER
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
#define IMPLEMENT_KEYBOARD_HANDLER(EVENT) \
|
|
|
|
- (void)EVENT:(NSNotification *)notification \
|
|
|
|
{ \
|
|
|
|
[_bridge.eventDispatcher \
|
|
|
|
sendDeviceEventWithName:@#EVENT \
|
|
|
|
body:RCTParseKeyboardNotification(notification)]; \
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPLEMENT_KEYBOARD_HANDLER(keyboardWillShow)
|
|
|
|
IMPLEMENT_KEYBOARD_HANDLER(keyboardDidShow)
|
|
|
|
IMPLEMENT_KEYBOARD_HANDLER(keyboardWillHide)
|
|
|
|
IMPLEMENT_KEYBOARD_HANDLER(keyboardDidHide)
|
|
|
|
IMPLEMENT_KEYBOARD_HANDLER(keyboardWillChangeFrame)
|
|
|
|
IMPLEMENT_KEYBOARD_HANDLER(keyboardDidChangeFrame)
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-09-02 16:09:16 +00:00
|
|
|
NS_INLINE NSDictionary *RCTRectDictionaryValue(CGRect rect)
|
2015-08-25 10:30:51 +00:00
|
|
|
{
|
|
|
|
return @{
|
|
|
|
@"screenX": @(rect.origin.x),
|
|
|
|
@"screenY": @(rect.origin.y),
|
|
|
|
@"width": @(rect.size.width),
|
|
|
|
@"height": @(rect.size.height),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-09-02 16:09:16 +00:00
|
|
|
static NSString *RCTAnimationNameForCurve(UIViewAnimationCurve curve)
|
|
|
|
{
|
|
|
|
switch (curve) {
|
|
|
|
case UIViewAnimationCurveEaseIn:
|
|
|
|
return @"easeIn";
|
|
|
|
case UIViewAnimationCurveEaseInOut:
|
|
|
|
return @"easeInEaseOut";
|
|
|
|
case UIViewAnimationCurveEaseOut:
|
|
|
|
return @"easeOut";
|
|
|
|
case UIViewAnimationCurveLinear:
|
|
|
|
return @"linear";
|
|
|
|
default:
|
|
|
|
return @"keyboard";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-25 10:30:51 +00:00
|
|
|
static NSDictionary *RCTParseKeyboardNotification(NSNotification *notification)
|
|
|
|
{
|
|
|
|
NSDictionary *userInfo = notification.userInfo;
|
|
|
|
CGRect beginFrame = [userInfo[UIKeyboardFrameBeginUserInfoKey] CGRectValue];
|
|
|
|
CGRect endFrame = [userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
|
|
|
|
NSTimeInterval duration = [userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
|
2015-09-02 16:09:16 +00:00
|
|
|
UIViewAnimationCurve curve = [userInfo[UIKeyboardAnimationCurveUserInfoKey] integerValue];
|
2015-08-25 10:30:51 +00:00
|
|
|
|
|
|
|
return @{
|
|
|
|
@"startCoordinates": RCTRectDictionaryValue(beginFrame),
|
|
|
|
@"endCoordinates": RCTRectDictionaryValue(endFrame),
|
|
|
|
@"duration": @(duration * 1000.0), // ms
|
2015-09-02 16:09:16 +00:00
|
|
|
@"easing": RCTAnimationNameForCurve(curve),
|
2015-08-25 10:30:51 +00:00
|
|
|
};
|
|
|
|
}
|