Created
October 5, 2019 20:56
-
-
Save gmerabishvili/4de7c30865774c8bd64b0c4204a26d66 to your computer and use it in GitHub Desktop.
Audio player app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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