2015-12-16 21:47:02 -05:00
|
|
|
// #docplaster
|
|
|
|
// #docregion
|
|
|
|
import {Component, OnInit} from 'angular2/core';
|
|
|
|
import {Hero} from './hero';
|
|
|
|
import {HeroDetailComponent} from './hero-detail.component';
|
|
|
|
// #docregion hero-service-import
|
|
|
|
import {HeroService} from './hero.service';
|
|
|
|
// #enddocregion hero-service-import
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
2015-12-23 12:42:57 -05:00
|
|
|
// #docregion template
|
2015-12-16 21:47:02 -05:00
|
|
|
template:`
|
|
|
|
<h1>{{title}}</h1>
|
|
|
|
<h2>My Heroes</h2>
|
|
|
|
<ul class="heroes">
|
|
|
|
<li *ngFor="#hero of heroes"
|
|
|
|
[class.selected]="hero === selectedHero"
|
|
|
|
(click)="onSelect(hero)">
|
|
|
|
<span class="badge">{{hero.id}}</span> {{hero.name}}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<my-hero-detail [hero]="selectedHero"></my-hero-detail>
|
|
|
|
`,
|
2015-12-23 12:42:57 -05:00
|
|
|
// #enddocregion template
|
2015-12-16 21:47:02 -05:00
|
|
|
styles:[`
|
2015-12-19 05:35:50 -05:00
|
|
|
.selected {
|
|
|
|
background-color: #CFD8DC !important;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.heroes {
|
|
|
|
margin: 0 0 2em 0;
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
width: 10em;
|
|
|
|
}
|
|
|
|
.heroes li {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
left: 0;
|
|
|
|
background-color: #EEE;
|
|
|
|
margin: .5em;
|
2016-02-27 16:48:24 -05:00
|
|
|
padding: .3em 0;
|
2015-12-19 05:35:50 -05:00
|
|
|
height: 1.6em;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.heroes li.selected:hover {
|
2016-02-27 16:48:24 -05:00
|
|
|
background-color: #BBD8DC !important;
|
2015-12-19 05:35:50 -05:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.heroes li:hover {
|
|
|
|
color: #607D8B;
|
2016-02-27 16:48:24 -05:00
|
|
|
background-color: #DDD;
|
2015-12-19 05:35:50 -05:00
|
|
|
left: .1em;
|
|
|
|
}
|
|
|
|
.heroes .text {
|
|
|
|
position: relative;
|
|
|
|
top: -3px;
|
|
|
|
}
|
2015-12-16 21:47:02 -05:00
|
|
|
.heroes .badge {
|
2015-12-19 05:35:50 -05:00
|
|
|
display: inline-block;
|
2015-12-16 21:47:02 -05:00
|
|
|
font-size: small;
|
|
|
|
color: white;
|
2016-02-27 16:48:24 -05:00
|
|
|
padding: 0.8em 0.7em 0 0.7em;
|
2015-12-19 05:35:50 -05:00
|
|
|
background-color: #607D8B;
|
2015-12-16 21:47:02 -05:00
|
|
|
line-height: 1em;
|
|
|
|
position: relative;
|
|
|
|
left: -1px;
|
2015-12-19 05:35:50 -05:00
|
|
|
top: -4px;
|
|
|
|
height: 1.8em;
|
|
|
|
margin-right: .8em;
|
2016-02-27 16:48:24 -05:00
|
|
|
border-radius: 4px 0 0 4px;
|
2015-12-16 21:47:02 -05:00
|
|
|
}
|
|
|
|
`],
|
|
|
|
directives: [HeroDetailComponent],
|
|
|
|
providers: [HeroService]
|
|
|
|
})
|
|
|
|
export class AppComponent implements OnInit {
|
2015-12-23 12:42:57 -05:00
|
|
|
title = 'Tour of Heroes';
|
|
|
|
heroes: Hero[];
|
|
|
|
selectedHero: Hero;
|
2015-12-16 21:47:02 -05:00
|
|
|
|
|
|
|
constructor(private _heroService: HeroService) { }
|
|
|
|
|
|
|
|
// #docregion get-heroes
|
|
|
|
getHeroes() {
|
|
|
|
this._heroService.getHeroes().then(heroes => this.heroes = heroes);
|
|
|
|
}
|
|
|
|
// #enddocregion get-heroes
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
this.getHeroes();
|
|
|
|
}
|
|
|
|
|
|
|
|
onSelect(hero: Hero) { this.selectedHero = hero; }
|
|
|
|
}
|