| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  | // #docplaster
 | 
					
						
							|  |  |  | // #docregion
 | 
					
						
							| 
									
										
										
										
											2016-05-03 14:06:32 +02:00
										 |  |  | import { Component, OnInit } from '@angular/core'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { Hero } from './hero'; | 
					
						
							|  |  |  | import { HeroDetailComponent } from './hero-detail.component'; | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  | // #docregion hero-service-import
 | 
					
						
							| 
									
										
										
										
											2016-05-03 14:06:32 +02:00
										 |  |  | import { HeroService } from './hero.service'; | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  | // #enddocregion hero-service-import
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'my-app', | 
					
						
							| 
									
										
										
										
											2015-12-23 09:42:57 -08:00
										 |  |  |   // #docregion template
 | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  |   template:`
 | 
					
						
							|  |  |  |     <h1>{{title}}</h1> | 
					
						
							|  |  |  |     <h2>My Heroes</h2> | 
					
						
							|  |  |  |     <ul class="heroes"> | 
					
						
							| 
									
										
										
										
											2016-04-29 01:36:35 +01:00
										 |  |  |       <li *ngFor="let hero of heroes" | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  |         [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> | 
					
						
							|  |  |  |   `,
 | 
					
						
							| 
									
										
										
										
											2016-04-09 00:18:37 -04:00
										 |  |  |   // #enddocregion template
 | 
					
						
							|  |  |  |   styles: [`
 | 
					
						
							| 
									
										
										
										
											2015-12-19 02:35:50 -08:00
										 |  |  |     .selected { | 
					
						
							|  |  |  |       background-color: #CFD8DC !important; | 
					
						
							|  |  |  |       color: white; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     .heroes { | 
					
						
							|  |  |  |       margin: 0 0 2em 0; | 
					
						
							|  |  |  |       list-style-type: none; | 
					
						
							|  |  |  |       padding: 0; | 
					
						
							| 
									
										
										
										
											2016-03-24 13:31:27 +01:00
										 |  |  |       width: 15em; | 
					
						
							| 
									
										
										
										
											2015-12-19 02:35:50 -08:00
										 |  |  |     } | 
					
						
							|  |  |  |     .heroes li { | 
					
						
							|  |  |  |       cursor: pointer; | 
					
						
							|  |  |  |       position: relative; | 
					
						
							|  |  |  |       left: 0; | 
					
						
							|  |  |  |       background-color: #EEE; | 
					
						
							|  |  |  |       margin: .5em; | 
					
						
							| 
									
										
										
										
											2016-02-27 13:48:24 -08:00
										 |  |  |       padding: .3em 0; | 
					
						
							| 
									
										
										
										
											2015-12-19 02:35:50 -08:00
										 |  |  |       height: 1.6em; | 
					
						
							|  |  |  |       border-radius: 4px; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     .heroes li.selected:hover { | 
					
						
							| 
									
										
										
										
											2016-02-27 13:48:24 -08:00
										 |  |  |       background-color: #BBD8DC !important; | 
					
						
							| 
									
										
										
										
											2015-12-19 02:35:50 -08:00
										 |  |  |       color: white; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     .heroes li:hover { | 
					
						
							|  |  |  |       color: #607D8B; | 
					
						
							| 
									
										
										
										
											2016-02-27 13:48:24 -08:00
										 |  |  |       background-color: #DDD; | 
					
						
							| 
									
										
										
										
											2015-12-19 02:35:50 -08:00
										 |  |  |       left: .1em; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     .heroes .text { | 
					
						
							|  |  |  |       position: relative; | 
					
						
							|  |  |  |       top: -3px; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  |     .heroes .badge { | 
					
						
							| 
									
										
										
										
											2015-12-19 02:35:50 -08:00
										 |  |  |       display: inline-block; | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  |       font-size: small; | 
					
						
							|  |  |  |       color: white; | 
					
						
							| 
									
										
										
										
											2016-02-27 13:48:24 -08:00
										 |  |  |       padding: 0.8em 0.7em 0 0.7em; | 
					
						
							| 
									
										
										
										
											2015-12-19 02:35:50 -08:00
										 |  |  |       background-color: #607D8B; | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  |       line-height: 1em; | 
					
						
							|  |  |  |       position: relative; | 
					
						
							|  |  |  |       left: -1px; | 
					
						
							| 
									
										
										
										
											2015-12-19 02:35:50 -08:00
										 |  |  |       top: -4px; | 
					
						
							|  |  |  |       height: 1.8em; | 
					
						
							|  |  |  |       margin-right: .8em; | 
					
						
							| 
									
										
										
										
											2016-02-27 13:48:24 -08: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 09:42:57 -08:00
										 |  |  |   title = 'Tour of Heroes'; | 
					
						
							|  |  |  |   heroes: Hero[]; | 
					
						
							|  |  |  |   selectedHero: Hero; | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 14:06:32 +02:00
										 |  |  |   constructor(private heroService: HeroService) { } | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | // #docregion get-heroes
 | 
					
						
							|  |  |  |   getHeroes() { | 
					
						
							| 
									
										
										
										
											2016-05-03 14:06:32 +02:00
										 |  |  |     this.heroService.getHeroes().then(heroes => this.heroes = heroes); | 
					
						
							| 
									
										
										
										
											2015-12-16 21:47:02 -05:00
										 |  |  |   } | 
					
						
							|  |  |  | // #enddocregion get-heroes
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   ngOnInit() { | 
					
						
							|  |  |  |     this.getHeroes(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   onSelect(hero: Hero) { this.selectedHero = hero; } | 
					
						
							|  |  |  | } |