react条件渲染和导航栏

IT技术 javascript reactjs react-native
2021-05-16 21:53:07

我正在通过主渲染函数中的状态和 switch 语句控制应在我的应用程序屏幕上显示的组件。我正在用 react-native 写这个,但这是一个react结构问题。

我还有一个 Navbar 组件,我希望只在用户单击 Navbar 本身中的链接时才重新渲染,但我不知道现在如何设置 switch 语句的好方法,它似乎我每次都必须根据状态满足的条件重新渲染导航栏。

我的问题是,有没有一种方法可以让我仍然可以在渲染方法中使用组件的条件渲染,就像我在下面一样,并且有一个组件总是像导航栏一样呈现在屏幕顶部?我知道这可以通过 React Router 之类的东西实现,但是有没有更好的方法来构建它而不使用像 React Router 这样的工具或每次都必须重新渲染 NavBar 组件?

import React from 'react';

import GPS from './GPS/gps';
import Home from './Home';
import Photo from './Camera/Photo';

export default class App extends React.Component {
  constructor() {
    super();

    this.state = {
      hasCameraPermission: null,
      type: Camera.Constants.Type.back,
      currentView: null,
      currentImage: null,
      navigation: 'Overview'
    };

    this.updateNavigation = this.updateNavigation.bind(this);
  }

  updateNavigation(view) { //Update view function
    this.setState({currentView: view});
  }


  render() {
    const { currentView } = this.state;

    switch(currentView) {
      case null:
      return (
        <Home updateNav={this.updateNavigation} />
        );
        break;

      case 'GPS':
      return (
        <View>
          <GPS />
          <Text onPress={() => this.setState({currentView: null})}>Back</Text>
        </View>
      );
        break;

      case 'Camera':
      return (
          <Photo updateNav={this.updateNavigation} />
       );
       break;

       case 'viewPicture':
       return (
        <View>
          <Image source={{uri: this.state.currentImage.uri}} style={{width: this.state.currentImage.width/10, height: this.state.currentImage.height/12}} />
        </View>
       );
       break;

    }
  }
}

1个回答

始终保持渲染尽可能干净。

您可以使用 && 运算符来执行相同的操作,而不是使用 switch case。使用 && 运算符并检查每个案例并相应地呈现。检查下面的代码以更好地理解。

render() {
    const { currentView } = this.state;
    return(
      {currentView == null && (
        <Home updateNav={this.updateNavigation} />
        )}
      {currentView == "GPS" && (
        <View>
          <GPS />
          <Text onPress={() => this.setState({currentView: null})}>Back</Text>
        </View>
        )}

      {currentView == "Camera" && (
        <View>
          <Photo updateNav={this.updateNavigation} />
        </View>
        )}

      {currentView == "viewPicture" && (
        <View>
          <Image source={{uri: this.state.currentImage.uri}} style={{width: this.state.currentImage.width/10, height: this.state.currentImage.height/12}} />
        </View>
        )}
    )

  }