This unified the implementations of dynamic's `downgradeNg2Component()` and static's `downgradeComponent()`.
189 lines
7.2 KiB
TypeScript
189 lines
7.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {ChangeDetectorRef, ComponentFactory, ComponentRef, EventEmitter, Injector, OnChanges, ReflectiveInjector, SimpleChange, SimpleChanges, Type} from '@angular/core';
|
|
|
|
import * as angular from './angular1';
|
|
import {ComponentInfo, PropertyBinding} from './component_info';
|
|
import {$SCOPE} from './constants';
|
|
import {ContentProjectionHelper} from './content_projection_helper';
|
|
import {getComponentName, hookupNgModel} from './util';
|
|
|
|
const INITIAL_VALUE = {
|
|
__UNINITIALIZED__: true
|
|
};
|
|
|
|
export class DowngradeComponentAdapter {
|
|
private inputChangeCount: number = 0;
|
|
private inputChanges: SimpleChanges = null;
|
|
private componentScope: angular.IScope;
|
|
private componentRef: ComponentRef<any> = null;
|
|
private component: any = null;
|
|
private changeDetector: ChangeDetectorRef = null;
|
|
|
|
constructor(
|
|
private id: string, private info: ComponentInfo, private element: angular.IAugmentedJQuery,
|
|
private attrs: angular.IAttributes, private scope: angular.IScope,
|
|
private ngModel: angular.INgModelController, private parentInjector: Injector,
|
|
private $injector: angular.IInjectorService, private $compile: angular.ICompileService,
|
|
private $parse: angular.IParseService, private componentFactory: ComponentFactory<any>) {
|
|
(this.element[0] as any).id = id;
|
|
this.componentScope = scope.$new();
|
|
}
|
|
|
|
compileContents(): Node[][] {
|
|
const compiledProjectableNodes: Node[][] = [];
|
|
|
|
// The projected content has to be grouped, before it is compiled.
|
|
const projectionHelper: ContentProjectionHelper =
|
|
this.parentInjector.get(ContentProjectionHelper);
|
|
const projectableNodes: Node[][] = projectionHelper.groupProjectableNodes(
|
|
this.$injector, this.info.component, this.element.contents());
|
|
const linkFns = projectableNodes.map(nodes => this.$compile(nodes));
|
|
|
|
this.element.empty();
|
|
|
|
linkFns.forEach(linkFn => {
|
|
linkFn(this.scope, (clone: Node[]) => {
|
|
compiledProjectableNodes.push(clone);
|
|
this.element.append(clone);
|
|
});
|
|
});
|
|
|
|
return compiledProjectableNodes;
|
|
}
|
|
|
|
createComponent(projectableNodes: Node[][]) {
|
|
const childInjector = ReflectiveInjector.resolveAndCreate(
|
|
[{provide: $SCOPE, useValue: this.componentScope}], this.parentInjector);
|
|
|
|
this.componentRef =
|
|
this.componentFactory.create(childInjector, projectableNodes, this.element[0]);
|
|
this.changeDetector = this.componentRef.changeDetectorRef;
|
|
this.component = this.componentRef.instance;
|
|
|
|
hookupNgModel(this.ngModel, this.component);
|
|
}
|
|
|
|
setupInputs(): void {
|
|
const attrs = this.attrs;
|
|
const inputs = this.info.inputs || [];
|
|
for (let i = 0; i < inputs.length; i++) {
|
|
const input = new PropertyBinding(inputs[i]);
|
|
let expr: any /** TODO #9100 */ = null;
|
|
|
|
if (attrs.hasOwnProperty(input.attr)) {
|
|
const observeFn = ((prop: any /** TODO #9100 */) => {
|
|
let prevValue = INITIAL_VALUE;
|
|
return (value: any /** TODO #9100 */) => {
|
|
if (this.inputChanges !== null) {
|
|
this.inputChangeCount++;
|
|
this.inputChanges[prop] = new SimpleChange(
|
|
value, prevValue === INITIAL_VALUE ? value : prevValue,
|
|
prevValue === INITIAL_VALUE);
|
|
prevValue = value;
|
|
}
|
|
this.component[prop] = value;
|
|
};
|
|
})(input.prop);
|
|
attrs.$observe(input.attr, observeFn);
|
|
|
|
} else if (attrs.hasOwnProperty(input.bindAttr)) {
|
|
expr = (attrs as any /** TODO #9100 */)[input.bindAttr];
|
|
} else if (attrs.hasOwnProperty(input.bracketAttr)) {
|
|
expr = (attrs as any /** TODO #9100 */)[input.bracketAttr];
|
|
} else if (attrs.hasOwnProperty(input.bindonAttr)) {
|
|
expr = (attrs as any /** TODO #9100 */)[input.bindonAttr];
|
|
} else if (attrs.hasOwnProperty(input.bracketParenAttr)) {
|
|
expr = (attrs as any /** TODO #9100 */)[input.bracketParenAttr];
|
|
}
|
|
if (expr != null) {
|
|
const watchFn =
|
|
((prop: any /** TODO #9100 */) => (
|
|
value: any /** TODO #9100 */, prevValue: any /** TODO #9100 */) => {
|
|
if (this.inputChanges != null) {
|
|
this.inputChangeCount++;
|
|
this.inputChanges[prop] = new SimpleChange(prevValue, value, prevValue === value);
|
|
}
|
|
this.component[prop] = value;
|
|
})(input.prop);
|
|
this.componentScope.$watch(expr, watchFn);
|
|
}
|
|
}
|
|
|
|
const prototype = this.info.component.prototype;
|
|
if (prototype && (<OnChanges>prototype).ngOnChanges) {
|
|
// Detect: OnChanges interface
|
|
this.inputChanges = {};
|
|
this.componentScope.$watch(() => this.inputChangeCount, () => {
|
|
const inputChanges = this.inputChanges;
|
|
this.inputChanges = {};
|
|
(<OnChanges>this.component).ngOnChanges(inputChanges);
|
|
});
|
|
}
|
|
this.componentScope.$watch(() => this.changeDetector && this.changeDetector.detectChanges());
|
|
}
|
|
|
|
setupOutputs() {
|
|
const attrs = this.attrs;
|
|
const outputs = this.info.outputs || [];
|
|
for (let j = 0; j < outputs.length; j++) {
|
|
const output = new PropertyBinding(outputs[j]);
|
|
let expr: any /** TODO #9100 */ = null;
|
|
let assignExpr = false;
|
|
|
|
const bindonAttr =
|
|
output.bindonAttr ? output.bindonAttr.substring(0, output.bindonAttr.length - 6) : null;
|
|
const bracketParenAttr = output.bracketParenAttr ?
|
|
`[(${output.bracketParenAttr.substring(2, output.bracketParenAttr.length - 8)})]` :
|
|
null;
|
|
|
|
if (attrs.hasOwnProperty(output.onAttr)) {
|
|
expr = (attrs as any /** TODO #9100 */)[output.onAttr];
|
|
} else if (attrs.hasOwnProperty(output.parenAttr)) {
|
|
expr = (attrs as any /** TODO #9100 */)[output.parenAttr];
|
|
} else if (attrs.hasOwnProperty(bindonAttr)) {
|
|
expr = (attrs as any /** TODO #9100 */)[bindonAttr];
|
|
assignExpr = true;
|
|
} else if (attrs.hasOwnProperty(bracketParenAttr)) {
|
|
expr = (attrs as any /** TODO #9100 */)[bracketParenAttr];
|
|
assignExpr = true;
|
|
}
|
|
|
|
if (expr != null && assignExpr != null) {
|
|
const getter = this.$parse(expr);
|
|
const setter = getter.assign;
|
|
if (assignExpr && !setter) {
|
|
throw new Error(`Expression '${expr}' is not assignable!`);
|
|
}
|
|
const emitter = this.component[output.prop] as EventEmitter<any>;
|
|
if (emitter) {
|
|
emitter.subscribe({
|
|
next: assignExpr ?
|
|
((setter: any) => (v: any /** TODO #9100 */) => setter(this.scope, v))(setter) :
|
|
((getter: any) => (v: any /** TODO #9100 */) =>
|
|
getter(this.scope, {$event: v}))(getter)
|
|
});
|
|
} else {
|
|
throw new Error(
|
|
`Missing emitter '${output.prop}' on component '${getComponentName(this.info.component)}'!`);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
registerCleanup() {
|
|
this.element.bind('$destroy', () => {
|
|
this.componentScope.$destroy();
|
|
this.componentRef.destroy();
|
|
});
|
|
}
|
|
|
|
getInjector(): Injector { return this.componentRef && this.componentRef.injector; }
|
|
}
|