Skip to content

Instantly share code, notes, and snippets.

@whisher
Created June 19, 2019 19:05
Show Gist options
  • Save whisher/b637bbdb4e82c7f80cb8cd1c9579b4d2 to your computer and use it in GitHub Desktop.
Save whisher/b637bbdb4e82c7f80cb8cd1c9579b4d2 to your computer and use it in GitHub Desktop.
checkStore(): Observable<boolean> {
return this.store.select(fromStore.selectDishesLoaded).pipe(
tap(loaded => {
if (!loaded) {
this.store.dispatch(new fromStore.LoadDishes());
}
}),
take(1)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment