feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2017-02-28 17:49:37 -08:00
|
|
|
import {ɵAnimationEngine} from '@angular/animations/browser';
|
2017-03-07 16:36:12 -08:00
|
|
|
import {ApplicationRef, NgModule, NgZone, Provider, RendererFactory2} from '@angular/core';
|
2016-07-18 03:50:31 -07:00
|
|
|
import {FormsModule} from '@angular/forms';
|
2017-02-28 17:49:37 -08:00
|
|
|
import {NoopAnimationsModule, ɵAnimationRendererFactory} from '@angular/platform-browser/animations';
|
2017-03-07 16:36:12 -08:00
|
|
|
import {ServerModule, ɵServerRendererFactory2} from '@angular/platform-server';
|
2016-08-18 10:11:06 -07:00
|
|
|
import {MdButtonModule} from '@angular2-material/button';
|
2016-11-29 15:36:33 -08:00
|
|
|
// Note: don't refer to third_party_src as we want to test that
|
|
|
|
// we can compile components from node_modules!
|
|
|
|
import {ThirdpartyModule} from 'third_party/module';
|
2016-10-24 13:28:23 -07:00
|
|
|
|
2016-08-19 12:51:01 -07:00
|
|
|
import {MultipleComponentsMyComp, NextComp} from './a/multiple_components';
|
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
|
|
|
import {AnimateCmp} from './animate';
|
|
|
|
import {BasicComp} from './basic';
|
2016-10-24 13:28:23 -07:00
|
|
|
import {ComponentUsingThirdParty} from './comp_using_3rdp';
|
2017-03-15 13:39:00 -07:00
|
|
|
import {CUSTOM} from './custom_token';
|
2016-07-25 00:36:30 -07:00
|
|
|
import {CompWithAnalyzeEntryComponentsProvider, CompWithEntryComponents} from './entry_components';
|
2016-09-06 07:49:38 -07:00
|
|
|
import {CompConsumingEvents, CompUsingPipes, CompWithProviders, CompWithReferences, DirPublishingEvents, ModuleUsingCustomElements} from './features';
|
2016-11-29 12:02:50 -08:00
|
|
|
import {CompUsingRootModuleDirectiveAndPipe, SomeDirectiveInRootModule, SomeLibModule, SomePipeInRootModule, SomeService} from './module_fixtures';
|
2016-08-19 12:51:01 -07:00
|
|
|
import {CompWithNgContent, ProjectingComp} from './projection';
|
|
|
|
import {CompForChildQuery, CompWithChildQuery, CompWithDirectiveChild, DirectiveForQuery} from './queries';
|
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
|
|
|
|
2017-03-06 17:15:08 -08:00
|
|
|
export function instantiateServerRendererFactory(
|
2017-03-07 16:36:12 -08:00
|
|
|
renderer: RendererFactory2, engine: ɵAnimationEngine, zone: NgZone) {
|
2017-03-06 17:15:08 -08:00
|
|
|
return new ɵAnimationRendererFactory(renderer, engine, zone);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(matsko): create a server module for animations and use
|
|
|
|
// that instead of these manual providers here.
|
|
|
|
export const SERVER_ANIMATIONS_PROVIDERS: Provider[] = [{
|
2017-03-07 16:36:12 -08:00
|
|
|
provide: RendererFactory2,
|
2017-03-06 17:15:08 -08:00
|
|
|
useFactory: instantiateServerRendererFactory,
|
2017-03-07 16:36:12 -08:00
|
|
|
deps: [ɵServerRendererFactory2, ɵAnimationEngine, NgZone]
|
2017-03-06 17:15:08 -08:00
|
|
|
}];
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
2016-09-06 07:49:38 -07:00
|
|
|
AnimateCmp,
|
|
|
|
BasicComp,
|
2016-10-24 13:28:23 -07:00
|
|
|
CompConsumingEvents,
|
2016-09-06 07:49:38 -07:00
|
|
|
CompForChildQuery,
|
2016-10-24 13:28:23 -07:00
|
|
|
CompUsingPipes,
|
|
|
|
CompUsingRootModuleDirectiveAndPipe,
|
2016-09-06 07:49:38 -07:00
|
|
|
CompWithAnalyzeEntryComponentsProvider,
|
|
|
|
CompWithChildQuery,
|
|
|
|
CompWithDirectiveChild,
|
2016-10-24 13:28:23 -07:00
|
|
|
CompWithEntryComponents,
|
2016-09-06 07:49:38 -07:00
|
|
|
CompWithNgContent,
|
|
|
|
CompWithProviders,
|
|
|
|
CompWithReferences,
|
2016-10-24 13:28:23 -07:00
|
|
|
DirectiveForQuery,
|
2016-09-06 07:49:38 -07:00
|
|
|
DirPublishingEvents,
|
|
|
|
MultipleComponentsMyComp,
|
|
|
|
NextComp,
|
2016-10-24 13:28:23 -07:00
|
|
|
ProjectingComp,
|
|
|
|
SomeDirectiveInRootModule,
|
|
|
|
SomePipeInRootModule,
|
|
|
|
ComponentUsingThirdParty,
|
2016-07-18 03:50:31 -07:00
|
|
|
],
|
2016-08-18 10:11:06 -07:00
|
|
|
imports: [
|
2017-03-01 17:13:06 -08:00
|
|
|
NoopAnimationsModule,
|
2016-11-03 11:16:28 -07:00
|
|
|
ServerModule,
|
2016-10-24 13:28:23 -07:00
|
|
|
FormsModule,
|
|
|
|
MdButtonModule,
|
|
|
|
ModuleUsingCustomElements,
|
2016-11-29 12:02:50 -08:00
|
|
|
SomeLibModule.withProviders(),
|
2016-10-24 13:28:23 -07:00
|
|
|
ThirdpartyModule,
|
2016-08-18 10:11:06 -07:00
|
|
|
],
|
2017-03-06 17:15:08 -08:00
|
|
|
providers: [
|
|
|
|
SomeService,
|
|
|
|
SERVER_ANIMATIONS_PROVIDERS,
|
2017-03-15 09:24:56 -07:00
|
|
|
{provide: CUSTOM, useValue: {name: 'some name'}},
|
2017-03-06 17:15:08 -08:00
|
|
|
],
|
2016-07-25 00:36:30 -07:00
|
|
|
entryComponents: [
|
2016-10-24 13:28:23 -07:00
|
|
|
AnimateCmp,
|
|
|
|
BasicComp,
|
|
|
|
CompUsingRootModuleDirectiveAndPipe,
|
|
|
|
CompWithAnalyzeEntryComponentsProvider,
|
|
|
|
CompWithChildQuery,
|
|
|
|
CompWithEntryComponents,
|
|
|
|
CompWithReferences,
|
|
|
|
ProjectingComp,
|
|
|
|
ComponentUsingThirdParty,
|
2016-07-07 10:05:55 -07:00
|
|
|
]
|
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
|
|
|
})
|
|
|
|
export class MainModule {
|
|
|
|
constructor(public appRef: ApplicationRef) {}
|
2016-08-02 06:54:08 -07:00
|
|
|
|
|
|
|
ngDoBootstrap() {}
|
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
|
|
|
}
|