I
I
Im p3l2021-08-21 15:49:53
JavaScript
Im p3l, 2021-08-21 15:49:53

How to make takeEvery for multiple actions and one task in redux-saga?

I have a watcher like this

export default function* watch() {
  yield takeEvery(getProducts, fetchData)
  yield takeEvery(getUser, fetchData)
}


But in this form, it does not work, because fetchData must be run once and only if both getProducts and getUser have completed successfully .

You can somehow pass both actions to takeEvery , or there is an analogue of takeEvery , which can accept two or more actions and execute the fetchData function only after the successful execution of all passed actions?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question