I am trying to write Epic for redux-observable. But I am having a problem (
ON_EMPTY_FORM_STATE
action is executed before .map(response => formSavedAction(response))
is executed.
How can I fix it? Basically what I am trying to get is:
- Capture
FORM_SEND
action - Send Ajax request with payload
- If i get 200 response from server then execute
formSavedAction(response)
- If i get 500 error then dispatch
{ type: ON_FORM_SUBMIT_ERROR }
- At the end (no matter what Ajax request returned) I want to dispatch action
{ type: EMPTY_FORM_STATE }
And here is my code:
const saveProductEpic = (action$, $store) =>
action$.ofType(SUBMIT_FORM)
.mergeMap(action => ajax.post('http://localhost:9000/products', action.payload,
{ 'Content-Type': 'application/json' }))
.map(response => formSavedAction(response))
.catch(err => { $store.dispatch({ type: ON_FORM_SUBMIT_ERROR }) })
.do(() => { $store.dispatch({ type: EMPTY_FORM_STATE }) })
The issue is that action { type: EMPTY_FORM_STATE }
is dispatched Before
and not after AJAX request.
Is there any way to fix this?