mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
42eb5464fd
This is an early release and there are several things that are known not to work if you're porting your iOS app to Android. See the Known Issues guide on the website. We will work with the community to reach platform parity with iOS.
95 lines
2.4 KiB
JavaScript
95 lines
2.4 KiB
JavaScript
/**
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
* evaluation purposes only.
|
|
*
|
|
* 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.
|
|
*
|
|
* @providesModule MoviesApp
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var React = require('react-native');
|
|
var {
|
|
AppRegistry,
|
|
BackAndroid,
|
|
Navigator,
|
|
StyleSheet,
|
|
ToolbarAndroid,
|
|
View,
|
|
} = React;
|
|
|
|
var MovieScreen = require('./MovieScreen');
|
|
var SearchScreen = require('./SearchScreen');
|
|
|
|
var _navigator;
|
|
BackAndroid.addEventListener('hardwareBackPress', () => {
|
|
if (_navigator && _navigator.getCurrentRoutes().length > 1) {
|
|
_navigator.pop();
|
|
return true;
|
|
}
|
|
return false;
|
|
});
|
|
|
|
var RouteMapper = function(route, navigationOperations, onComponentRef) {
|
|
_navigator = navigationOperations;
|
|
if (route.name === 'search') {
|
|
return (
|
|
<SearchScreen navigator={navigationOperations} />
|
|
);
|
|
} else if (route.name === 'movie') {
|
|
return (
|
|
<View style={{flex: 1}}>
|
|
<ToolbarAndroid
|
|
actions={[]}
|
|
navIcon={require('image!android_back_white')}
|
|
onIconClicked={navigationOperations.pop}
|
|
style={styles.toolbar}
|
|
titleColor="white"
|
|
title={route.movie.title} />
|
|
<MovieScreen
|
|
style={{flex: 1}}
|
|
navigator={navigationOperations}
|
|
movie={route.movie}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
};
|
|
|
|
var MoviesApp = React.createClass({
|
|
render: function() {
|
|
var initialRoute = {name: 'search'};
|
|
return (
|
|
<Navigator
|
|
style={styles.container}
|
|
initialRoute={initialRoute}
|
|
configureScene={() => Navigator.SceneConfigs.FadeAndroid}
|
|
renderScene={RouteMapper}
|
|
/>
|
|
);
|
|
}
|
|
});
|
|
|
|
var styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: 'white',
|
|
},
|
|
toolbar: {
|
|
backgroundColor: '#a9a9a9',
|
|
height: 56,
|
|
},
|
|
});
|
|
|
|
AppRegistry.registerComponent('MoviesApp', () => MoviesApp);
|
|
|
|
module.exports = MoviesApp;
|