react / redux-form:如何从onSubmit返回promise?

时间:2016-01-08 19:57:00

标签: javascript forms reactjs redux redux-form

我正试图绕过reduxreact-reduxredux-form

我已经设置了一个商店,并从redux-form添加了reducer。我的表单组件如下所示:

LoginForm的

import React, {Component, PropTypes} from 'react'
import { reduxForm } from 'redux-form'
import { login } from '../../actions/authActions'

const fields = ['username', 'password'];

class LoginForm extends Component {
    onSubmit (formData, dispatch) {
        dispatch(login(formData))
    }

    render() {
        const {
            fields: { username, password },
            handleSubmit,
            submitting
            } = this.props;

        return (
            <form onSubmit={handleSubmit(this.onSubmit)}>
                <input type="username" placeholder="Username / Email address" {...username} />
                <input type="password" placeholder="Password" {...password} />
                <input type="submit" disabled={submitting} value="Login" />
            </form>
        )
    }
}
LoginForm.propTypes = {
    fields: PropTypes.object.isRequired,
    handleSubmit: PropTypes.func.isRequired,
    submitting: PropTypes.bool.isRequired
}

export default reduxForm({
    form: 'login',
    fields
})(LoginForm)

这可以按预期工作,在redux DevTools我可以看到商店如何在表单输入上更新,并在提交表单时login操作创建者调度登录操作。

我将redux-thunk中间件添加到商店并按照redux docs for Async Actions中所述设置操作创建者进行登录:

authActions.js

import ApiClient from '../apiClient'

const apiClient = new ApiClient()

export const LOGIN_REQUEST = 'LOGIN_REQUEST'
function requestLogin(credentials) {
    return {
        type: LOGIN_REQUEST,
        credentials
    }
}

export const LOGIN_SUCCESS = 'LOGIN_SUCCESS'
function loginSuccess(authToken) {
    return {
        type: LOGIN_SUCCESS,
        authToken
    }
}

export const LOGIN_FAILURE = 'LOGIN_FAILURE'
function loginFailure(error) {
    return {
        type: LOGIN_FAILURE,
        error
    }
}

// thunk action creator returns a function
export function login(credentials) {
    return dispatch => {
        // update app state: requesting login
        dispatch(requestLogin(credentials))

        // try to log in
        apiClient.login(credentials)
            .then(authToken => dispatch(loginSuccess(authToken)))
            .catch(error => dispatch(loginFailure(error)))
    }
}

同样,在redux DevTools中,我可以看到它按预期工作。在LoginForm中dispatch(login(formData))中调用onSubmit时,首先调度LOGIN_REQUEST操作,然后调度LOGIN_SUCCESSLOGIN_FAILURELOGIN_REQUEST会向商店添加商品state.auth.pending = trueLOGIN_SUCCESSLOGIN_FAILURE将删除此商家。 (我知道这可能是我使用reselect的东西,但是现在我想保持简单。

现在,在redux-form文档中,我读到我可以从onSubmit返回一个承诺来更新表单状态(submittingerror)。但我不确定这样做的正确方法是什么。 dispatch(login(formData))会返回undefined

我可以将商店中的state.auth.pending标记与state.auth.status之类的变量交换,其值为 required 成功失败(同样,我可能会使用重新选择或类似的东西)。

然后,我可以在onSubmit订阅商店并处理state.auth.status的更改,如下所示:

// ...

class LoginForm extends Component {
    constructor (props) {
        super(props)
        this.onSubmit = this.onSubmit.bind(this)
    }
    onSubmit (formData, dispatch) {
        const { store } = this.context
        return new Promise((resolve, reject) => {
            const unsubscribe = store.subscribe(() => {
                const state = store.getState()
                const status = state.auth.status

                if (status === 'success' || status === 'failure') {
                    unsubscribe()
                    status === 'success' ? resolve() : reject(state.auth.error)
                }
            })
            dispatch(login(formData))
        }).bind(this)
    }

    // ...
}
// ...
LoginForm.contextTypes = {
    store: PropTypes.object.isRequired
}

// ...

但是,这个解决方案感觉并不好,我不确定当应用程序增长并且可能会从其他来源发送更多操作时它是否会始终按预期工作。

我看到的另一个解决方案是将api调用(返回一个promise)移到onSubmit,但我想将它与React组件分开。

对此有何建议?

1 个答案:

答案 0 :(得分:13)

  

dispatch(login(formData))返回undefined

基于the docs for redux-thunk

  

内部函数的任何返回值都将作为dispatch本身的返回值。

所以,你想要像

这样的东西
// thunk action creator returns a function
export function login(credentials) {
    return dispatch => {
        // update app state: requesting login
        dispatch(requestLogin(credentials))

        // try to log in
        apiClient.login(credentials)
            .then(authToken => dispatch(loginSuccess(authToken)))
            .catch(error => dispatch(loginFailure(error)))

        return promiseOfSomeSort;
    }
}