react-native/Examples/UIExplorer/UIExplorerApp.js

77 lines
1.9 KiB
JavaScript
Raw Normal View History

2015-01-30 01:10:49 +00:00
/**
2015-03-26 18:24:15 +00:00
* The examples provided by Facebook are for non-commercial testing and
* evaluation purposes only.
*
2015-03-26 18:24:15 +00:00
* Facebook reserves all rights not expressly granted.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2015-01-30 01:10:49 +00:00
*
* @providesModule UIExplorerApp
* @flow
2015-01-30 01:10:49 +00:00
*/
'use strict';
var React = require('react-native');
2015-01-30 01:10:49 +00:00
var UIExplorerList = require('./UIExplorerList');
var {
AppRegistry,
2015-01-30 01:10:49 +00:00
NavigatorIOS,
StyleSheet,
} = React;
var UIExplorerApp = React.createClass({
2015-03-25 02:34:12 +00:00
getInitialState: function() {
return {
openExternalExample: (null: ?React.Component),
};
},
2015-01-30 01:10:49 +00:00
render: function() {
2015-03-25 02:34:12 +00:00
if (this.state.openExternalExample) {
var Example = this.state.openExternalExample;
return (
<Example
onExampleExit={() => {
this.setState({ openExternalExample: null, });
}}
/>
);
}
2015-01-30 01:10:49 +00:00
return (
<NavigatorIOS
style={styles.container}
initialRoute={{
title: 'UIExplorer',
component: UIExplorerList,
2015-03-25 02:34:12 +00:00
passProps: {
onExternalExampleRequested: (example) => {
this.setState({ openExternalExample: example, });
},
}
2015-01-30 01:10:49 +00:00
}}
itemWrapperStyle={styles.itemWrapper}
tintColor='#008888'
/>
2015-01-30 01:10:49 +00:00
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
},
itemWrapper: {
backgroundColor: '#eaeaea',
},
});
AppRegistry.registerComponent('UIExplorerApp', () => UIExplorerApp);
2015-01-30 01:10:49 +00:00
module.exports = UIExplorerApp;