Files
react-native/RNTester/js/components/RNTesterBlock.js
T
Michael BolinandFacebook GitHub Bot 0b9ea60b4f Back out "Upgrade Prettier from 1.17 to 2.0.2."
Differential Revision: D20639755

fbshipit-source-id: 5028563f9cf0527a30b4259daac50cdc03934bfd
2020-03-24 21:47:35 -07:00

106 lines
2.4 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.
*
* @format
* @flow
*/
'use strict';
const React = require('react');
const {StyleSheet, Text, View} = require('react-native');
import {RNTesterThemeContext} from './RNTesterTheme';
type Props = $ReadOnly<{|
children?: React.Node,
title?: ?string,
description?: ?string,
|}>;
type State = {|
description: ?string,
|};
class RNTesterBlock extends React.Component<Props, State> {
state: State = {description: null};
render(): React.Node {
const description = this.props.description ? (
<RNTesterThemeContext.Consumer>
{theme => {
return (
<Text style={[styles.descriptionText, {color: theme.LabelColor}]}>
{this.props.description}
</Text>
);
}}
</RNTesterThemeContext.Consumer>
) : null;
return (
<RNTesterThemeContext.Consumer>
{theme => {
return (
<View
style={[
styles.container,
{
borderColor: theme.SeparatorColor,
backgroundColor: theme.SystemBackgroundColor,
},
]}>
<View
style={[
styles.titleContainer,
{
borderBottomColor: theme.SeparatorColor,
backgroundColor: theme.QuaternarySystemFillColor,
},
]}>
<Text style={[styles.titleText, {color: theme.LabelColor}]}>
{this.props.title}
</Text>
{description}
</View>
<View style={styles.children}>{this.props.children}</View>
</View>
);
}}
</RNTesterThemeContext.Consumer>
);
}
}
const styles = StyleSheet.create({
container: {
borderRadius: 3,
borderWidth: 0.5,
margin: 10,
marginVertical: 5,
overflow: 'hidden',
},
titleContainer: {
borderBottomWidth: 0.5,
borderTopLeftRadius: 3,
borderTopRightRadius: 2.5,
paddingHorizontal: 10,
paddingVertical: 5,
},
titleText: {
fontSize: 14,
fontWeight: '500',
},
descriptionText: {
fontSize: 14,
},
children: {
margin: 10,
},
});
module.exports = RNTesterBlock;