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-23 22:07:33 +00:00
|
|
|
*
|
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
|
2015-03-23 22:07:33 +00:00
|
|
|
* @flow
|
2015-01-30 01:10:49 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2015-03-23 17:06:16 +00:00
|
|
|
var React = require('react-native');
|
2015-07-23 13:43:35 +00:00
|
|
|
var UIExplorerList = require('./UIExplorerList.ios');
|
2015-01-30 01:10:49 +00:00
|
|
|
var {
|
2015-02-19 14:57:05 +00:00
|
|
|
AppRegistry,
|
2015-01-30 01:10:49 +00:00
|
|
|
NavigatorIOS,
|
|
|
|
StyleSheet,
|
2015-11-12 19:39:05 +00:00
|
|
|
Text,
|
|
|
|
View
|
2015-01-30 01:10:49 +00:00
|
|
|
} = React;
|
|
|
|
|
|
|
|
var UIExplorerApp = React.createClass({
|
2015-03-12 19:51:44 +00:00
|
|
|
|
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-07-02 16:34:34 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<NavigatorIOS
|
|
|
|
style={styles.container}
|
|
|
|
initialRoute={{
|
|
|
|
title: 'UIExplorer',
|
|
|
|
component: UIExplorerList,
|
|
|
|
passProps: {
|
|
|
|
onExternalExampleRequested: (example) => {
|
|
|
|
this.setState({ openExternalExample: example, });
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
itemWrapperStyle={styles.itemWrapper}
|
|
|
|
tintColor="#008888"
|
|
|
|
/>
|
|
|
|
);
|
2015-01-30 01:10:49 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
itemWrapper: {
|
|
|
|
backgroundColor: '#eaeaea',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2015-11-12 19:39:05 +00:00
|
|
|
var SetPropertiesExampleApp = React.createClass({
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
var wrapperStyle = {
|
|
|
|
backgroundColor: this.props.color,
|
|
|
|
flex: 1,
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View style={wrapperStyle}>
|
|
|
|
<Text>
|
|
|
|
Embedded React Native view
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
AppRegistry.registerComponent('SetPropertiesExampleApp', () => SetPropertiesExampleApp);
|
2015-02-19 14:57:05 +00:00
|
|
|
AppRegistry.registerComponent('UIExplorerApp', () => UIExplorerApp);
|
2015-11-04 01:10:15 +00:00
|
|
|
UIExplorerList.registerComponents();
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
module.exports = UIExplorerApp;
|