Skip to content

Instantly share code, notes, and snippets.

@kobvel
Last active January 16, 2018 22:12
Show Gist options
  • Save kobvel/5c583185e23826cd3603d511ef2dfee2 to your computer and use it in GitHub Desktop.
Save kobvel/5c583185e23826cd3603d511ef2dfee2 to your computer and use it in GitHub Desktop.
initProfileData(): void {
this.store.take(1).subscribe(store => {
if (!store.profile.profileData) {
this.apiService.getProfileData().toPromise()
.then(data => {
this.store.dispatch(new profileActions.UpdateAction(data));
})
.catch(err => {
this.router.navigate(['/404'])
});
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment