You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
They're all first emit startWorkingProgress action to show global working UI state and then they actually do the work and emit resulting actions. But I was thinking if we could have some simplified method for it, like:
loadPageBlocksApi$ = createEffect(
loadPageBlocksApi, // action type
select(fromLangs.getCurrentLang), // state selector (optional)
(actionProps, stateSelectorResult) => { ... some pre-processing },
[ one_or_more_actions_to_dispatch... ] // actions to dispatch (and their params are set based on the previous func results
);
then we wouldn't probably deal with all these RxJS multiple operators.
Well, just an idea - to create a simplified syntax for splitters and maybe aggregators.
The text was updated successfully, but these errors were encountered:
ngrx 8.2.0, angular 8.2.0
I have these kind of effects all over the place:
They're all first emit
startWorkingProgress
action to show global working UI state and then they actually do the work and emit resulting actions. But I was thinking if we could have some simplified method for it, like:The text was updated successfully, but these errors were encountered: