mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Differential Revision: D20639755 fbshipit-source-id: 5028563f9cf0527a30b4259daac50cdc03934bfd
106 lines
2.4 KiB
JavaScript
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;
|