What it does
Part of the upgrade/static library for hybrid upgrade apps that support AoT compilation
Allows Angular 1 and Angular 2+ components to be used together inside a hybrid upgrade application, which supports AoT compilation.
Specifically, the classes and functions in the upgrade/static
module allow the following:
- Creation of an Angular 2+ directive that wraps and exposes an Angular 1 component so
that it can be used in an Angular 2 template. See
UpgradeComponent
. - Creation of an Angular 1 directive that wraps and exposes an Angular 2+ component so
that it can be used in an Angular 1 template. See
downgradeComponent
. - Creation of an Angular 2+ root injector provider that wraps and exposes an Angular 1 service so that it can be injected into an Angular 2+ context. See Upgrading an Angular 1 service below.
- Creation of an Angular 1 service that wraps and exposes an Angular 2+ injectable
so that it can be injected into an Angular 1 context. See
downgradeInjectable
. - Bootstrapping of a hybrid Angular application which contains both of the frameworks coexisting in a single application. See the example below.
Mental Model
When reasoning about how a hybrid application works it is useful to have a mental model which describes what is happening and explains what is happening at the lowest level.
- There are two independent frameworks running in a single application, each framework treats the other as a black box.
- Each DOM element on the page is owned exactly by one framework. Whichever framework instantiated the element is the owner. Each framework only updates/interacts with its own DOM elements and ignores others.
- Angular 1 directives always execute inside the Angular 1 framework codebase regardless of where they are instantiated.
- Angular 2+ components always execute inside the Angular 2+ framework codebase regardless of where they are instantiated.
- An Angular 1 component can be "upgraded"" to an Angular 2+ component. This is achieved by
defining an Angular 2+ directive, which bootstraps the Angular 1 component at its location
in the DOM. See
UpgradeComponent
. - An Angular 2+ component can be "downgraded"" to an Angular 1 component. This is achieved by
defining an Angular 1 directive, which bootstraps the Angular 2+ component at its location
in the DOM. See
downgradeComponent
. - Whenever an "upgraded"/"downgraded" component is instantiated the host element is owned by
the framework doing the instantiation. The other framework then instantiates and owns the
view for that component.
a. This implies that the component bindings will always follow the semantics of the
instantiation framework.
b. The DOM attributes are parsed by the framework that owns the current template. So
attributes
in Angular 1 templates must use kebab-case, while Angular 1 templates must use camelCase.
c. However the template binding syntax will always use the Angular 2+ style, e.g. square
brackets (
[...]
) for property binding. - Angular 1 is always bootstrapped first and owns the root component.
- The new application is running in an Angular 2+ zone, and therefore it no longer needs calls
to
$apply()
.
How to use
import {UpgradeModule} from '@angular/upgrade/static';
Example
Import the UpgradeModule
into your top level Angular 2+ NgModule
.
Then bootstrap the hybrid upgrade app's module, get hold of the UpgradeModule
instance
and use it to bootstrap the top level Angular 1
module.
Upgrading an Angular 1 service
There is no specific API for upgrading an Angular 1 service. Instead you should just follow the following recipe:
Let's say you have an Angular 1 service:
Then you should define an Angular 2+ provider to be included in your NgModule
providers
property.
Then you can use the "upgraded" Angular 1 service by injecting it into an Angular 2 component or service.
Class Overview
class UpgradeModule {
constructor
(injector: Injector, ngZone: NgZone)
$injector
: any
injector
: Injector
ngZone
: NgZone
bootstrap
(element: Element, modules?: string[], config?: any)
}
Class Description
This class is an NgModule
, which you import to provide Angular 1 core services,
and has an instance method used to bootstrap the hybrid upgrade application.
Core Angular 1 services
Importing this NgModule
will add providers for the core
Angular 1 services to the root injector.
Bootstrap
The runtime instance of this class contains a bootstrap()
method, which you use to bootstrap the top level Angular 1 module onto an element in the
DOM for the hybrid upgrade app.
It also contains properties to access the root injector, the
bootstrap NgZone
and the
Angular 1 $injector.
Annotations
@NgModule({providers: angular1Providers})
Class Details
$injector : any
The Angular 1 $injector
for the upgrade application.
injector : Injector
The root Injector
for the upgrade application.
ngZone : NgZone
The bootstrap zone for the upgrade application
bootstrap(element: Element, modules?: string[], config?: any)
Bootstrap an Angular 1 application from this NgModule
exported from @angular/upgrade/static, defined in @angular/upgrade/src/aot/upgrade_module.ts