2017-02-22 18:13:21 +00:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2018-03-26 15:00:02 +08:00
|
|
|
import { Observable } from 'rxjs';
|
2017-02-22 18:13:21 +00:00
|
|
|
|
|
|
|
import { Hero, HeroService } from './shared';
|
|
|
|
|
|
|
|
// #docregion example
|
|
|
|
/* avoid */
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'toh-heroes',
|
|
|
|
template: `
|
|
|
|
<div>
|
|
|
|
<h2>My Heroes</h2>
|
|
|
|
<ul class="heroes">
|
|
|
|
<li *ngFor="let hero of heroes | async" (click)="selectedHero=hero">
|
|
|
|
<span class="badge">{{hero.id}}</span> {{hero.name}}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<div *ngIf="selectedHero">
|
|
|
|
<h2>{{selectedHero.name | uppercase}} is my hero</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`,
|
|
|
|
styles: [`
|
|
|
|
.heroes {
|
|
|
|
margin: 0 0 2em 0; list-style-type: none; padding: 0; width: 15em;
|
|
|
|
}
|
|
|
|
.heroes li {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
left: 0;
|
|
|
|
background-color: #EEE;
|
|
|
|
margin: .5em;
|
|
|
|
padding: .3em 0;
|
|
|
|
height: 1.6em;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.heroes .badge {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: small;
|
|
|
|
color: white;
|
|
|
|
padding: 0.8em 0.7em 0 0.7em;
|
|
|
|
background-color: #607D8B;
|
|
|
|
line-height: 1em;
|
|
|
|
position: relative;
|
|
|
|
left: -1px;
|
|
|
|
top: -4px;
|
|
|
|
height: 1.8em;
|
|
|
|
margin-right: .8em;
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
}
|
|
|
|
`]
|
|
|
|
})
|
|
|
|
export class HeroesComponent implements OnInit {
|
|
|
|
heroes: Observable<Hero[]>;
|
|
|
|
selectedHero: Hero;
|
|
|
|
|
|
|
|
constructor(private heroService: HeroService) { }
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
this.heroes = this.heroService.getHeroes();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// #enddocregion example
|