123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- import React, {Component} from 'react';
- import {
- StyleSheet,
- SafeAreaView,
- Text,
- TouchableOpacity,
- View,
- Keyboard,
- Button,
- } from 'react-native';
-
- import Alerts from './examples/Alerts';
- import Scrolling from './examples/Scrolling';
- import Background from './examples/Background';
-
- const TESTS = {
- Alerts: {
- title: 'Alerts',
- testId: 'alerts',
- description: 'Alerts tests',
- render() {
- return <Alerts />;
- },
- },
- Scrolling: {
- title: 'Scrolling',
- testId: 'scrolling',
- description: 'Scrolling event test',
- render() {
- return <Scrolling />;
- },
- },
- Background: {
- title: 'Background',
- testId: 'background',
- description: 'Background color test',
- render() {
- return <Background />;
- },
- },
- };
-
- type Props = {};
- type State = {restarting: boolean, currentTest: Object};
-
- export default class App extends Component<Props, State> {
- state = {
- restarting: false,
- currentTest: TESTS.Alerts,
- };
-
- _simulateRestart = () => {
- this.setState({restarting: true}, () => this.setState({restarting: false}));
- };
-
- _changeTest = testName => {
- this.setState({currentTest: TESTS[testName]});
- };
-
- render() {
- const {restarting, currentTest} = this.state;
- return (
- <SafeAreaView style={styles.container}>
- <TouchableOpacity
- style={styles.closeKeyboardView}
- onPress={() => Keyboard.dismiss()}
- testID="closeKeyboard"
- />
-
- <TouchableOpacity
- testID="restart_button"
- onPress={this._simulateRestart}
- style={styles.restartButton}
- activeOpacity={0.6}>
- <Text>Simulate Restart</Text>
- </TouchableOpacity>
-
- <View style={styles.testPickerContainer}>
- <Button
- testID="testType_alerts"
- title="Alerts"
- onPress={() => this._changeTest('Alerts')}
- />
- <Button
- testID="testType_scrolling"
- title="Scrolling"
- onPress={() => this._changeTest('Scrolling')}
- />
- <Button
- testID="testType_background"
- title="Background"
- onPress={() => this._changeTest('Background')}
- />
- </View>
-
- {restarting ? null : (
- <View
- testID={`example-${currentTest.testId}`}
- key={currentTest.title}
- style={styles.exampleContainer}>
- <Text style={styles.exampleTitle}>{currentTest.title}</Text>
- <Text style={styles.exampleDescription}>
- {currentTest.description}
- </Text>
- <View style={styles.exampleInnerContainer}>
- {currentTest.render()}
- </View>
- </View>
- )}
- </SafeAreaView>
- );
- }
- }
-
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#F5FCFF',
- padding: 8,
- },
- exampleContainer: {
- padding: 16,
- backgroundColor: '#FFF',
- borderColor: '#EEE',
- borderTopWidth: 1,
- borderBottomWidth: 1,
- flex: 1,
- },
- exampleTitle: {
- fontSize: 18,
- },
- exampleDescription: {
- color: '#333333',
- marginBottom: 16,
- },
- exampleInnerContainer: {
- borderColor: '#EEE',
- borderTopWidth: 1,
- paddingTop: 10,
- flex: 1,
- },
- restartButton: {
- padding: 6,
- fontSize: 16,
- borderRadius: 5,
- backgroundColor: '#F3F3F3',
- alignItems: 'center',
- justifyContent: 'center',
- alignSelf: 'flex-end',
- },
- closeKeyboardView: {
- width: 5,
- height: 5,
- },
- testPickerContainer: {
- flexDirection: 'row',
- flexWrap: 'wrap',
- },
- });
|