mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51464 Add a module of shared examples, like `TextInputSharedExamples`, to avoid copy/paste between these. Modifies the empty test example a bit and adds an E2E test. Changelog: [Internal] Reviewed By: rshest Differential Revision: D74780847 fbshipit-source-id: 30c2830ef0b638680fe75b4bcf9f138f5c01e190
89 lines
2.5 KiB
JavaScript
89 lines
2.5 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
import type {RNTesterModuleExample} from '../../types/RNTesterTypes';
|
|
|
|
import RNTesterText from '../../components/RNTesterText';
|
|
import {useTheme} from '../../components/RNTesterTheme';
|
|
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,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
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,
|
|
},
|
|
] as $ReadOnlyArray<RNTesterModuleExample>;
|