Files
react-native/packages/rn-tester/js/components/RNTesterModuleContainer.js
T
Luna Wei 04b1ef5155 Add flow, flowfixmes to RNTesterModuleContainer and Animation examples
Summary: Changelog: [Internal] - RNTester: Add flow to RNTesterModuleContainer, render example as component, remove flowfixmes from Animation examples

Reviewed By: yungsters

Differential Revision: D29783772

fbshipit-source-id: 64ec6f247822b25c8cc6f64b192d17081be9c1f9
2021-07-22 17:24:02 -07:00

158 lines
4.1 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 strict-local
* @format
*/
import * as React from 'react';
const RNTesterBlock = require('./RNTesterBlock');
const RNTesterExampleFilter = require('./RNTesterExampleFilter');
import RNTPressableRow from './RNTPressableRow';
import {RNTesterThemeContext, type RNTesterTheme} from './RNTesterTheme';
import {View, Text, StyleSheet, Platform} from 'react-native';
import RNTTestDetails from './RNTTestDetails';
import type {
RNTesterModule,
RNTesterModuleExample,
} from '../types/RNTesterTypes';
type Props = {
module: RNTesterModule,
example?: ?RNTesterModuleExample,
onExampleCardPress?: ?(exampleName: string) => mixed,
};
function getExampleTitle(title, platform) {
return platform != null ? `${title} (${platform} only)` : title;
}
export default function RNTesterModuleContainer(props: Props): React.Node {
const {module, example, onExampleCardPress} = props;
const theme = React.useContext(RNTesterThemeContext);
const renderExample = (e, i) => {
// Filter platform-specific es
const {title, description, platform, render: ExampleComponent} = e;
if (platform != null && Platform.OS !== platform) {
return null;
}
return module.showIndividualExamples === true ? (
<RNTPressableRow
key={e.name}
onPress={() => onExampleCardPress?.(e.name)}
title={title}
description={description}
accessibilityLabel={e.name + ' ' + description}
style={StyleSheet.compose(styles.separator, {
borderBottomColor: theme.SeparatorColor,
})}
/>
) : (
<RNTesterBlock
key={i}
title={getExampleTitle(title, platform)}
description={description}>
<ExampleComponent />
</RNTesterBlock>
);
};
// TODO remove this case
if (module.examples.length === 1) {
const description = module.examples[0].description ?? module.description;
const ModuleSingleExample = module.examples[0].render;
return (
<>
<Header description={description} theme={theme} />
<ModuleSingleExample />
</>
);
}
const filter = ({example: e, filterRegex}) => filterRegex.test(e.title);
const sections = [
{
data: module.examples,
title: 'EXAMPLES',
key: 'e',
},
];
return module.showIndividualExamples === true && example != null ? (
<>
<RNTTestDetails
title={example.title}
description={example.description}
expect={example.expect}
theme={theme}
/>
<View style={styles.examplesContainer}>
<example.render />
</View>
</>
) : (
<>
<Header description={module.description} noBottomPadding theme={theme} />
<View style={styles.examplesContainer}>
<RNTesterExampleFilter
testID="example_search"
page="examples_page"
hideFilterPills={true}
sections={sections}
filter={filter}
render={({filteredSections}) =>
filteredSections[0].data.map(renderExample)
}
/>
</View>
</>
);
}
function Header(props: {
description: string,
theme: RNTesterTheme,
noBottomPadding?: ?boolean,
}) {
return (
<View
style={[
styles.headerContainer,
props.noBottomPadding === true ? styles.headerNoBottomPadding : null,
{backgroundColor: props.theme.BackgroundColor},
]}>
<Text style={styles.headerDescription}>{props.description}</Text>
</View>
);
}
const styles = StyleSheet.create({
headerContainer: {
paddingHorizontal: Platform.OS === 'android' ? 15 : 6,
paddingVertical: 6,
alignItems: 'center',
},
headerDescription: {
fontSize: 14,
},
headerNoBottomPadding: {
paddingBottom: 0,
},
examplesContainer: {
flexGrow: 1,
flex: 1,
},
separator: {
borderBottomWidth: Platform.select({
ios: StyleSheet.hairlineWidth,
android: 0,
}),
marginHorizontal: 15,
},
});