179 lines
6.8 KiB
TypeScript
179 lines
6.8 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 {ComponentFactory, ComponentFactoryResolver, Injector, Type} from '@angular/core';
|
|
|
|
import * as angular from './angular1';
|
|
import {$COMPILE, $INJECTOR, $PARSE, INJECTOR_KEY, REQUIRE_INJECTOR, REQUIRE_NG_MODEL} from './constants';
|
|
import {DowngradeComponentAdapter} from './downgrade_component_adapter';
|
|
import {NgContentSelectorHelper} from './ng_content_selector_helper';
|
|
import {controllerKey, getComponentName} from './util';
|
|
|
|
let downgradeCount = 0;
|
|
|
|
/**
|
|
* @whatItDoes
|
|
*
|
|
* *Part of the [upgrade/static](/docs/ts/latest/api/#!?query=upgrade%2Fstatic)
|
|
* library for hybrid upgrade apps that support AoT compilation*
|
|
*
|
|
* Allows an Angular component to be used from AngularJS.
|
|
*
|
|
* @howToUse
|
|
*
|
|
* Let's assume that you have an Angular component called `ng2Heroes` that needs
|
|
* to be made available in AngularJS templates.
|
|
*
|
|
* {@example upgrade/static/ts/module.ts region="ng2-heroes"}
|
|
*
|
|
* We must create an AngularJS [directive](https://docs.angularjs.org/guide/directive)
|
|
* that will make this Angular component available inside AngularJS templates.
|
|
* The `downgradeComponent()` function returns a factory function that we
|
|
* can use to define the AngularJS directive that wraps the "downgraded" component.
|
|
*
|
|
* {@example upgrade/static/ts/module.ts region="ng2-heroes-wrapper"}
|
|
*
|
|
* In this example you can see that we must provide information about the component being
|
|
* "downgraded". This is because once the AoT compiler has run, all metadata about the
|
|
* component has been removed from the code, and so cannot be inferred.
|
|
*
|
|
* We must do the following:
|
|
* * specify the Angular component class that is to be downgraded
|
|
* * specify all inputs and outputs that the AngularJS component expects
|
|
* * specify the selectors used in any `ng-content` elements in the component's template
|
|
*
|
|
* @description
|
|
*
|
|
* A helper function that returns a factory function to be used for registering an
|
|
* AngularJS wrapper directive for "downgrading" an Angular component.
|
|
*
|
|
* The parameter contains information about the Component that is being downgraded:
|
|
*
|
|
* * `component: Type<any>`: The type of the Component that will be downgraded
|
|
* * `inputs: string[]`: A collection of strings that specify what inputs the component accepts
|
|
* * `outputs: string[]`: A collection of strings that specify what outputs the component emits
|
|
* * `selectors: string[]`: A collection of strings that specify what selectors are expected on
|
|
* `ng-content` elements in the template to enable content projection (a.k.a. transclusion in
|
|
* AngularJS)
|
|
*
|
|
* The `inputs` and `outputs` are strings that map the names of properties to camelCased
|
|
* attribute names. They are of the form `"prop: attr"`; or simply `"propAndAttr" where the
|
|
* property and attribute have the same identifier.
|
|
*
|
|
* The `selectors` are the values of the `select` attribute of each of the `ng-content` elements
|
|
* that appear in the downgraded component's template.
|
|
* These selectors must be provided in the order that they appear in the template as they are
|
|
* mapped by index to the projected nodes.
|
|
*
|
|
* @experimental
|
|
*/
|
|
export function downgradeComponent(info: /* ComponentInfo */ {
|
|
component: Type<any>;
|
|
inputs?: string[];
|
|
outputs?: string[];
|
|
selectors?: string[]
|
|
}): any /* angular.IInjectable */ {
|
|
const idPrefix = `NG2_UPGRADE_${downgradeCount++}_`;
|
|
let idCount = 0;
|
|
|
|
const directiveFactory:
|
|
angular.IAnnotatedFunction = function(
|
|
$compile: angular.ICompileService,
|
|
$injector: angular.IInjectorService,
|
|
$parse: angular.IParseService): angular.IDirective {
|
|
|
|
return {
|
|
restrict: 'E',
|
|
terminal: true,
|
|
require: [REQUIRE_INJECTOR, REQUIRE_NG_MODEL],
|
|
link: (scope: angular.IScope, element: angular.IAugmentedJQuery, attrs: angular.IAttributes,
|
|
required: any[]) => {
|
|
// We might have to compile the contents asynchronously, because this might have been
|
|
// triggered by `UpgradeNg1ComponentAdapterBuilder`, before the Angular templates have
|
|
// been compiled.
|
|
|
|
const parentInjector: Injector|ParentInjectorPromise =
|
|
required[0] || $injector.get(INJECTOR_KEY);
|
|
const ngModel: angular.INgModelController = required[1];
|
|
|
|
const downgradeFn = (injector: Injector) => {
|
|
const componentFactoryResolver: ComponentFactoryResolver =
|
|
injector.get(ComponentFactoryResolver);
|
|
const componentFactory: ComponentFactory<any> =
|
|
componentFactoryResolver.resolveComponentFactory(info.component);
|
|
|
|
if (!componentFactory) {
|
|
throw new Error('Expecting ComponentFactory for: ' + getComponentName(info.component));
|
|
}
|
|
|
|
const id = idPrefix + (idCount++);
|
|
const injectorPromise = new ParentInjectorPromise(element);
|
|
const facade = new DowngradeComponentAdapter(
|
|
id, info, element, attrs, scope, ngModel, injector, $injector, $compile, $parse,
|
|
componentFactory);
|
|
|
|
const projectableNodes = facade.compileContents();
|
|
facade.createComponent(projectableNodes);
|
|
facade.setupInputs();
|
|
facade.setupOutputs();
|
|
facade.registerCleanup();
|
|
|
|
injectorPromise.resolve(facade.getInjector());
|
|
};
|
|
|
|
if (parentInjector instanceof ParentInjectorPromise) {
|
|
parentInjector.then(downgradeFn);
|
|
} else {
|
|
downgradeFn(parentInjector);
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
// bracket-notation because of closure - see #14441
|
|
directiveFactory['$inject'] = [$COMPILE, $INJECTOR, $PARSE];
|
|
return directiveFactory;
|
|
}
|
|
|
|
/**
|
|
* Synchronous promise-like object to wrap parent injectors,
|
|
* to preserve the synchronous nature of Angular 1's $compile.
|
|
*/
|
|
class ParentInjectorPromise {
|
|
private injector: Injector;
|
|
private injectorKey: string = controllerKey(INJECTOR_KEY);
|
|
private callbacks: ((injector: Injector) => any)[] = [];
|
|
|
|
constructor(private element: angular.IAugmentedJQuery) {
|
|
// Store the promise on the element.
|
|
element.data(this.injectorKey, this);
|
|
}
|
|
|
|
then(callback: (injector: Injector) => any) {
|
|
if (this.injector) {
|
|
callback(this.injector);
|
|
} else {
|
|
this.callbacks.push(callback);
|
|
}
|
|
}
|
|
|
|
resolve(injector: Injector) {
|
|
this.injector = injector;
|
|
|
|
// Store the real injector on the element.
|
|
this.element.data(this.injectorKey, injector);
|
|
|
|
// Release the element to prevent memory leaks.
|
|
this.element = null;
|
|
|
|
// Run the queued callbacks.
|
|
this.callbacks.forEach(callback => callback(injector));
|
|
this.callbacks.length = 0;
|
|
}
|
|
}
|