基于redux状态有条件地在组件中调用函数的方式和位置

时间:2019-07-04 12:33:36

标签: javascript reactjs redux

我有一个组件,而在我的组件中,我有一些子组件。

在我的父组件中,我有一些功能,我想从子组件中触发它。所以我用redux做到了。

这是我的父组件:

   import React, { Component } from "react";
    import { withRouter } from "react-router-dom";
    import { bindActionCreators } from "redux";
    import { splashStop } from "store/actions/Home/splashStop";

import { connect } from "react-redux";

class Home extends Component {
  constructor(props) {
    super(props);
    this.state = {
    };
    this.goPage = this.goPage.bind(this);
  }

  componentDidMount() {
  }

  goPage = () => {
     this.props.history.push("/agencies");
  };

  render() {
    if (this.props.homeSplash.splashStart == true) {
      myTime.play();
    }
    return (
      <div>
         <ChildComponent />
      </div>
    );
  }
}

const mapStateToProps = state => ({
  homeSplash: state.homeSplash
});

function mapDispatchToProps(dispatch) {
  return {
    splashStop: bindActionCreators(splashStop, dispatch)
  };
}

export default connect(
  mapStateToProps,
  mapDispatchToProps
)(withRouter(Home));

这是我的孩子部分:

这是我在onClick函数的子组件中分配的Redux操作:

  triggerSplash = () => {
    this.props.splashStart();
  };

我的动作:

export const START_SPLASH =   “ START_SPLASH”;

export const splashStart = () => {
    return dispatch => {
        dispatch({
            type: START_SPLASH,
            payload: true
          });
    };
  };

和我的减速器:

import { START_SPLASH } from "store/actions/Home/splashStart";

let initialState = {
  splashStart: false
};

export default (state = initialState, action) => {
  switch (action.type) {
    case START_SPLASH:
      return { ...state, splashStart: action.payload };
    default:
      return state;
  }
};

我的减速器,动作正常。

我想知道为什么myTime.play();总是在组件安装时总是工作,根本不在乎此控件:

if (this.props.homeSplash.splashStart == true) {
          myTime.play();
        }

我把它放到错误的地方还是什么?

1 个答案:

答案 0 :(得分:0)

在您的redux结构中,似乎一切正常。但是您还应该提供childComponent使其更加清晰。
如果您在子组件中正确连接了redux操作,请尝试以下操作:

<button ... onClick={() => this.triggerSplash()}>Click</button>

onClick内放置箭头功能。因为在组件初始化中,所有组件函数都会在渲染时自动调用。