mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
dd9d7c0e74
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51666 The platforms handle this in pretty different ways right now. Let's add a test showing the differences. Android also adds a bunch of unicode zero width spaces in there... Changelog: [Internal] Reviewed By: mlord93 Differential Revision: D75567210 fbshipit-source-id: 98cac7d3fd23451868b55b69478e2667a2de3716
136 lines
4.0 KiB
JavaScript
136 lines
4.0 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and 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 type {RNTesterModuleExample} from '../../types/RNTesterTypes';
|
|
import type {TextLayoutLine} from 'react-native/Libraries/Types/CoreEventTypes';
|
|
|
|
import RNTesterText from '../../components/RNTesterText';
|
|
import {useTheme} from '../../components/RNTesterTheme';
|
|
import {useState} from 'react';
|
|
import {View} from 'react-native';
|
|
|
|
function InlineView(props: {
|
|
textAlign: 'auto' | 'left' | 'right' | 'center' | 'justify',
|
|
long?: boolean,
|
|
}): React.Node {
|
|
return (
|
|
<View style={{margin: 4}}>
|
|
<RNTesterText
|
|
style={{textAlign: props.textAlign, backgroundColor: 'cyan'}}>
|
|
Parent
|
|
<RNTesterText style={{fontWeight: 'bold'}}>Child</RNTesterText>
|
|
<View style={{width: 30, height: 30, backgroundColor: 'red'}} />
|
|
<RNTesterText style={{fontWeight: 'bold'}}>Child</RNTesterText>
|
|
{props !== null && props.long === true && (
|
|
<RNTesterText style={{fontWeight: 'bold'}}>
|
|
aaaa a aaaa aaaaaa aaa a a a aaaaa sdsds dsdSAD asd ASDasd ASDas
|
|
</RNTesterText>
|
|
)}
|
|
</RNTesterText>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function TextInlineViewsExample(props: {}): React.Node {
|
|
return (
|
|
<View style={{flex: 1}} testID="view-test-inline-text-alignment">
|
|
<RNTesterText style={{textAlign: 'center', fontSize: 14}}>
|
|
BoringLayout
|
|
</RNTesterText>
|
|
<InlineView textAlign="left" />
|
|
<InlineView textAlign="center" />
|
|
<InlineView textAlign="right" />
|
|
<InlineView textAlign="justify" />
|
|
|
|
<RNTesterText style={{textAlign: 'center', fontSize: 14}}>
|
|
StaticLayout
|
|
</RNTesterText>
|
|
<InlineView textAlign="left" long />
|
|
<InlineView textAlign="center" long />
|
|
<InlineView textAlign="right" long />
|
|
<InlineView textAlign="justify" long />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function EmptyTextExample(): React.Node {
|
|
const {BorderColor} = useTheme();
|
|
return (
|
|
<RNTesterText
|
|
testID="empty-text"
|
|
style={{
|
|
borderWidth: 1,
|
|
borderColor: BorderColor,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function TextAndLayoutLinesJSON({
|
|
testID,
|
|
ellipsizeMode,
|
|
}: $ReadOnly<{
|
|
testID: string,
|
|
ellipsizeMode: 'head' | 'tail' | 'middle' | 'clip',
|
|
}>): React.Node {
|
|
const [lines, setLines] = useState<?(TextLayoutLine[])>();
|
|
|
|
return (
|
|
<View testID={testID}>
|
|
<RNTesterText variant="label">{ellipsizeMode}</RNTesterText>
|
|
<RNTesterText
|
|
numberOfLines={1}
|
|
ellipsizeMode={ellipsizeMode}
|
|
onTextLayout={ev => setLines(ev.nativeEvent.lines)}>
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin volutpat
|
|
molestie nunc non tristique.
|
|
</RNTesterText>
|
|
<RNTesterText style={{fontSize: 8, fontFamily: 'monospace'}}>
|
|
{JSON.stringify(lines, null, 2)}
|
|
</RNTesterText>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function NumberOfLinesTextLayoutExample(): React.Node {
|
|
return (
|
|
<View style={{rowGap: 20}}>
|
|
<TextAndLayoutLinesJSON ellipsizeMode="tail" testID="tail-layout" />
|
|
<TextAndLayoutLinesJSON ellipsizeMode="head" testID="head-layout" />
|
|
<TextAndLayoutLinesJSON ellipsizeMode="middle" testID="middle-layout" />
|
|
<TextAndLayoutLinesJSON ellipsizeMode="clip" testID="clip-layout" />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default [
|
|
{
|
|
title: 'Empty Text',
|
|
name: 'emptyText',
|
|
render: EmptyTextExample,
|
|
},
|
|
{
|
|
title: 'TextInlineViewsExample',
|
|
name: 'inlineViews',
|
|
description:
|
|
'Shows how inline views are rendered when text is subject to alignment.',
|
|
expect: 'The red box should align correctly with the rest of the text.',
|
|
render: TextInlineViewsExample,
|
|
},
|
|
{
|
|
title: 'numberOfLines with onTextLayout',
|
|
name: 'numberOfLinesLayout',
|
|
description:
|
|
'Shows the behavior of numberOfLines and ellipsizeMode in conjunction with the onTextLayout event',
|
|
scrollable: true,
|
|
render: NumberOfLinesTextLayoutExample,
|
|
},
|
|
] as $ReadOnlyArray<RNTesterModuleExample>;
|