<!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>
html,
body {
width: 100%;
margin: 0;
padding: 0;
}
### 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/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/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, ViewChildren, ViewChild, QueryList, ViewContainerRef, Input, ComponentFactoryResolver} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
@Component({
selector: 'my-child',
template: `Child Component`,
styles: [
`:host {
display: block;
background-color: #333;
color: white;
padding: 5px;
}
`
]
})
export class ChildComponent {
constructor() {}
ngOnDestroy() {
console.log('Boodbye from child component');
}
}
@Component({
selector: 'my-container',
template: `
<div>{{name}}</div>
<ng-container #vc></ng-container>
`,
styles: [
`:host {
display: block;
width: 100%;
height: 100%;
background-color: #ccc;
padding: 5px;
box-sizing: border-box;
border: 5px solid white;
}
`
]
})
export class ContainerComponent {
@Input('name') name: string;
@ViewChild('vc', {read: ViewContainerRef}) viewContainerRef: ViewContainerRef;
constructor() {}
ngOnDestroy() {
console.log('Boodbye from ' + this.name);
}
}
@Component({
selector: 'my-app',
template: `
<h1>Moving Angular component from one parent component to another</h1>
<p>
This plunk demonstrates how to detach an Angular component from one parent component
and attach it to another. With this approach, the
<a href="https://angular.io/api/core/OnDestroy">ngOnDestroy</a> method of the
child component is only called by Angular when the parent that the child is currently
attached to is destroyed.
</p>
<div class="demo">
<div class="col">
<my-container name="Container 1" *ngIf="containerOneEnabled"></my-container>
</div>
<div class="col">
<my-container name="Container 2" *ngIf="containerTwoEnabled"></my-container>
</div>
</div>
<ol>
<li>Open browser console to monitor log statements.</li>
<li><button (click)="moveChild()">Move Child</button></li>
<li>
<button (click)="destroyContainerOne()">Destroy Container 1</button>
Note in console that only container 1 was destroyed, there is no log
statement from the child component that it was destroyed.
</li>
<li>
<button (click)="destroyContainerTwo()">Destroy Container 2</button>
Now we get a log statement in the console from both container 2
<b> and from the child component</b>.
</li>
<li>Refresh Plunker to do it again :)</li>
</ol>
`,
styles: [`
:host {
display: block;
width: 100%;
}
.demo {
width: 100%;
height: 200px;
}
.col {
width: 50%;
height: 100%;
float: left;
}
li {
padding: 5px;
}
`
]
})
export class App {
@ViewChildren(ContainerComponent) containers: QueryList<ContainerComponent>;
containerOneEnabled = true;
containerTwoEnabled = true;
private childComponentRef: ComponentRef;
private childHost: ViewContainerRef;
private factory = this.componentFactoryResolver.resolveComponentFactory(ChildComponent);
constructor(private componentFactoryResolver: ComponentFactoryResolver) { }
ngAfterViewInit() {
this.attachChildToContainerOne();
}
attachChildToContainerOne() {
this.childHost = this.containers.first.viewContainerRef;
this.childComponentRef = this.childHost.createComponent(this.factory);
}
moveChild() {
if(this.containers.length != 2) { return; }
this.childHost.detach(this.childHost.indexOf(this.childComponentRef.hostView));
this.containers.last.viewContainerRef.insert(this.childComponentRef.hostView);
}
destroyContainerOne() {
this.containerOneEnabled = false;
}
destroyContainerTwo() {
this.containerTwoEnabled = false;
}
}
@NgModule({
imports: [ BrowserModule ],
declarations: [ App, ContainerComponent, ChildComponent ],
entryComponents: [ ChildComponent ],
bootstrap: [ App ]
})
export class AppModule {}