javascript - 如何使用react-native-tab-view显示动态选项卡?

标签 javascript reactjs react-native react-native-tab-view

我一直在尝试使用 react-native-tab-view 显示动态选项卡,但它一直给我这个错误:

Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.

Check the render method of `SceneComponent`.

This error is located at:
    in SceneComponent (at SceneMap.js:16)
    in RCTView (at View.js:43)
    in AndroidViewPager (at ViewPagerAndroid.android.js:247)
    in ViewPagerAndroid (at PagerAndroid.js:154)
    in PagerAndroid (at TabView.js:59)
    in RCTView (at View.js:43)
    in RCTView (at View.js:43)
    in TabView (at UnderlineTabbar.js:76)

我的代码是:

import * as React from 'react';
import { StyleSheet, Dimensions, View } from 'react-native';
import {
  TabView,
  TabBar,
  SceneMap,
  type Route,
  type NavigationState,
} from 'react-native-tab-view';
import LinearGradient from 'react-native-linear-gradient';
import CategoryPage from './CategoryPage';
import GestureRecognizer, {swipeDirections} from 'react-native-swipe-gestures';
import ButtonWithIcon from '../../components/ButtonWithIcon';

type State = NavigationState<
  Route<{
    key: string,
    title: string,
  }>
>;

const initialLayout = {
  height: 0,
  width: Dimensions.get('window').width,
};

export default class UnderlineTabbar extends React.Component<*, State> {

  constructor(props) {
      super(props);

      this.state = {
        index: 0,
        routes: [],
        scenes: {}
      };
      props.categories.forEach(category => {
        this.state.routes.push({ key: category.description, title: category.name });
      });
      let scenes = {};
      props.categories.forEach(category => {
        if(category.assets.length > 0) {
          const FirstRoute = () => (
            <View style={[styles.container, { backgroundColor: '#ff4081' }]} />
          );
          scenes[category.description] = FirstRoute;
        }
      });
      this.state.scenes = scenes;
  }

  _handleIndexChange = index =>
    this.setState({
      index,
    });

  _renderTabBar = props => (
    <TabBar
      {...props}
      scrollEnabled
      indicatorStyle={styles.indicator}
      style={styles.tabbar}
      tabStyle={styles.tab}
      labelStyle={styles.label}
    />
  );

  render() {
    const config = {
      velocityThreshold: 0.1,
      directionalOffsetThreshold: 800
    };
    return (
      <TabView
        style={[styles.container, this.props.style]}
        navigationState={this.state}
        renderScene={SceneMap(this.state.scenes)}
        renderTabBar={this._renderTabBar}
        onIndexChange={this._handleIndexChange}
        initialLayout={initialLayout}
      />
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
  },
  tabbar: {
    backgroundColor: '#3f51b5',
  },
  tab: {
    width: 120,
  },
  indicator: {
    backgroundColor: '#ffeb3b',
  },
  label: {
    color: '#fff',
    fontWeight: '400',
  },
});

最佳答案

对于动态选项卡,仅在满足条件后设置路由值:

例如:我必须根据 api 响应中数据的可用性设置 Review、Gallery 选项卡: 示例:

 this.state = {
  index: 0,
  routes: []
}
 ------------------

<TabView
      navigationState={this.state}
      renderScene={this.renderScene}
      renderTabBar={this.renderTabBar}
      onIndexChange={index => {
        this.setState({ index });
      }}
      swipeEnabled={false}
    />
-------------------------


 setRoutes() {
 let tabArray=[];
 if(......condition...){
 tabArray.push({key:"Gallery",title:"Gallery",navigation: this.props.navigation})
 }
 if(......condition...){
 tabArray.push({key:"Review",title:"Review",navigation: this.props.navigation})
 }
 //set route here
 this.setState({
  routes: tabArray
 });
 }

就是这样!!

关于javascript - 如何使用react-native-tab-view显示动态选项卡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52146831/

相关文章:

javascript - 将 React 状态值与 HTML 标签连接起来

reactjs - 如何在 ReactJS 中设置或清除 material-ui Input 的值

android - 如何使用 native react 从相机胶卷中获取随机图像?

javascript - 当用于另一个网站中的单页应用程序时,AngularJS 应用程序会破坏后退按钮

object - 添加js方法

javascript - Node.js、puppeteer 和延迟加载

javascript - iPhone 不遵守 map 高度规范

javascript - 页眉/页脚之间的内容

javascript - react _this2.setState 不是函数 - 可能的绑定(bind)问题

java - 如何通过React Native中的 Intent 启动并接收另一个应用程序的输出?