mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-14 04:59:45 +08:00
Summary: `UITextField` don't have delegate to observe the selection changes of users(multiline text input `UITextView` have it), so we can add a KVO to observe selection changes. cpojer shergin [iOS] [Fixed] - Fixes selection of single line text input Pull Request resolved: https://github.com/facebook/react-native/pull/24714 Differential Revision: D15238379 Pulled By: cpojer fbshipit-source-id: f149721d6b4df28e90f5a9405c74e01fde7c7d10
257 lines
7.9 KiB
Objective-C
257 lines
7.9 KiB
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RCTBackedTextInputDelegateAdapter.h"
|
|
|
|
#pragma mark - RCTBackedTextFieldDelegateAdapter (for UITextField)
|
|
|
|
static void *TextFieldSelectionObservingContext = &TextFieldSelectionObservingContext;
|
|
|
|
@interface RCTBackedTextFieldDelegateAdapter () <UITextFieldDelegate>
|
|
@end
|
|
|
|
@implementation RCTBackedTextFieldDelegateAdapter {
|
|
__weak UITextField<RCTBackedTextInputViewProtocol> *_backedTextInputView;
|
|
BOOL _textDidChangeIsComing;
|
|
UITextRange *_previousSelectedTextRange;
|
|
}
|
|
|
|
- (instancetype)initWithTextField:(UITextField<RCTBackedTextInputViewProtocol> *)backedTextInputView
|
|
{
|
|
if (self = [super init]) {
|
|
_backedTextInputView = backedTextInputView;
|
|
backedTextInputView.delegate = self;
|
|
|
|
[_backedTextInputView addTarget:self action:@selector(textFieldDidChange) forControlEvents:UIControlEventEditingChanged];
|
|
[_backedTextInputView addTarget:self action:@selector(textFieldDidEndEditingOnExit) forControlEvents:UIControlEventEditingDidEndOnExit];
|
|
[_backedTextInputView addObserver:self forKeyPath:@"selectedTextRange" options:NSKeyValueObservingOptionNew context:NULL];
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
|
|
{
|
|
// UITextField doesn't have a delegate like UITextView to get notified on selection. Use KVO to observe changes.
|
|
if ([keyPath isEqualToString:@"selectedTextRange"]) {
|
|
[self textFieldProbablyDidChangeSelection];
|
|
} else {
|
|
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
|
|
}
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
[_backedTextInputView removeTarget:self action:nil forControlEvents:UIControlEventEditingChanged];
|
|
[_backedTextInputView removeTarget:self action:nil forControlEvents:UIControlEventEditingDidEndOnExit];
|
|
[_backedTextInputView removeObserver:self forKeyPath:@"selectedTextRange"];
|
|
}
|
|
|
|
#pragma mark - UITextFieldDelegate
|
|
|
|
- (BOOL)textFieldShouldBeginEditing:(__unused UITextField *)textField
|
|
{
|
|
return [_backedTextInputView.textInputDelegate textInputShouldBeginEditing];
|
|
}
|
|
|
|
- (void)textFieldDidBeginEditing:(__unused UITextField *)textField
|
|
{
|
|
[_backedTextInputView.textInputDelegate textInputDidBeginEditing];
|
|
}
|
|
|
|
- (BOOL)textFieldShouldEndEditing:(__unused UITextField *)textField
|
|
{
|
|
return [_backedTextInputView.textInputDelegate textInputShouldEndEditing];
|
|
}
|
|
|
|
- (void)textFieldDidEndEditing:(__unused UITextField *)textField
|
|
{
|
|
if (_textDidChangeIsComing) {
|
|
// iOS does't call `textViewDidChange:` delegate method if the change was happened because of autocorrection
|
|
// which was triggered by losing focus. So, we call it manually.
|
|
_textDidChangeIsComing = NO;
|
|
[_backedTextInputView.textInputDelegate textInputDidChange];
|
|
}
|
|
|
|
[_backedTextInputView.textInputDelegate textInputDidEndEditing];
|
|
}
|
|
|
|
- (BOOL)textField:(__unused UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
|
|
{
|
|
BOOL result = [_backedTextInputView.textInputDelegate textInputShouldChangeTextInRange:range replacementText:string];
|
|
if (result) {
|
|
_textDidChangeIsComing = YES;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
- (BOOL)textFieldShouldReturn:(__unused UITextField *)textField
|
|
{
|
|
return [_backedTextInputView.textInputDelegate textInputShouldReturn];
|
|
}
|
|
|
|
#pragma mark - UIControlEventEditing* Family Events
|
|
|
|
- (void)textFieldDidChange
|
|
{
|
|
_textDidChangeIsComing = NO;
|
|
[_backedTextInputView.textInputDelegate textInputDidChange];
|
|
|
|
// `selectedTextRangeWasSet` isn't triggered during typing.
|
|
[self textFieldProbablyDidChangeSelection];
|
|
}
|
|
|
|
- (void)textFieldDidEndEditingOnExit
|
|
{
|
|
[_backedTextInputView.textInputDelegate textInputDidReturn];
|
|
}
|
|
|
|
#pragma mark - UIKeyboardInput (private UIKit protocol)
|
|
|
|
// This method allows us to detect a [Backspace] `keyPress`
|
|
// even when there is no more text in the `UITextField`.
|
|
- (BOOL)keyboardInputShouldDelete:(__unused UITextField *)textField
|
|
{
|
|
[_backedTextInputView.textInputDelegate textInputShouldChangeTextInRange:NSMakeRange(0, 0) replacementText:@""];
|
|
return YES;
|
|
}
|
|
|
|
#pragma mark - Public Interface
|
|
|
|
- (void)skipNextTextInputDidChangeSelectionEventWithTextRange:(UITextRange *)textRange
|
|
{
|
|
_previousSelectedTextRange = textRange;
|
|
}
|
|
|
|
- (void)selectedTextRangeWasSet
|
|
{
|
|
[self textFieldProbablyDidChangeSelection];
|
|
}
|
|
|
|
#pragma mark - Generalization
|
|
|
|
- (void)textFieldProbablyDidChangeSelection
|
|
{
|
|
if ([_backedTextInputView.selectedTextRange isEqual:_previousSelectedTextRange]) {
|
|
return;
|
|
}
|
|
|
|
_previousSelectedTextRange = _backedTextInputView.selectedTextRange;
|
|
[_backedTextInputView.textInputDelegate textInputDidChangeSelection];
|
|
}
|
|
|
|
@end
|
|
|
|
#pragma mark - RCTBackedTextViewDelegateAdapter (for UITextView)
|
|
|
|
@interface RCTBackedTextViewDelegateAdapter () <UITextViewDelegate>
|
|
@end
|
|
|
|
@implementation RCTBackedTextViewDelegateAdapter {
|
|
__weak UITextView<RCTBackedTextInputViewProtocol> *_backedTextInputView;
|
|
BOOL _textDidChangeIsComing;
|
|
UITextRange *_previousSelectedTextRange;
|
|
}
|
|
|
|
- (instancetype)initWithTextView:(UITextView<RCTBackedTextInputViewProtocol> *)backedTextInputView
|
|
{
|
|
if (self = [super init]) {
|
|
_backedTextInputView = backedTextInputView;
|
|
backedTextInputView.delegate = self;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
#pragma mark - UITextViewDelegate
|
|
|
|
- (BOOL)textViewShouldBeginEditing:(__unused UITextView *)textView
|
|
{
|
|
return [_backedTextInputView.textInputDelegate textInputShouldBeginEditing];
|
|
}
|
|
|
|
- (void)textViewDidBeginEditing:(__unused UITextView *)textView
|
|
{
|
|
[_backedTextInputView.textInputDelegate textInputDidBeginEditing];
|
|
}
|
|
|
|
- (BOOL)textViewShouldEndEditing:(__unused UITextView *)textView
|
|
{
|
|
return [_backedTextInputView.textInputDelegate textInputShouldEndEditing];
|
|
}
|
|
|
|
- (void)textViewDidEndEditing:(__unused UITextView *)textView
|
|
{
|
|
if (_textDidChangeIsComing) {
|
|
// iOS does't call `textViewDidChange:` delegate method if the change was happened because of autocorrection
|
|
// which was triggered by losing focus. So, we call it manually.
|
|
_textDidChangeIsComing = NO;
|
|
[_backedTextInputView.textInputDelegate textInputDidChange];
|
|
}
|
|
|
|
[_backedTextInputView.textInputDelegate textInputDidEndEditing];
|
|
}
|
|
|
|
- (BOOL)textView:(__unused UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
|
|
{
|
|
// Custom implementation of `textInputShouldReturn` and `textInputDidReturn` pair for `UITextView`.
|
|
if (!_backedTextInputView.textWasPasted && [text isEqualToString:@"\n"]) {
|
|
if ([_backedTextInputView.textInputDelegate textInputShouldReturn]) {
|
|
[_backedTextInputView.textInputDelegate textInputDidReturn];
|
|
[_backedTextInputView endEditing:NO];
|
|
return NO;
|
|
}
|
|
}
|
|
|
|
BOOL result = [_backedTextInputView.textInputDelegate textInputShouldChangeTextInRange:range replacementText:text];
|
|
if (result) {
|
|
_textDidChangeIsComing = YES;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
- (void)textViewDidChange:(__unused UITextView *)textView
|
|
{
|
|
_textDidChangeIsComing = NO;
|
|
[_backedTextInputView.textInputDelegate textInputDidChange];
|
|
}
|
|
|
|
- (void)textViewDidChangeSelection:(__unused UITextView *)textView
|
|
{
|
|
[self textViewProbablyDidChangeSelection];
|
|
}
|
|
|
|
#pragma mark - UIScrollViewDelegate
|
|
|
|
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
|
|
{
|
|
if ([_backedTextInputView.textInputDelegate respondsToSelector:@selector(scrollViewDidScroll:)]) {
|
|
[_backedTextInputView.textInputDelegate scrollViewDidScroll:scrollView];
|
|
}
|
|
}
|
|
|
|
#pragma mark - Public Interface
|
|
|
|
- (void)skipNextTextInputDidChangeSelectionEventWithTextRange:(UITextRange *)textRange
|
|
{
|
|
_previousSelectedTextRange = textRange;
|
|
}
|
|
|
|
#pragma mark - Generalization
|
|
|
|
- (void)textViewProbablyDidChangeSelection
|
|
{
|
|
if ([_backedTextInputView.selectedTextRange isEqual:_previousSelectedTextRange]) {
|
|
return;
|
|
}
|
|
|
|
_previousSelectedTextRange = _backedTextInputView.selectedTextRange;
|
|
[_backedTextInputView.textInputDelegate textInputDidChangeSelection];
|
|
}
|
|
|
|
@end
|