33 lines
842 B
TypeScript
33 lines
842 B
TypeScript
import {Component, OnInit} from 'angular2/core';
|
|
import {Router} from 'angular2/router';
|
|
import {HeroService} from './hero.service';
|
|
import {HeroDetailComponent} from './hero-detail.component';
|
|
import {Hero} from './hero';
|
|
|
|
@Component({
|
|
selector: 'my-heroes',
|
|
templateUrl: 'app/heroes.component.html',
|
|
styleUrls: ['app/heroes.component.css'],
|
|
directives: [HeroDetailComponent]
|
|
})
|
|
export class HeroesComponent implements OnInit {
|
|
heroes: Hero[];
|
|
selectedHero: Hero;
|
|
|
|
constructor(private _heroService: HeroService, private _router: Router) { }
|
|
|
|
getHeroes() {
|
|
this._heroService.getHeroes().then(heroes => this.heroes = heroes);
|
|
}
|
|
|
|
gotoDetail() {
|
|
this._router.navigate(['HeroDetail', { id: this.selectedHero.id }]);
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.getHeroes();
|
|
}
|
|
|
|
onSelect(hero: Hero) { this.selectedHero = hero; }
|
|
}
|