mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 04:24:15 +00:00
f7cf017d29
- [ReactNative] Remove pushNotification prop from renderApplication | Eric Vicenti - [react_native] Stub VibrationIOS on Android | Andy Street - [ReactNative] Simplify and test interpolators | Christopher Chedeau - [ReactNative] Increase timeout for obj-c tests | Christopher Chedeau - [ReactNative] Updated RKText to new UIManager system | Nick Lockwood - [ReactNative] Unforked RCTShadowView, moved RKTextView into FBReactKitTextModule | Nick Lockwood - [ReactKit] Remove NativeModulesDeprecated | Spencer Ahrens - [ReactNative] Allow single callbacks in NativeModules | Spencer Ahrens - [ReactNative] s/RK/RCT in OSS | Spencer Ahrens - [ReactNative] Cleanup StyleSheet API | Christopher Chedeau - [RCTVibration] Basic Vibration API | Christopher Chedeau - [React Native] Prevent crash in redbox code with two thrown errors | Ben Alpert - [ReactNative] unbreak Android | Andrew Rasmussen
54 lines
1.6 KiB
Objective-C
54 lines
1.6 KiB
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTTextFieldManager.h"
|
|
|
|
#import "RCTBridge.h"
|
|
#import "RCTConvert.h"
|
|
#import "RCTShadowView.h"
|
|
#import "RCTSparseArray.h"
|
|
#import "RCTTextField.h"
|
|
|
|
@implementation RCTTextFieldManager
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [[RCTTextField alloc] initWithEventDispatcher:self.bridge.eventDispatcher];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(caretHidden)
|
|
RCT_EXPORT_VIEW_PROPERTY(autoCorrect)
|
|
RCT_EXPORT_VIEW_PROPERTY(enabled)
|
|
RCT_EXPORT_VIEW_PROPERTY(placeholder)
|
|
RCT_EXPORT_VIEW_PROPERTY(text)
|
|
RCT_EXPORT_VIEW_PROPERTY(clearButtonMode)
|
|
RCT_EXPORT_VIEW_PROPERTY(keyboardType)
|
|
RCT_REMAP_VIEW_PROPERTY(color, textColor)
|
|
RCT_CUSTOM_VIEW_PROPERTY(autoCapitalize, RCTTextField)
|
|
{
|
|
view.autocapitalizationType = json ? [RCTConvert UITextAutocapitalizationType:json]
|
|
: defaultView.autocapitalizationType;
|
|
}
|
|
RCT_CUSTOM_VIEW_PROPERTY(fontSize, RCTTextField)
|
|
{
|
|
view.font = [RCTConvert UIFont:view.font withSize:json ?: @(defaultView.font.pointSize)];
|
|
}
|
|
RCT_CUSTOM_VIEW_PROPERTY(fontWeight, RCTTextField)
|
|
{
|
|
view.font = [RCTConvert UIFont:view.font withWeight:json]; // TODO: default value
|
|
}
|
|
RCT_CUSTOM_VIEW_PROPERTY(fontFamily, RCTTextField)
|
|
{
|
|
view.font = [RCTConvert UIFont:view.font withFamily:json ?: defaultView.font.familyName];
|
|
}
|
|
|
|
- (RCTViewManagerUIBlock)uiBlockToAmendWithShadowView:(RCTShadowView *)shadowView
|
|
{
|
|
NSNumber *reactTag = shadowView.reactTag;
|
|
UIEdgeInsets padding = shadowView.paddingAsInsets;
|
|
return ^(RCTUIManager *uiManager, RCTSparseArray *viewRegistry) {
|
|
((RCTTextField *)viewRegistry[reactTag]).paddingEdgeInsets = padding;
|
|
};
|
|
}
|
|
|
|
@end
|