Skip to content

Instantly share code, notes, and snippets.

@gmerabishvili
Created October 5, 2019 20:56
Show Gist options
  • Save gmerabishvili/4de7c30865774c8bd64b0c4204a26d66 to your computer and use it in GitHub Desktop.
Save gmerabishvili/4de7c30865774c8bd64b0c4204a26d66 to your computer and use it in GitHub Desktop.
Audio player app
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})
export class HomeComponent implements OnInit {
error$ = new Subject<string>();
artists$: Observable<Song> = this._apiService.artists$
.pipe(
finalize(() => {
this._loadingService.hide();
}),
catchError(error => {
this.error$.next(error);
return of(null);
}));
constructor(private _apiService: ApiService,
private _loadingService: LoadingService) {}
ngOnInit() {
this._loadingService.show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment