2015-11-19 21:32:37 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-11-19 21:32:37 +00:00
|
|
|
*
|
2017-02-03 23:48:18 +00:00
|
|
|
* @providesModule RCTRootViewIntegrationTestApp
|
2015-11-19 21:32:37 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-05-04 12:18:42 +00:00
|
|
|
require('regenerator-runtime/runtime');
|
2015-11-19 21:32:37 +00:00
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var React = require('react');
|
|
|
|
var ReactNative = require('react-native');
|
2015-11-19 21:32:37 +00:00
|
|
|
|
|
|
|
var {
|
|
|
|
AppRegistry,
|
|
|
|
ScrollView,
|
|
|
|
StyleSheet,
|
|
|
|
Text,
|
|
|
|
TouchableOpacity,
|
|
|
|
View,
|
2016-04-09 03:36:40 +00:00
|
|
|
} = ReactNative;
|
2015-11-19 21:32:37 +00:00
|
|
|
|
|
|
|
/* Keep this list in sync with RCTRootViewIntegrationTests.m */
|
|
|
|
var TESTS = [
|
|
|
|
require('./PropertiesUpdateTest'),
|
|
|
|
require('./ReactContentSizeUpdateTest'),
|
|
|
|
require('./SizeFlexibilityUpdateTest'),
|
|
|
|
];
|
|
|
|
|
|
|
|
TESTS.forEach(
|
|
|
|
(test) => AppRegistry.registerComponent(test.displayName, () => test)
|
|
|
|
);
|
|
|
|
|
2017-02-03 23:48:18 +00:00
|
|
|
class RCTRootViewIntegrationTestApp extends React.Component {
|
2016-07-26 08:00:02 +00:00
|
|
|
state = {
|
|
|
|
test: null,
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
2015-11-19 21:32:37 +00:00
|
|
|
if (this.state.test) {
|
|
|
|
return (
|
|
|
|
<ScrollView>
|
|
|
|
<this.state.test />
|
|
|
|
</ScrollView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
|
|
|
<Text style={styles.row}>
|
|
|
|
Click on a test to run it in this shell for easier debugging and
|
|
|
|
development. Run all tests in the testing environment with cmd+U in
|
|
|
|
Xcode.
|
|
|
|
</Text>
|
|
|
|
<View style={styles.separator} />
|
|
|
|
<ScrollView>
|
|
|
|
{TESTS.map((test) => [
|
|
|
|
<TouchableOpacity
|
|
|
|
onPress={() => this.setState({test})}
|
|
|
|
style={styles.row}>
|
|
|
|
<Text style={styles.testName}>
|
|
|
|
{test.displayName}
|
|
|
|
</Text>
|
|
|
|
</TouchableOpacity>,
|
|
|
|
<View style={styles.separator} />
|
|
|
|
])}
|
|
|
|
</ScrollView>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
2015-11-19 21:32:37 +00:00
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
backgroundColor: 'white',
|
|
|
|
marginTop: 40,
|
|
|
|
margin: 15,
|
|
|
|
},
|
|
|
|
row: {
|
|
|
|
padding: 10,
|
|
|
|
},
|
|
|
|
testName: {
|
|
|
|
fontWeight: '500',
|
|
|
|
},
|
|
|
|
separator: {
|
|
|
|
height: 1,
|
|
|
|
backgroundColor: '#bbbbbb',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2017-02-03 23:48:18 +00:00
|
|
|
AppRegistry.registerComponent('RCTRootViewIntegrationTestApp', () => RCTRootViewIntegrationTestApp);
|