| 
									
										
										
										
											2016-04-20 11:27:19 -07:00
										 |  |  | export * from 'angular2/src/core/angular_entrypoint'; | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  | export { | 
					
						
							|  |  |  |   BROWSER_PROVIDERS, | 
					
						
							|  |  |  |   CACHED_TEMPLATE_PROVIDER, | 
					
						
							|  |  |  |   ELEMENT_PROBE_PROVIDERS, | 
					
						
							|  |  |  |   ELEMENT_PROBE_PROVIDERS_PROD_MODE, | 
					
						
							|  |  |  |   inspectNativeElement, | 
					
						
							|  |  |  |   BrowserDomAdapter, | 
					
						
							|  |  |  |   By, | 
					
						
							|  |  |  |   Title, | 
					
						
							|  |  |  |   DOCUMENT, | 
					
						
							|  |  |  |   enableDebugTools, | 
					
						
							|  |  |  |   disableDebugTools | 
					
						
							|  |  |  | } from 'angular2/src/platform/browser_common'; | 
					
						
							| 
									
										
										
										
											2015-11-13 11:21:16 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-25 21:47:33 -07:00
										 |  |  | import {Type, isPresent, isBlank} from 'angular2/src/facade/lang'; | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   BROWSER_PROVIDERS, | 
					
						
							| 
									
										
										
										
											2016-04-14 14:52:35 -07:00
										 |  |  |   BROWSER_APP_COMMON_PROVIDERS, | 
					
						
							|  |  |  |   BROWSER_PLATFORM_MARKER | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  | } from 'angular2/src/platform/browser_common'; | 
					
						
							| 
									
										
										
										
											2015-11-13 11:21:16 -08:00
										 |  |  | import {COMPILER_PROVIDERS} from 'angular2/compiler'; | 
					
						
							| 
									
										
										
										
											2016-04-14 14:52:35 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   ComponentRef, | 
					
						
							|  |  |  |   coreLoadAndBootstrap, | 
					
						
							|  |  |  |   reflector, | 
					
						
							|  |  |  |   ReflectiveInjector, | 
					
						
							|  |  |  |   PlatformRef, | 
					
						
							|  |  |  |   OpaqueToken, | 
					
						
							|  |  |  |   getPlatform, | 
					
						
							|  |  |  |   createPlatform, | 
					
						
							|  |  |  |   assertPlatform | 
					
						
							|  |  |  | } from 'angular2/core'; | 
					
						
							| 
									
										
										
										
											2015-11-13 11:21:16 -08:00
										 |  |  | import {ReflectionCapabilities} from 'angular2/src/core/reflection/reflection_capabilities'; | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  | import {XHRImpl} from "angular2/src/platform/browser/xhr_impl"; | 
					
						
							| 
									
										
										
										
											2015-11-16 13:58:24 -08:00
										 |  |  | import {XHR} from 'angular2/compiler'; | 
					
						
							| 
									
										
										
										
											2015-11-13 11:21:16 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * An array of providers that should be passed into `application()` when bootstrapping a component. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-04-28 23:28:13 -07:00
										 |  |  | export const BROWSER_APP_PROVIDERS: Array<any /*Type | Provider | any[]*/> = /*@ts2dart_const*/[ | 
					
						
							| 
									
										
										
										
											2015-11-16 13:58:24 -08:00
										 |  |  |   BROWSER_APP_COMMON_PROVIDERS, | 
					
						
							|  |  |  |   COMPILER_PROVIDERS, | 
					
						
							| 
									
										
										
										
											2016-04-28 23:28:13 -07:00
										 |  |  |   /*@ts2dart_Provider*/ {provide: XHR, useClass: XHRImpl}, | 
					
						
							| 
									
										
										
										
											2016-04-25 21:58:48 -07:00
										 |  |  | ]; | 
					
						
							| 
									
										
										
										
											2015-11-13 11:21:16 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-14 14:52:35 -07:00
										 |  |  | export function browserPlatform(): PlatformRef { | 
					
						
							|  |  |  |   if (isBlank(getPlatform())) { | 
					
						
							|  |  |  |     createPlatform(ReflectiveInjector.resolveAndCreate(BROWSER_PROVIDERS)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return assertPlatform(BROWSER_PLATFORM_MARKER); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-13 11:21:16 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Bootstrapping for Angular applications. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You instantiate an Angular application by explicitly specifying a component to use | 
					
						
							|  |  |  |  * as the root component for your application via the `bootstrap()` method. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ## Simple Example | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Assuming this `index.html`: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ```html
 | 
					
						
							|  |  |  |  * <html> | 
					
						
							|  |  |  |  *   <!-- load Angular script tags here. --> | 
					
						
							|  |  |  |  *   <body> | 
					
						
							|  |  |  |  *     <my-app>loading...</my-app> | 
					
						
							|  |  |  |  *   </body> | 
					
						
							|  |  |  |  * </html> | 
					
						
							|  |  |  |  * ```
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * An application is bootstrapped inside an existing browser DOM, typically `index.html`. | 
					
						
							|  |  |  |  * Unlike Angular 1, Angular 2 does not compile/process providers in `index.html`. This is | 
					
						
							|  |  |  |  * mainly for security reasons, as well as architectural changes in Angular 2. This means | 
					
						
							|  |  |  |  * that `index.html` can safely be processed using server-side technologies such as | 
					
						
							|  |  |  |  * providers. Bindings can thus use double-curly `{{ syntax }}` without collision from | 
					
						
							|  |  |  |  * Angular 2 component double-curly `{{ syntax }}`. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * We can use this script code: | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2015-11-30 08:28:54 -08:00
										 |  |  |  * {@example core/ts/bootstrap/bootstrap.ts region='bootstrap'} | 
					
						
							| 
									
										
										
										
											2015-11-13 11:21:16 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * When the app developer invokes `bootstrap()` with the root component `MyApp` as its | 
					
						
							|  |  |  |  * argument, Angular performs the following tasks: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  1. It uses the component's `selector` property to locate the DOM element which needs | 
					
						
							|  |  |  |  *     to be upgraded into the angular component. | 
					
						
							|  |  |  |  *  2. It creates a new child injector (from the platform injector). Optionally, you can | 
					
						
							|  |  |  |  *     also override the injector configuration for an app by invoking `bootstrap` with the | 
					
						
							|  |  |  |  *     `componentInjectableBindings` argument. | 
					
						
							|  |  |  |  *  3. It creates a new `Zone` and connects it to the angular application's change detection | 
					
						
							|  |  |  |  *     domain instance. | 
					
						
							|  |  |  |  *  4. It creates an emulated or shadow DOM on the selected component's host element and loads the | 
					
						
							|  |  |  |  *     template into it. | 
					
						
							|  |  |  |  *  5. It instantiates the specified component. | 
					
						
							|  |  |  |  *  6. Finally, Angular performs change detection to apply the initial data providers for the | 
					
						
							|  |  |  |  *     application. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ## Bootstrapping Multiple Applications | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * When working within a browser window, there are many singleton resources: cookies, title, | 
					
						
							|  |  |  |  * location, and others. Angular services that represent these resources must likewise be | 
					
						
							|  |  |  |  * shared across all Angular applications that occupy the same browser window. For this | 
					
						
							|  |  |  |  * reason, Angular creates exactly one global platform object which stores all shared | 
					
						
							|  |  |  |  * services, and each angular application injector has the platform injector as its parent. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Each application has its own private injector as well. When there are multiple | 
					
						
							|  |  |  |  * applications on a page, Angular treats each application injector's services as private | 
					
						
							|  |  |  |  * to that application. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ## API | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * - `appComponentType`: The root component which should act as the application. This is | 
					
						
							|  |  |  |  *   a reference to a `Type` which is annotated with `@Component(...)`. | 
					
						
							|  |  |  |  * - `customProviders`: An additional set of providers that can be added to the | 
					
						
							|  |  |  |  *   app injector to override default injection behavior. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Returns a `Promise` of {@link ComponentRef}. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | export function bootstrap( | 
					
						
							|  |  |  |     appComponentType: Type, | 
					
						
							| 
									
										
										
										
											2016-04-30 10:52:04 -07:00
										 |  |  |     customProviders?: Array<any /*Type | Provider | any[]*/>): Promise<ComponentRef<any>> { | 
					
						
							| 
									
										
										
										
											2015-11-13 11:21:16 -08:00
										 |  |  |   reflector.reflectionCapabilities = new ReflectionCapabilities(); | 
					
						
							| 
									
										
										
										
											2016-04-14 14:52:35 -07:00
										 |  |  |   var appInjector = ReflectiveInjector.resolveAndCreate( | 
					
						
							|  |  |  |       [BROWSER_APP_PROVIDERS, isPresent(customProviders) ? customProviders : []], | 
					
						
							|  |  |  |       browserPlatform().injector); | 
					
						
							|  |  |  |   return coreLoadAndBootstrap(appInjector, appComponentType); | 
					
						
							| 
									
										
										
										
											2015-11-20 16:35:55 -08:00
										 |  |  | } |