admin管理员组

文章数量:1395893

How should I implement in redux following logic: There a 2 actions: sync and async. Let say its validate() and save(). When user clicks buttons validate() performed and it changes some isValid variable in state store. Then if isValid save action performed.

How should I implement in redux following logic: There a 2 actions: sync and async. Let say its validate() and save(). When user clicks buttons validate() performed and it changes some isValid variable in state store. Then if isValid save action performed.

Share Improve this question edited Apr 24, 2016 at 15:50 xander27 asked Apr 24, 2016 at 14:33 xander27xander27 3,1248 gold badges32 silver badges45 bronze badges 4
  • You should perform saveAction when validate happens, and use that to modify both isValid variable and other variables in reducers. No real use in waiting for isValid variable to be set to true. – Bhargav Ponnapalli Commented Apr 24, 2016 at 15:04
  • @bhargavponnapalli the problem is second action is async (react-thunk), so it can't be just bined with first. – xander27 Commented Apr 24, 2016 at 15:17
  • You can perhaps validate within the async action, instead of a separate validate action. Just an idea. – Bhargav Ponnapalli Commented Apr 24, 2016 at 15:59
  • Not an answer to the question but a friendly tip: As you're using Redux I'd strongly remend you taking a look at Redux Sagas ( github./yelouafi/redux-saga ). It's a small learning curve but once you got a hang of it you'll be creating async/sync actions in no time. – Emil Oberg Commented Apr 24, 2016 at 18:56
Add a ment  | 

2 Answers 2

Reset to default 5

There are many ways to do what you'd like. However, as a general rule, don't store anything in Redux that can be derived. isValid can be derived by running your validation on your field(s). Moreover, I don't think that intermediate state like form field values that are changing belong in Redux. I'd store them in React state until they're considered valid and submitted.

With that out of the way, as Spooner mentioned in a ment, you can call a sync action within a thunk. Or you can access state within the thunk.

Option #1

// Action Creator
export default function doSomething(isValid) {
    return (dispatch) => {

        dispatch(setValid(isValid));

        if (isValid) {
            return fetch() //... dispatch on success or failure
        }
    };
}

Option #2

// Component
dispatch(setValid(isValid));
dispatch(doSomething());

// Action Creator
export default function doSomething() {
    return (dispatch, getState) => {

        const isValid = getState().isValid;

        if (isValid) {
            return fetch() //... dispatch on success or failure
        }
    };
}

You can 'wrap' those functions in 'click handler'.

//call it on button click

handleClick = () => {
  if (validate()) {
    //call save function
    save()
  }
}

validate = () => {
  //do something
  //check validness and then
  if (valid) return true 
}

本文标签: javascriptRedux call action after other action if conditionStack Overflow