28 lines
633 B
TypeScript
28 lines
633 B
TypeScript
// #docplaster
|
|
// #docregion imports
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { Hero } from './hero';
|
|
import { HeroService } from './hero.service';
|
|
// #enddocregion imports
|
|
|
|
@Component({
|
|
moduleId: module.id,
|
|
selector: 'my-dashboard',
|
|
templateUrl: 'dashboard.component.html'
|
|
})
|
|
// #docregion component
|
|
export class DashboardComponent implements OnInit {
|
|
|
|
heroes: Hero[] = [];
|
|
|
|
constructor(private heroService: HeroService) { }
|
|
|
|
ngOnInit(): void {
|
|
this.heroService.getHeroes()
|
|
.then(heroes => this.heroes = heroes.slice(1, 5));
|
|
}
|
|
|
|
gotoDetail(hero: Hero): void { /* not implemented yet */}
|
|
}
|