| 
									
										
										
										
											2016-04-13 16:47:37 -07:00
										 |  |  | // #docplaster
 | 
					
						
							|  |  |  | // #docregion
 | 
					
						
							|  |  |  | import 'dart:async'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import 'package:angular2/core.dart'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import 'hero.dart'; | 
					
						
							|  |  |  | import 'hero_detail_component.dart'; | 
					
						
							|  |  |  | // #docregion hero-service-import
 | 
					
						
							|  |  |  | import 'hero_service.dart'; | 
					
						
							|  |  |  | // #enddocregion hero-service-import
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component( | 
					
						
							|  |  |  |     selector: 'my-app', | 
					
						
							| 
									
										
										
										
											2016-06-15 07:46:26 -07:00
										 |  |  |     // #docregion template
 | 
					
						
							| 
									
										
										
										
											2016-04-13 16:47:37 -07:00
										 |  |  |     template: '''
 | 
					
						
							|  |  |  |       <h1>{{title}}</h1> | 
					
						
							|  |  |  |       <h2>My Heroes</h2> | 
					
						
							|  |  |  |       <ul class="heroes"> | 
					
						
							| 
									
										
										
										
											2016-04-30 07:01:16 -07:00
										 |  |  |         <li *ngFor="let hero of heroes" | 
					
						
							| 
									
										
										
										
											2016-04-13 16:47:37 -07: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-06-15 07:46:26 -07:00
										 |  |  |     // #enddocregion template
 | 
					
						
							| 
									
										
										
										
											2016-04-13 16:47:37 -07:00
										 |  |  |     styles: const [ | 
					
						
							|  |  |  |     '''
 | 
					
						
							|  |  |  |       .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; | 
					
						
							|  |  |  |         padding: .3em 0em; | 
					
						
							|  |  |  |         height: 1.6em; | 
					
						
							|  |  |  |         border-radius: 4px; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       .heroes li.selected:hover { | 
					
						
							|  |  |  |         color: white; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       .heroes li:hover { | 
					
						
							|  |  |  |         color: #607D8B; | 
					
						
							|  |  |  |         background-color: #EEE; | 
					
						
							|  |  |  |         left: .1em; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       .heroes .text { | 
					
						
							|  |  |  |         position: relative; | 
					
						
							|  |  |  |         top: -3px; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       .heroes .badge { | 
					
						
							|  |  |  |         display: inline-block; | 
					
						
							|  |  |  |         font-size: small; | 
					
						
							|  |  |  |         color: white; | 
					
						
							|  |  |  |         padding: 0.8em 0.7em 0em 0.7em; | 
					
						
							|  |  |  |         background-color: #607D8B; | 
					
						
							|  |  |  |         line-height: 1em; | 
					
						
							|  |  |  |         position: relative; | 
					
						
							|  |  |  |         left: -1px; | 
					
						
							|  |  |  |         top: -4px; | 
					
						
							|  |  |  |         height: 1.8em; | 
					
						
							|  |  |  |         margin-right: .8em; | 
					
						
							|  |  |  |         border-radius: 4px 0px 0px 4px; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |    '''
 | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  |     directives: const [ | 
					
						
							|  |  |  |       HeroDetailComponent | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  |     providers: const [ | 
					
						
							|  |  |  |       HeroService | 
					
						
							|  |  |  |     ]) | 
					
						
							|  |  |  | class AppComponent implements OnInit { | 
					
						
							|  |  |  |   String title = 'Tour of Heroes'; | 
					
						
							|  |  |  |   List<Hero> heroes; | 
					
						
							|  |  |  |   Hero selectedHero; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   final HeroService _heroService; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   AppComponent(this._heroService); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 14:58:05 -07:00
										 |  |  |   // #docregion get-heroes
 | 
					
						
							|  |  |  |   Future<Null> getHeroes() async { | 
					
						
							| 
									
										
										
										
											2016-04-13 16:47:37 -07:00
										 |  |  |     heroes = await _heroService.getHeroes(); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-06-15 14:58:05 -07:00
										 |  |  |   // #enddocregion get-heroes
 | 
					
						
							| 
									
										
										
										
											2016-04-13 16:47:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 14:58:05 -07:00
										 |  |  |   void ngOnInit() { | 
					
						
							| 
									
										
										
										
											2016-04-13 16:47:37 -07:00
										 |  |  |     getHeroes(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 14:58:05 -07:00
										 |  |  |   void onSelect(Hero hero) { | 
					
						
							| 
									
										
										
										
											2016-04-13 16:47:37 -07:00
										 |  |  |     selectedHero = hero; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } |