我正在开发一个使用复合实验导航(CardStack + Tabs)和redux进行状态管理的本机应用程序。我能够创建基于Tab的导航,但我现在面临的问题是当我在选项卡之间切换时,组件已卸载并且每次都重新渲染。
问题
让我们说我已经滚动了几个帖子,当我更改Tab时,它将从顶部开始。 (解决方法可能是在redux状态下存储滚动位置)。
以下是我用于导航Tabbed Experimental Navigation
的示例代码答案 0 :(得分:4)
您必须更改TabBar的方法。
基本上你需要每个选项卡的导航器,所以你可以为每个选项卡和一个导航器添加路由堆栈以包含选项卡(TabBar)。您还需要为TabBar设置初始路径堆栈并在这些路径之间跳转。
了解Navigator方法之间的区别非常重要。
当您pop
路由时,它已卸载,活动索引将移至
最后一个。由于最后一个保持在状态,它将恢复原样
以前渲染(很可能,它可以发生道具改变)。再次前往popped
路线将完全重新渲染场景(这种情况发生在你身上)。
当你push
路线时,没有卸载任何东西,就会安装新路线。
当你jumpToIndex
路线时,再没有任何未装入的东西,因此跳跃了
路线之间恢复原样(再次,如果道具改变了
场景将被重新渲染。
所以,我不认为这是正确的:
我能够创建基于Tab的导航,但我现在面临的问题是当我在标签之间切换时,组件已卸载并且每次都重新渲染。
...您使用错误的导航操作卸载路由。
现在又有什么不同,NavigationCardStack
实际上没有创建它自己的状态,它是从外部传递的,这给了你很大的灵活性。同样好的是你可以使用Facebook提供的Reducer进行常见操作(例如push,pop,jumpToIndex;它们是Navigation Utils的一部分)。
您有关于如何创建navigationState
及其缩减器here的完整示例,因此我不打算解释这一点,只是想知道如何解决您的问题。
import React from 'react';
import { NavigationExperimental, View, Text, StyleSheet } from 'react-native';
const {
CardStack: NavigationCardStack,
StateUtils: NavigationStateUtils,
} = NavigationExperimental;
const style = StyleSheet.create({
screen: {
flex: 1,
},
screenTitle: {
marginTop: 50,
fontSize: 18,
},
pushNewScreenLabel: {
marginVertical: 10,
fontSize: 15,
fontWeight: "bold",
},
goBackLabel: {
fontSize: 15,
},
tabBarWrapper: {
position: 'absolute',
height: 50,
bottom: 0,
left: 0,
right: 0,
top: null,
backgroundColor: 'grey',
flexDirection: 'row',
flex: 0,
alignItems: 'stretch',
},
tabBarItem: {
flex: 1,
justifyContent: 'center',
backgroundColor: 'red',
},
});
export class TabBar extends React.Component {
constructor(props, context) {
super(props, context);
this.jumpToTab = this.jumpToTab.bind(this);
// Create state
this.state = {
navigationState: {
// Active route, will be rendered as default
index: 0,
// "tab-s" represents route objects
routes: [
{ name: 'Tab1', key: '1' },
{ name: 'Tab2', key: '2' },
{ name: 'Tab3', key: '3' },
{ name: 'Tab4', key: '4' }],
},
};
}
jumpToTab(tabIndex) {
const navigationState = NavigationStateUtils.jumpToIndex(this.state.navigationState, tabIndex);
this.setState({ navigationState });
}
renderScene({ scene }) {
return <Tab tab={scene.route} />;
}
render() {
const { navigationState } = this.state;
return (
<View style={style.screen}>
<NavigationCardStack
onNavigate={() => {}}
navigationState={navigationState}
renderScene={this.renderScene}
/>
<View style={style.tabBarWrapper}>
{navigationState.routes.map((route, index) => (
<TabBarItem
key={index}
onPress={this.jumpToTab}
title={route.name}
index={index}
/>
))}
</View>
</View>
);
}
}
class TabBarItem extends React.Component {
static propTypes = {
title: React.PropTypes.string,
onPress: React.PropTypes.func,
index: React.PropTypes.number,
}
constructor(props, context) {
super(props, context);
this.onPress = this.onPress.bind(this);
}
onPress() {
this.props.onPress(this.props.index);
}
render() {
return (
<Text style={style.tabBarItem} onPress={this.onPress}>
{this.props.title}
</Text>);
}
}
class Tab extends React.Component {
static propTypes = {
tab: React.PropTypes.object,
}
constructor(props, context) {
super(props, context);
this.goBack = this.goBack.bind(this);
this.pushRoute = this.pushRoute.bind(this);
this.renderScene = this.renderScene.bind(this);
this.state = {
navigationState: {
index: 0,
routes: [{ key: '0' }],
},
};
}
// As in TabBar use NavigationUtils for this 2 methods
goBack() {
const navigationState = NavigationStateUtils.pop(this.state.navigationState);
this.setState({ navigationState });
}
pushRoute(route) {
const navigationState = NavigationStateUtils.push(this.state.navigationState, route);
this.setState({ navigationState });
}
renderScene({ scene }) {
return (
<Screen
goBack={this.goBack}
goTo={this.pushRoute}
tab={this.props.tab}
screenKey={scene.route.key}
/>
);
}
render() {
return (
<NavigationCardStack
onNavigate={() => {}}
navigationState={this.state.navigationState}
renderScene={this.renderScene}
/>
);
}
}
class Screen extends React.Component {
static propTypes = {
goTo: React.PropTypes.func,
goBack: React.PropTypes.func,
screenKey: React.PropTypes.string,
tab: React.PropTypes.object,
}
constructor(props, context) {
super(props, context);
this.nextScreen = this.nextScreen.bind(this);
}
nextScreen() {
const { goTo, screenKey } = this.props;
goTo({ key: `${parseInt(screenKey) + 1}` });
}
render() {
const { tab, goBack, screenKey } = this.props;
return (
<View style={style.screen}>
<Text style={style.screenTitle}>
{`Tab ${tab.key} - Screen ${screenKey}`}
</Text>
<Text style={style.pushNewScreenLabel} onPress={this.nextScreen}>
Push Screen into this Tab
</Text>
<Text style={style.goBackLabel} onPress={goBack}>
Go back
</Text>
</View>
);
}
}
## TBD更加清理..