HeroDetailComponent issues a message after successfull retrival of a hero
authorKai Moritz <kai@juplo.de>
Sun, 10 May 2020 20:43:49 +0000 (22:43 +0200)
committerKai Moritz <kai@juplo.de>
Mon, 11 May 2020 16:23:16 +0000 (18:23 +0200)
src/app/hero-detail/hero-detail.component.ts
src/app/hero.service.ts

index 4bbfe2e..76e7912 100644 (file)
@@ -4,6 +4,7 @@ import { Location } from '@angular/common';
 
 import { HeroService } from '../hero.service';
 import { Hero } from '../hero';
+import { MessageService } from '../message.service';
 
 @Component({
   selector: 'app-hero-detail',
@@ -17,6 +18,7 @@ export class HeroDetailComponent implements OnInit {
   constructor(
     private route: ActivatedRoute,
     private heroService: HeroService,
+    private messageService: MessageService,
     private location: Location
   ) { }
 
@@ -28,7 +30,10 @@ export class HeroDetailComponent implements OnInit {
     this.route.params.subscribe(params => {
       const id: number = +params.id;
       this.hero = undefined;
-      this.heroService.getHero(id).subscribe(hero => this.hero = hero);
+      this.heroService.getHero(id).subscribe(hero => {
+        this.messageService.add('HeroDetailComponent: retrived hero ' + JSON.stringify(hero));
+        this.hero = hero;
+      });
     });
   }
 
index 1db6072..649b856 100644 (file)
@@ -18,7 +18,7 @@ export class HeroService {
   }
 
   getHero(id: number): Observable<Hero> {
-    this.messageService.add(`HeroService: fetched hero id=${id}`);
+    this.messageService.add(`HeroService: requested hero id=${id}`);
     const found: Hero | undefined = HEROES.find(hero => hero.id === id);
     if (found === undefined) {
       return EMPTY;