web-dev-qa-db-ja.com

Reactレンダリングコンテナの前のreduxディスパッチアクション

私はReact-reduxアプリケーションの開発に非常に慣れていないので、ページが読み込まれるとすぐに別のアクションをディスパッチする方法を理解しようとしています。以下は私のコンテナコードです。私はこれ( https://github.com/jpsierens/webpack-react-redux )ボイラープレートを使用しています。

let locationSearch;

const ActivationPage = ({activateUser}) => {
    return (
        <div className="container">
          <h2>Activation Required</h2>
          <p>An Activation Email was sent to your email address. Please check your inbox to find the activation link</p>
          { activateUser() }
        </div>
    );
};


ActivationPage.propTypes = {
    activateUser: PropTypes.func
};


const mapStateToProps = (state) => {
    return {
        message: state.message,
        currentUser: state.currentUser,
        request: state.request
    };
};

const mapDispatchToProps = (dispatch) => {
    return {
        activateUser: () => {
            console.log(location);
            if (location.search !== '') {
                locationSearch = querystring.parse(location.search.replace('?', ''));
                console.log(locationSearch);
                if (locationSearch.hasOwnProperty('user_id') && locationSearch.hasOwnProperty('activation_code')) {
                    // change request state to pending to show loader
                    dispatch(actions.requestActions.requestPending());

                }
            }
        }
    };
};

export default connect(
    mapStateToProps,
    mapDispatchToProps
)(ActivationPage);

このコードは私に警告:setState(…):おそらくレンダリング関数(IDK)中にアクションをディスパッチしているため、既存の状態遷移中に更新できません 。ページが読み込まれるとすぐに、指定されたコードを変換して、activateUser()関数を自動的にトリガーするにはどうすればよいですか。

7
Saad Anjum

https://facebook.github.io/react/docs/react-component.html

componentWillMount()およびcomponentDidMount()。そして私の意見-componentWillMountの使用を避け、componentDidMountを好むべきです-これは、いつかサーバーレンダリングを使用する場合には理にかなっています

5
Yozi

コンポーネントをclass which extends Componentに変換した後、機能するようになりました。ここでのこの回答は、いくつかの概念に役立ちました componentDidMount()とreact-redux connect( )? 以下は、私がそうであったようにこれについて混乱するかもしれない人々のための実装です。

import React, { Component, PropTypes } from 'react';
import { connect } from 'react-redux';
import actions from '../actions';

let locationSearch;

class ActivationPage extends Component {
    constructor(props) {
        super(props);
    }

    componentDidMount() {
        this.props.activateUser();
    }

    render() {
        return (
        <div className="container">
           <h2>Activation Required</h2>
           <p>An Activation Email was sent to your email address. Please check your inbox to find the activation link</p>
        </div>
        );
    }
}

ActivationPage.propTypes = {
    activateUser: PropTypes.func
};

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

const mapDispatchToProps = (dispatch) => {
    return {
        activateUser: () => {
            if (location.search !== '') {
                locationSearch = querystring.parse(location.search.replace('?', ''));
                if (locationSearch.hasOwnProperty('user_id') && locationSearch.hasOwnProperty('activation_code')) {
                    // change request state to pending to show loader
                    dispatch(actions.requestActions.requestPending());
                }
             }
        }
    };
};

export default connect(
    mapStateToProps,
    mapDispatchToProps
)(ActivationPage);
2
Saad Anjum