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

Friday, 11 November 2016

platform-browser VS platform-browser-dynamic

In angular2. We must have seen in every project there is plugin called platform-browser and platform-browser-dynamic.

  1. "@angular/platform-browser": "2.0.0-rc.4",
  2. "@angular/platform-browser-dynamic": "2.0.0-rc.4",

Let us understand the difference.

The difference between platform-browser-dynamic and platform-browser is the way your angular app will be compiled.

@angular/platform-browser

  • It contains code shared for browser execution (DOM thread, WebWorker)
  • Ahead-of-Time pre-compiled version of application being sent to the browser. Which usually means a significantly smaller package being sent to the browser.

@angular/platform-browser-dynamic

  • It contains the client side code that processes templates (bindings, components, ...) and reflective dependency injection.
  • Uses Just-in-Time compiler and make's application compile on client-side.

When the offline template compiler is used, platform-browser-dynamic isn't necessary because all reflective access and metadata are converted to generated code.