<!DOCTYPE html>
<html>
<head>
<base href="." />
<script type="text/javascript" charset="utf-8">
window.AngularVersionForThisPlunker = 'latest'
</script>
<title>angular 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
var angularVersion;
if(window.AngularVersionForThisPlunker === 'latest'){
angularVersion = ''; //picks up latest
}
else {
angularVersion = '@' + window.AngularVersionForThisPlunker;
}
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'+ angularVersion + '/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common' + angularVersion + '/bundles/common.umd.js',
'@angular/common/http': 'npm:@angular/common' + angularVersion + '/bundles/common-http.umd.js',
'@angular/compiler': 'npm:@angular/compiler' + angularVersion + '/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic' + angularVersion + '/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http' + angularVersion + '/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router' + angularVersion +'/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms' + angularVersion + '/bundles/forms.umd.js',
'@angular/animations': 'npm:@angular/animations' + angularVersion + '/bundles/animations.umd.js',
'@angular/platform-browser/animations': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser-animations.umd.js',
'@angular/animations/browser': 'npm:@angular/animations' + angularVersion + '/bundles/animations-browser.umd.js',
'@angular/core/testing': 'npm:@angular/core' + angularVersion + '/bundles/core-testing.umd.js',
'@angular/common/testing': 'npm:@angular/common' + angularVersion + '/bundles/common-testing.umd.js',
'@angular/common/http/testing': 'npm:@angular/common' + angularVersion + '/bundles/common-http-testing.umd.js',
'@angular/compiler/testing': 'npm:@angular/compiler' + angularVersion + '/bundles/compiler-testing.umd.js',
'@angular/platform-browser/testing': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser-testing.umd.js',
'@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic' + angularVersion + '/bundles/platform-browser-dynamic-testing.umd.js',
'@angular/http/testing': 'npm:@angular/http' + angularVersion + '/bundles/http-testing.umd.js',
'@angular/router/testing': 'npm:@angular/router' + angularVersion + '/bundles/router-testing.umd.js',
'tslib': 'npm:tslib@1.6.1',
'rxjs': 'npm:rxjs',
'typescript': 'npm:typescript@2.2.1/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, VERSION, OnInit, Compiler, AfterViewInit, Injector, NgModuleRef, ViewChild, ViewContainerRef, ComponentFactory, ComponentRef, OnDestroy, Type,SystemJsNgModuleLoader,ComponentFactoryResolver } from "@angular/core";
import {BrowserModule} from '@angular/platform-browser'
import { RouterModule } from '@angular/router';
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello {{name}}</h2>
<div #vc></div>
</div>
`,
})
export class App implements OnInit{
name:string;
@ViewChild('vc', {read: ViewContainerRef}) vc: ViewContainerRef;
constructor(private viewref: ViewContainerRef , private resolver: ComponentFactoryResolver,private loader:SystemJsNgModuleLoader,private compiler:Compiler) {
this.name = `Angular! v${VERSION.full}`
}
ngOnInit() {
console.log("Loadind module");
this.loadModule();
}
loadModule() {
this.loader.load("./dynamic-component.module.ts#DynamicComponentModule")
.then((modFac: any) => {
console.log('modFac',modFac);
this.compiler.compileModuleAndAllComponentsAsync<any>(modFac.moduleType)
.then((factory: any) => {
console.log('factory',factory);
return factory.componentFactories.find((cf: any) => cf.selector == "app-component1");
})
.then((cmpFactory: any) => {
console.log('cmpFactory',cmpFactory);
let compRef = this.vc.createComponent(cmpFactory);
});
});
}
}
@NgModule({
imports: [ BrowserModule,
RouterModule.forRoot([
{
path:'',
redirectTo:'app',
pathMatch:'full',
},
{
path:'app',
component:App
}
])],
declarations: [ App ],
bootstrap: [ App ],
providers: [SystemJsNgModuleLoader]
})
export class AppModule {}
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import {Http, HttpModule } from '@angular/http';
import {DynamicComponent1} from './dynamic-component1.ts';
import {DynamicComponent2} from './dynamic-component2.ts';
import {DynamicComponentRoutingModule} from './dynamic-component.routing.ts';
@NgModule({
imports: [
DynamicComponentRoutingModule,
FormsModule,
CommonModule,
FormsModule,
HttpModule
],
declarations: [
DynamicComponent1,
DynamicComponent2,
],
exports: [DynamicComponent1,DynamicComponent2]
})
export class DynamicComponentModule {
}
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import {DynamicComponent1} from './dynamic-component1.ts';
import {DynamicComponent2} from './dynamic-component2.ts';
const routes: Routes = [
{
path: 'dynamicModule',
pathMatch: 'full'
children: [
{
path: 'dynamicComponent1',
component: DynamicComponent1
},
{
path: 'dynamicComponent2',
component: DynamicComponent2,
}
]
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class DynamicComponentRoutingModule{}
//our root app component
import {Component, NgModule, VERSION} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import { Router } from '@angular/router';
@Component({
selector: 'app-component1',
template: `
<div>
<h2>{{text}}</h2>
<a class="nav-link" [routerLink]="['/dynamicModule/dynamicComponent2']"> Go to component 2 </a>
</div>
`,
})
export class DynamicComponent1 {
text:string;
constructor(private router: Router) {
this.text = "This is component 1";
}
}
//our root app component
import {Component, NgModule, VERSION} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
@Component({
selector: 'app-component2',
template: `
<div>
<h2>{{text}}</h2>
</div>
`,
})
export class DynamicComponent2 {
text:string;
constructor() {
this.text = 'This is component 2';
}
}