import { Observable, of, EMPTY } from 'rxjs';
import { Hero } from './hero';
import { HEROES } from './mock-heroes';
-import { HttpClient } from '@angular/common/http';
+import { HttpClient, HttpHeaders } from '@angular/common/http';
import { MessageService } from './message.service';
+import { catchError } from 'rxjs/operators';
@Injectable({
getHeroes(): Observable<Hero[]> {
this.log('fetching heroes...');
- return this.http.get<Hero[]>(this.heroesUrl);
+ return this.http
+ .get<Hero[]>(this.heroesUrl)
+ .pipe(
+ catchError(this.handleError<Hero[]>('getHeroes', []))
+ );
}
getHero(id: number): Observable<Hero> {
}
}
+ /**
+ * Handle Http operation that failed.
+ * Let the app continue.
+ * @param operation - name of the operation that failed
+ * @param result - optional value to return as the observable result
+ */
+ private handleError<T>(operation = 'operation', result?: T) {
+ return (error: any): Observable<T> => {
+
+ // TODO: send the error to remote logging infrastructure
+ console.error(error); // log to console instead
+
+ // TODO: better job of transforming error for user consumption
+ this.log(`${operation} failed: ${error.message}`);
+
+ // Let the app keep running by returning an empty result.
+ return of(result as T);
+ };
+ }
+
/** Log a HeroService message with the MessageService */
private log(message: string) {
this.messageService.add(`HeroService: ${message}`);