<!DOCTYPE html>
<html>

  <head>
    <base href="." />
    <title>angular2 playground</title>
    <link rel="stylesheet" href="style.css" />
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://unpkg.com/zone.js/dist/zone.js"></script>
    <script src="https://unpkg.com/zone.js/dist/long-stack-trace-zone.js"></script>
    <script src="https://unpkg.com/reflect-metadata@0.1.3/Reflect.js"></script>
    <script src="https://unpkg.com/systemjs@0.19.31/dist/system.js"></script>
    <script src="config.js"></script>
    <script>
    System.import('app')
      .catch(console.error.bind(console));
  </script>
  </head>

  <body>
      <app-parent-view>Loading...</app-parent-view>
  </body>

</html>
/* Styles go here */


.resource-provider{
  text-align:center;
  font-weight:800;
  margin-top:40px;
}
### Angular2 Starter Plunker - Typescript - RC.0

A simple plunker demonstrating Angular2 usage:
- Uses SystemJS + TypeScript to compile on the fly
- Includes binding, directives, http, pipes, and DI usage.

For opening 
System.config({
  //use typescript for compilation
  transpiler: 'typescript',
  //typescript compiler options
  typescriptOptions: {
    emitDecoratorMetadata: true
  },
  paths: {
    'npm:': 'https://unpkg.com/'
  },
  //map tells the System loader where to look for things
  map: {
    
    'app': './src',
    
    '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
    '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
    '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
    '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
    '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
    '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
    '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
    '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
    
    '@angular/core/testing': 'npm:@angular/core/bundles/core-testing.umd.js',
    '@angular/common/testing': 'npm:@angular/common/bundles/common-testing.umd.js',
    '@angular/compiler/testing': 'npm:@angular/compiler/bundles/compiler-testing.umd.js',
    '@angular/platform-browser/testing': 'npm:@angular/platform-browser/bundles/platform-browser-testing.umd.js',
    '@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js',
    '@angular/http/testing': 'npm:@angular/http/bundles/http-testing.umd.js',
    '@angular/router/testing': 'npm:@angular/router/bundles/router-testing.umd.js',
    
    'rxjs': 'npm:rxjs',
    'typescript': 'npm:typescript@2.0.2/lib/typescript.js'
  },
  //packages defines our app package
  packages: {
    app: {
      main: './main.ts',
      defaultExtension: 'ts'
    },
    rxjs: {
      defaultExtension: 'js'
    }
  }
});
//main entry point
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {AppModule} from './app';
import { ParentViewComponent } from './parent-view/parent-view.component';

platformBrowserDynamic().bootstrapModule(ParentViewComponent)
//our root app component
import {Component, NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'

@Component({
  selector: 'my-app',
  template: `
    <div>
      <h2>Hello {{name}}</h2>
    </div>
  `,
})
export class App {
  name:string;
  constructor() {
    this.name = 'Angular2'
  }
}

@NgModule({
  imports: [ BrowserModule ],
  declarations: [ App ],
  bootstrap: [ App ]
})
export class AppModule {}
import { Component,NgModule,ngModel } from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';

import { FormsModule } from '@angular/forms';
import { ChildViewComponent } from './../child-view/child-view.component';

@NgModule({
  imports: [ BrowserModule,FormsModule ],
  declarations: [ ParentViewComponent,ChildViewComponent ],
  bootstrap: [ ParentViewComponent ]
})

@Component({
  selector: 'app-parent-view',
  directives: [ChildViewComponent],
  template:  `
    <div class="container parent-view">
    	<div class="">
    
    		<h3>Parent Component</h3>
    
    			<input type="text" class="form-control" value="{{ sampleData }}" [(ngModel)]='sampleData'>
    
    			<br>
    
    			<p>Data from child component : <b>{{ sampleChildData }}</b></p>
    		<hr>
    		
    		<div class="child-view">
    			<app-child-view [parentData]="sampleData" (childData)='handleEvent($event)'>app-child-view</app-child-view>
    		</div>
    		
    	</div>
    </div>
    
		<br/>
		<div class="resource-provider">Find more cool stuff at <a href="http://www.codershood.info/">www.codershood.info</a></div>
  `
})
export class ParentViewComponent {

	sampleData : string ="some parent Data";

	sampleChildData : string = '';

	constructor(){}

	public handleEvent(childData:any){
		this.sampleChildData = childData;
	}
}

import { Component,EventEmitter,Input,Output,NgModule } from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';

import { FormsModule } from '@angular/forms';

@NgModule({
  imports: [ BrowserModule,FormsModule ],
  declarations: [ ChildViewComponent ],
  bootstrap: [ ChildViewComponent ]
})

@Component({
  selector: 'app-child-view',
  template:  `<h3>Child Component</h3>

<div class="parent-data">
	Data from parebt view : <b>{{ incomingData }}</b>
</div>

<div class="child-data">
	<input type="text" class="form-control" 
		value="{{ childSampleData }}" 
		[(ngModel)]='childSampleData' 
		(ngModelChange)="sendData($event)" 
		placeholder="write some thing to send parent component">
</div> `,
})
export class ChildViewComponent {

	@Input('parentData') incomingData: string;

	@Output('childData') outgoingData = new EventEmitter<string>();

	childSampleData :string = "Some child Data";

	constructor() { }

	public sendData(data:any){
		this.outgoingData.emit(data);
	}
}