Thursday, 15 December 2016

Passing data from Parent to Child Component

Passing data to a nested component

In Angular 1 we used $broadcast, $emit, $on to communicate between controllers. But now in angular 2 we have different approach.

In Angular 2, If you want to flow data from Parent Component to Child Component we use @Input Decorator or "inputs" property inside @Component decorator or in a Class. Hear we will discuss the former approach.

Our Directory Structure

Parent Component

  1. //our root app component
  2. import { Component, NgModule } from '@angular/core'
  3. import { BrowserModule } from '@angular/platform-browser'
  4. import { FormsModule } from '@angular/forms';
  5. import { ChildComponent } from './child.component';
  6. import { Character } from './character';
  7.  
  8. @Component({
  9. selector: 'my-app',
  10. template: `
  11. <h1>@input</h1>
  12. <div style = "border:2px solid orange; padding:5px;">
  13. <h2>Parent Component</h2>
  14. <input [(ngModel)] = "characters[0].name"/>
  15. <button (click)="select(characters[0])">Input</button>
  16. <br/><br/>
  17. <child-component [character]="selectedCharacter"></child-component>
  18. </div>
  19. `,
  20. })
  21. export class App {
  22. characters = [
  23. {
  24. "id":11,
  25. "name":"Name"
  26. }];
  27. selectedCharacter: Character;
  28. select(selectedCharacter : Character){
  29. this.selectedCharacter = selectedCharacter;
  30. }
  31. }
  32.  
  33. @NgModule({
  34. imports: [ BrowserModule,FormsModule ],
  35. declarations: [ App, ChildComponent ],
  36. bootstrap: [ App ]
  37. })
  38. export class AppModule {}

Child Component

  1. import { Component, Input} from '@angular/core';
  2. import { Character} from './character';
  3. @Component({
  4. selector: 'child-component',
  5. template:`
  6. <div style="border:2px solid orange; padding:5px">
  7. <h2>Child Component: <span *ngIf="character">{{character.name}}</span></h2>
  8. </div>
  9. `
  10. })
  11. export class ChildComponent {
  12. @Input() character: Character;
  13. }

Full source

Find full source from my github

No comments:

Post a Comment