mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
77ecc7ede1
Summary: Changelog: [General][Internal] Reviewed By: zertosh Differential Revision: D31883447 fbshipit-source-id: cbbf85e4bf935096d242336f41bf0cc5d6f92359
66 lines
2.0 KiB
JavaScript
66 lines
2.0 KiB
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
import ReactNativeViewAttributes from '../Components/View/ReactNativeViewAttributes';
|
|
import UIManager from '../ReactNative/UIManager';
|
|
import {type HostComponent} from '../Renderer/shims/ReactNativeTypes';
|
|
import createReactNativeComponentClass from '../Renderer/shims/createReactNativeComponentClass';
|
|
import {type ProcessedColorValue} from '../StyleSheet/processColor';
|
|
import {type TextProps} from './TextProps';
|
|
|
|
type NativeTextProps = $ReadOnly<{
|
|
...TextProps,
|
|
isHighlighted?: ?boolean,
|
|
selectionColor?: ?ProcessedColorValue,
|
|
}>;
|
|
|
|
export const NativeText: HostComponent<NativeTextProps> =
|
|
(createReactNativeComponentClass('RCTText', () => ({
|
|
validAttributes: {
|
|
...ReactNativeViewAttributes.UIView,
|
|
isHighlighted: true,
|
|
numberOfLines: true,
|
|
ellipsizeMode: true,
|
|
allowFontScaling: true,
|
|
maxFontSizeMultiplier: true,
|
|
disabled: true,
|
|
selectable: true,
|
|
selectionColor: true,
|
|
adjustsFontSizeToFit: true,
|
|
minimumFontScale: true,
|
|
textBreakStrategy: true,
|
|
onTextLayout: true,
|
|
onInlineViewLayout: true,
|
|
dataDetectorType: true,
|
|
android_hyphenationFrequency: true,
|
|
},
|
|
directEventTypes: {
|
|
topTextLayout: {
|
|
registrationName: 'onTextLayout',
|
|
},
|
|
topInlineViewLayout: {
|
|
registrationName: 'onInlineViewLayout',
|
|
},
|
|
},
|
|
uiViewClassName: 'RCTText',
|
|
})): any);
|
|
|
|
export const NativeVirtualText: HostComponent<NativeTextProps> =
|
|
!global.RN$Bridgeless && !UIManager.hasViewManagerConfig('RCTVirtualText')
|
|
? NativeText
|
|
: (createReactNativeComponentClass('RCTVirtualText', () => ({
|
|
validAttributes: {
|
|
...ReactNativeViewAttributes.UIView,
|
|
isHighlighted: true,
|
|
maxFontSizeMultiplier: true,
|
|
},
|
|
uiViewClassName: 'RCTVirtualText',
|
|
})): any);
|