<!DOCTYPE html>
<html>
<head>
<base href="." />
<title>angular2 playground</title>
<link rel="stylesheet" href="style.css" />
<script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
<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>
<my-app>
loading...
</my-app>
</body>
</html>
/* Styles go here */
### Angular Starter Plunker - Typescript
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/animations': 'npm:@angular/animations@4.0.0-rc.2/bundles/animations.umd.js',
'@angular/core': 'npm:@angular/core@4.0.0-rc.2/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common@4.0.0-rc.2/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler@4.0.0-rc.2/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser@4.0.0-rc.2/bundles/platform-browser.umd.js',
'@angular/platform-browser/animations': 'npm:@angular/platform-browser@4.0.0-rc.2/bundles/platform-browser-animations.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic@4.0.0-rc.2/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http@4.0.0-rc.2/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router@4.0.0-rc.2/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms@4.0.0-rc.2/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';
platformBrowserDynamic().bootstrapModule(AppModule)
//our root app component
import {Component, NgModule, ViewChildren, ContentChildren, QueryList, Input} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser';
@Component({
selector: 'child',
template: '<div>child</div>'
})
export class Child { }
@Component({
selector: 'parent',
template: `
<h2>Parent compo</h2>
<ng-container *ngTemplateOutlet="template1"></ng-container>
<!--<child></child>-->
<div>Total children {{children.length}}</div>
`
})
export class Parent {
@Input() template1;
children = [];
@ViewChildren(Child) viewList: QueryList<Child>;
updateElements() {
setTimeout(() => this.children = this.viewList.toArray());
}
ngAfterViewInit() {
this.viewList.changes.subscribe(() => this.updateElements());
this.updateElements();
}
}
@Component({
selector: 'my-app',
template: `
<h2>Hello Angular 4</h2>
<ng-template #template1>
<child></child>
<child></child>
</ng-template>
<parent [template1]="template1"></parent>
`
]
})
export class App {
constructor() { }
}
@NgModule({
imports: [ BrowserModule ],
declarations: [ App, Child, Parent ],
bootstrap: [ App ]
})
export class AppModule {}