I'm looking for way of dispatching multiple redux actions in a single Epic of redux-observable
middleware.
Let's assume I have following Epic. Everytime when SEARCH
event happens, Epic loads data from backend and dispatches RESULTS_LOADED
action.
searchEpic = (action$) =>
action$
.ofType('SEARCH')
.mergeMap(
Observable
.fromPromise(searchPromise)
.map((data) => {
return {
type: 'RESULTS_LOADED',
results: data
}
})
)
Now, let's assume that I need dispatch additional action when the searchPromise
is resolved.
The simplest way of doing so seems to have a second epic that will listen to RESULTS_LOADED
and dispatch the second action. Like so:
resultsLoadedEpic = (action$) =>
action$
.ofType('RESULTS_LOADED')
.map(({results} => {
return {
type: 'MY_OTHER_ACTION',
results
}
})
In this simple example it's quite easy. But when Epics grow, I tend to find myself having a lot of redux actions which sole purpose is to trigger other actions. Additionally, some of the rxjs code needs to be repeated. I find this a bit ugly.
So, my question: Is there a way to dispatch multiple redux actions in a single Epic?
question from:
https://stackoverflow.com/questions/40886655/redux-observable-dispatch-multiple-redux-actions-in-a-single-epic 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…