/** * 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. */ 'use strict'; const NavigationExampleRow = require('./NavigationExampleRow'); const NavigationRootContainer = require('NavigationRootContainer'); const React = require('react-native'); const { NavigationExperimental, StyleSheet, ScrollView, } = React; const NavigationCardStack = NavigationExperimental.CardStack; const NavigationStateUtils = NavigationExperimental.StateUtils; function reduceNavigationState(initialState) { return (currentState, action) => { switch (action.type) { case 'RootContainerInitialAction': return initialState; case 'push': return NavigationStateUtils.push(currentState, {key: action.key}); case 'back': case 'pop': return currentState.index > 0 ? NavigationStateUtils.pop(currentState) : currentState; default: return currentState; } }; } const ExampleReducer = reduceNavigationState({ index: 0, key: 'exmaple', children: [{key: 'First Route'}], }); class NavigationCardStackExample extends React.Component { constructor(props, context) { super(props, context); this.state = {isHorizontal: true}; } componentWillMount() { this._renderNavigation = this._renderNavigation.bind(this); this._renderScene = this._renderScene.bind(this); this._toggleDirection = this._toggleDirection.bind(this); } render() { return ( ); } _renderNavigation(navigationState, onNavigate) { return ( ); } _renderScene(/*NavigationSceneRendererProps*/ props) { return ( { props.onNavigate({ type: 'push', key: 'Route ' + props.scenes.length, }); }} /> { props.onNavigate({ type: 'pop', }); }} /> ); } _toggleDirection() { this.setState({ isHorizontal: !this.state.isHorizontal, }); } _onNavigate(action) { if (action && action.type === 'back') { this._pop(); } } } const styles = StyleSheet.create({ main: { flex: 1, }, scrollView: { marginTop: 64 }, }); module.exports = NavigationCardStackExample;