I've my loggerService and I need to catch all errors in reducer and send it via my service to the server.
How can I do it? I know that reducer should be a pure function, but still any ideas?
I need to add in reduser try catch
case actions.GAMES_LOADED{
......
try{}
catch(err){
this.loggerService.error(err);
}
}
Or maybe throw something in reducer and catch it in some place...
Thanks a lot
Short answer: You don't.
Why? - The reducer is only responsible for updating the store, it should not perform any business-logic or validate data - any data that reaches the store should be already valid and just be stored/updated/removed from the store.
Possible solution: You should do these kind of operations either in an effect or in some service that is responsible for fetching/creating the data.