Skip to content

Instantly share code, notes, and snippets.

@mfp22
Last active March 23, 2021 07:51
Show Gist options
  • Save mfp22/31572a60f1d4df4a4f2ef845831060b9 to your computer and use it in GitHub Desktop.
Save mfp22/31572a60f1d4df4a4f2ef845831060b9 to your computer and use it in GitHub Desktop.
@Effect getUsers$ = this.actions$.pipe(
ofType('GET_USERS'),
withLatestFrom(this.userSelectors.needUsers$),
filter(([action, needUsers]) => needUsers),
switchMap(() => this.getUsers()),
map(users => ({type: 'RECEIVE_USERS', users})),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment