Created
May 9, 2016 12:12
-
-
Save sylvainbaronnet/a2671d94e9f548aa169473e871d476b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright (c) 2015-present, Pavel Aksonov | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. | |
* | |
*/ | |
<<<<<<< HEAD | |
import React, { | |
Component, | |
PropTypes, | |
} from 'react'; | |
import { | |
Animated, | |
NavigationExperimental, | |
View, | |
} from 'react-native'; | |
import TabBar from './TabBar'; | |
import NavBar from './NavBar'; | |
======= | |
import React, {Component, Animated, PropTypes, StyleSheet, View, NavigationExperimental} from "react-native"; | |
const { | |
AnimatedView: NavigationAnimatedView, | |
Card: NavigationCard | |
} = NavigationExperimental; | |
const { | |
CardStackPanResponder: NavigationCardStackPanResponder, | |
CardStackStyleInterpolator: NavigationCardStackStyleInterpolator | |
} = NavigationCard; | |
import TabBar from "./TabBar"; | |
import NavBar from "./NavBar"; | |
>>>>>>> origin/3.24 | |
import Actions from './Actions'; | |
const { | |
AnimatedView: NavigationAnimatedView, | |
Card: NavigationCard, | |
} = NavigationExperimental; | |
export default class DefaultRenderer extends Component { | |
static propTypes = { | |
navigationState: PropTypes.object, | |
}; | |
static childContextTypes = { | |
navigationState: PropTypes.any, | |
}; | |
constructor(props) { | |
super(props); | |
this.renderCard = this.renderCard.bind(this); | |
this.renderScene = this.renderScene.bind(this); | |
this.renderHeader = this.renderHeader.bind(this); | |
} | |
getChildContext() { | |
return { | |
navigationState: this.props.navigationState, | |
}; | |
} | |
componentDidMount() { | |
this.dispatchFocusAction(this.props); | |
} | |
componentWillReceiveProps(nextProps) { | |
if (nextProps.navigationState !== this.props.navigationState) { | |
this.dispatchFocusAction(nextProps); | |
} | |
} | |
dispatchFocusAction({ navigationState }) { | |
if (!navigationState || navigationState.component || navigationState.tabs) { | |
return; | |
} | |
const scene = navigationState.children[navigationState.index]; | |
Actions.focus({ scene }); | |
} | |
renderCard(/* NavigationSceneRendererProps*/ props) { | |
const { key, direction, panHandlers, getSceneStyle } = props.scene.navigationState; | |
const optionals = {}; | |
if (getSceneStyle) optionals.style = getSceneStyle(props); | |
return ( | |
<NavigationCard | |
{...props} | |
key={`card_${key}`} | |
direction={direction || 'horizontal'} | |
panHandlers={panHandlers} | |
renderScene={this.renderScene} | |
{...optionals} | |
/> | |
); | |
} | |
renderScene(props: Object) { | |
return ( | |
<DefaultRenderer | |
key={props.scene.navigationState.key} | |
navigationState={props.scene.navigationState} | |
/> | |
); | |
} | |
renderHeader(props) { | |
const state = props.navigationState; | |
const child = state.children[state.index]; | |
let selected = state.children[state.index]; | |
while (selected.hasOwnProperty('children')) { | |
selected = selected.children[selected.index]; | |
} | |
if (state.hideNavBar || selected.hideNavBar || child.hideNavBar) { | |
return null; | |
} | |
if (selected.component && selected.component.renderNavigationBar) { | |
return selected.component.renderNavigationBar({ ...props, ...selected }); | |
} | |
const HeaderComponent = selected.navBar || child.navBar || state.navBar || NavBar; | |
const navBarProps = { ...state, ...child, ...selected }; | |
if ((selected.leftTitle || selected.leftButtonImage) && selected.onLeft) { | |
delete navBarProps.leftButton; | |
} | |
<<<<<<< HEAD | |
if ((selected.rightTitle || selected.rightButtonImage) && selected.onRight) { | |
delete navBarProps.rightButton; | |
} | |
if (selected.rightButton) { | |
delete navBarProps.rightTitle; | |
delete navBarProps.onRight; | |
delete navBarProps.rightButtonImage; | |
} | |
if (selected.leftButton) { | |
delete navBarProps.leftTitle; | |
delete navBarProps.onLeft; | |
delete navBarProps.leftButtonImage; | |
======= | |
render() { | |
const navigationState = this.props.navigationState; | |
if (!navigationState) { | |
return null; | |
} | |
let Component = navigationState.component; | |
if (navigationState.tabs && !Component) { | |
Component = TabBar; | |
} | |
if (Component) { | |
return ( | |
<View style={[{flex: 1}, navigationState.sceneStyle]}> | |
<Component {...navigationState} navigationState={navigationState}/> | |
</View> | |
) | |
} | |
const selected = navigationState.children[navigationState.index]; | |
//return <DefaultRenderer key={selected.key} navigationState={selected}/> | |
let applyAnimation = selected.applyAnimation || navigationState.applyAnimation; | |
let style = selected.style || navigationState.style; | |
let optionals = {}; | |
if (applyAnimation) { | |
optionals.applyAnimation = applyAnimation; | |
} else { | |
let duration = selected.duration; | |
if (duration === null || duration === undefined) duration = navigationState.duration; | |
if (duration !== null && duration !== undefined) { | |
optionals.applyAnimation = function (pos, navState) { | |
if (duration === 0) { | |
pos.setValue(navState.index); | |
} else { | |
Animated.timing(pos, {toValue: navState.index, duration}).start(); | |
} | |
}; | |
} | |
} | |
return ( | |
<NavigationAnimatedView | |
navigationState={navigationState} | |
style={[styles.animatedView, style]} | |
renderOverlay={this._renderHeader} | |
renderScene={this._renderCard} | |
{...optionals} | |
/> | |
); | |
} | |
_renderHeader(/*NavigationSceneRendererProps*/ props) { | |
return <NavBar | |
{...props} | |
getTitle={state => state.title} | |
/>; | |
} | |
_renderCard(/*NavigationSceneRendererProps*/ props) { | |
const {key, direction, getSceneStyle} = props.scene.navigationState; | |
let {panHandlers, animationStyle} = props.scene.navigationState; | |
// Since we always need to pass a style for the direction, we can avoid #526 | |
let style = {}; | |
if (getSceneStyle) style = getSceneStyle(props); | |
const isVertical = direction === "vertical"; | |
if (typeof(animationStyle) === 'undefined') { | |
animationStyle = (isVertical ? | |
NavigationCardStackStyleInterpolator.forVertical(props) : | |
NavigationCardStackStyleInterpolator.forHorizontal(props)); | |
} | |
if (typeof(panHandlers) === 'undefined') { | |
panHandlers = panHandlers || (isVertical ? | |
NavigationCardStackPanResponder.forVertical(props) : | |
NavigationCardStackPanResponder.forHorizontal(props)); | |
} | |
return ( | |
<NavigationCard | |
{...props} | |
key={'card_' + key} | |
style={[animationStyle, style]} | |
panHandlers={panHandlers} | |
renderScene={this._renderScene} | |
/> | |
); | |
>>>>>>> origin/3.24 | |
} | |
delete navBarProps.style; | |
const getTitle = selected.getTitle || (opts => opts.title); | |
return <HeaderComponent {...props} {...navBarProps} getTitle={getTitle} />; | |
} | |
render() { | |
const navigationState = this.props.navigationState; | |
if (!navigationState) { | |
return null; | |
} | |
let SceneComponent = navigationState.component; | |
if (navigationState.tabs && !SceneComponent) { | |
SceneComponent = TabBar; | |
} | |
if (SceneComponent) { | |
return ( | |
<View | |
style={[{ flex: 1 }, navigationState.sceneStyle]} | |
> | |
<SceneComponent | |
{...navigationState} | |
navigationState={navigationState} | |
/> | |
</View> | |
); | |
} | |
const optionals = {}; | |
const selected = navigationState.children[navigationState.index]; | |
const applyAnimation = selected.applyAnimation || navigationState.applyAnimation; | |
const style = selected.style || navigationState.style; | |
let direction = selected.direction || navigationState.direction || 'horizontal'; | |
if (applyAnimation) { | |
optionals.applyAnimation = applyAnimation; | |
} else { | |
let duration = selected.duration; | |
if (duration === null || duration === undefined) duration = navigationState.duration; | |
if (duration !== null && duration !== undefined) { | |
optionals.applyAnimation = (pos, navState) => { | |
Animated.timing(pos, { toValue: navState.index, duration }).start(); | |
}; | |
} | |
} | |
return ( | |
<NavigationAnimatedView | |
navigationState={navigationState} | |
style={[ | |
{ | |
flex: 1, | |
backgroundColor: 'transparent', | |
}, | |
style, | |
]} | |
renderOverlay={this.renderHeader} | |
direction={direction} | |
renderScene={this.renderCard} | |
{...optionals} | |
/> | |
); | |
} | |
<<<<<<< HEAD | |
} | |
======= | |
const styles = StyleSheet.create({ | |
animatedView: { | |
flex: 1, | |
backgroundColor: "transparent" | |
}, | |
}); | |
>>>>>>> origin/3.24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment