85 lines
3.6 KiB
Mathematica
85 lines
3.6 KiB
Mathematica
|
/**
|
||
|
* 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 "RCTTextFieldManager.h"
|
||
|
|
||
|
#import <React/RCTBridge.h>
|
||
|
#import <React/RCTFont.h>
|
||
|
#import <React/RCTShadowView+Layout.h>
|
||
|
#import <React/RCTShadowView.h>
|
||
|
|
||
|
#import "RCTConvert+Text.h"
|
||
|
#import "RCTShadowTextField.h"
|
||
|
#import "RCTTextField.h"
|
||
|
#import "RCTUITextField.h"
|
||
|
|
||
|
@implementation RCTTextFieldManager
|
||
|
|
||
|
RCT_EXPORT_MODULE()
|
||
|
|
||
|
- (RCTShadowView *)shadowView
|
||
|
{
|
||
|
return [RCTShadowTextField new];
|
||
|
}
|
||
|
|
||
|
- (UIView *)view
|
||
|
{
|
||
|
return [[RCTTextField alloc] initWithBridge:self.bridge];
|
||
|
}
|
||
|
|
||
|
#pragma mark - Unified <TextInput> properties
|
||
|
|
||
|
RCT_REMAP_VIEW_PROPERTY(allowFontScaling, fontAttributes.allowFontScaling, BOOL)
|
||
|
RCT_REMAP_VIEW_PROPERTY(autoCapitalize, backedTextInputView.autocapitalizationType, UITextAutocapitalizationType)
|
||
|
RCT_REMAP_VIEW_PROPERTY(autoCorrect, backedTextInputView.autocorrectionType, UITextAutocorrectionType)
|
||
|
RCT_REMAP_VIEW_PROPERTY(color, backedTextInputView.textColor, UIColor)
|
||
|
RCT_REMAP_VIEW_PROPERTY(editable, backedTextInputView.editable, BOOL)
|
||
|
RCT_REMAP_VIEW_PROPERTY(enablesReturnKeyAutomatically, backedTextInputView.enablesReturnKeyAutomatically, BOOL)
|
||
|
RCT_REMAP_VIEW_PROPERTY(fontSize, fontAttributes.fontSize, NSNumber)
|
||
|
RCT_REMAP_VIEW_PROPERTY(fontWeight, fontAttributes.fontWeight, NSString)
|
||
|
RCT_REMAP_VIEW_PROPERTY(fontStyle, fontAttributes.fontStyle, NSString)
|
||
|
RCT_REMAP_VIEW_PROPERTY(fontFamily, fontAttributes.fontFamily, NSString)
|
||
|
RCT_REMAP_VIEW_PROPERTY(keyboardAppearance, backedTextInputView.keyboardAppearance, UIKeyboardAppearance)
|
||
|
RCT_REMAP_VIEW_PROPERTY(keyboardType, backedTextInputView.keyboardType, UIKeyboardType)
|
||
|
RCT_REMAP_VIEW_PROPERTY(placeholder, backedTextInputView.placeholder, NSString)
|
||
|
RCT_REMAP_VIEW_PROPERTY(placeholderTextColor, backedTextInputView.placeholderColor, UIColor)
|
||
|
RCT_REMAP_VIEW_PROPERTY(returnKeyType, backedTextInputView.returnKeyType, UIReturnKeyType)
|
||
|
RCT_REMAP_VIEW_PROPERTY(secureTextEntry, backedTextInputView.secureTextEntry, BOOL)
|
||
|
RCT_REMAP_VIEW_PROPERTY(selectionColor, backedTextInputView.tintColor, UIColor)
|
||
|
RCT_REMAP_VIEW_PROPERTY(spellCheck, backedTextInputView.spellCheckingType, UITextSpellCheckingType)
|
||
|
RCT_REMAP_VIEW_PROPERTY(textAlign, backedTextInputView.textAlignment, NSTextAlignment)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(blurOnSubmit, BOOL)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(clearTextOnFocus, BOOL)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(maxLength, NSNumber)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(selectTextOnFocus, BOOL)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(selection, RCTTextSelection)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(text, NSString)
|
||
|
|
||
|
#pragma mark - Singleline <TextInput> (aka TextField) specific properties
|
||
|
|
||
|
RCT_REMAP_VIEW_PROPERTY(caretHidden, backedTextInputView.caretHidden, BOOL)
|
||
|
RCT_REMAP_VIEW_PROPERTY(clearButtonMode, backedTextInputView.clearButtonMode, UITextFieldViewMode)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(onSelectionChange, RCTDirectEventBlock)
|
||
|
|
||
|
RCT_EXPORT_VIEW_PROPERTY(mostRecentEventCount, NSInteger)
|
||
|
|
||
|
- (RCTViewManagerUIBlock)uiBlockToAmendWithShadowView:(RCTShadowView *)shadowView
|
||
|
{
|
||
|
NSNumber *reactTag = shadowView.reactTag;
|
||
|
UIEdgeInsets borderAsInsets = shadowView.borderAsInsets;
|
||
|
UIEdgeInsets paddingAsInsets = shadowView.paddingAsInsets;
|
||
|
return ^(RCTUIManager *uiManager, NSDictionary<NSNumber *, RCTTextInput *> *viewRegistry) {
|
||
|
RCTTextInput *view = viewRegistry[reactTag];
|
||
|
view.reactBorderInsets = borderAsInsets;
|
||
|
view.reactPaddingInsets = paddingAsInsets;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
@end
|