2016-06-10 10:21:53 -07:00
|
|
|
import {FORM_PROVIDERS, PlatformLocation} from '@angular/common';
|
|
|
|
import {APPLICATION_COMMON_PROVIDERS, ExceptionHandler, OpaqueToken, PLATFORM_COMMON_PROVIDERS, PLATFORM_INITIALIZER, PlatformRef, ReflectiveInjector, RootRenderer, Testability, assertPlatform, createPlatform, getPlatform} from '@angular/core';
|
2016-06-08 16:38:52 -07:00
|
|
|
|
2016-06-10 10:21:53 -07:00
|
|
|
import {AnimationDriver, NoOpAnimationDriver, SanitizationService, wtfInit} from '../core_private';
|
2016-05-25 12:46:22 -07:00
|
|
|
import {WebAnimationsDriver} from '../src/dom/web_animations_driver';
|
2016-06-08 16:38:52 -07:00
|
|
|
|
|
|
|
import {BrowserDomAdapter} from './browser/browser_adapter';
|
|
|
|
import {BrowserPlatformLocation} from './browser/location/browser_platform_location';
|
|
|
|
import {BrowserGetTestability} from './browser/testability';
|
|
|
|
import {ELEMENT_PROBE_PROVIDERS} from './dom/debug/ng_probe';
|
|
|
|
import {getDOM} from './dom/dom_adapter';
|
|
|
|
import {DomRootRenderer, DomRootRenderer_} from './dom/dom_renderer';
|
|
|
|
import {DOCUMENT} from './dom/dom_tokens';
|
|
|
|
import {DomEventsPlugin} from './dom/events/dom_events';
|
|
|
|
import {EVENT_MANAGER_PLUGINS, EventManager} from './dom/events/event_manager';
|
|
|
|
import {HAMMER_GESTURE_CONFIG, HammerGestureConfig, HammerGesturesPlugin} from './dom/events/hammer_gestures';
|
|
|
|
import {KeyEventsPlugin} from './dom/events/key_events';
|
|
|
|
import {DomSharedStylesHost, SharedStylesHost} from './dom/shared_styles_host';
|
2016-06-10 10:21:53 -07:00
|
|
|
import {isBlank} from './facade/lang';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {DomSanitizationService, DomSanitizationServiceImpl} from './security/dom_sanitization_service';
|
2016-05-20 16:11:49 -07:00
|
|
|
|
|
|
|
|
|
|
|
const BROWSER_PLATFORM_MARKER = new OpaqueToken('BrowserPlatformMarker');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A set of providers to initialize the Angular platform in a web browser.
|
|
|
|
*
|
|
|
|
* Used automatically by `bootstrap`, or can be passed to {@link platform}.
|
|
|
|
*/
|
|
|
|
export const BROWSER_PLATFORM_PROVIDERS: Array<any /*Type | Provider | any[]*/> = [
|
2016-06-08 16:38:52 -07:00
|
|
|
{provide: BROWSER_PLATFORM_MARKER, useValue: true}, PLATFORM_COMMON_PROVIDERS,
|
2016-05-20 16:11:49 -07:00
|
|
|
{provide: PLATFORM_INITIALIZER, useValue: initDomAdapter, multi: true},
|
|
|
|
{provide: PlatformLocation, useClass: BrowserPlatformLocation}
|
|
|
|
];
|
|
|
|
|
|
|
|
export const BROWSER_SANITIZATION_PROVIDERS: Array<any> = [
|
|
|
|
{provide: SanitizationService, useExisting: DomSanitizationService},
|
|
|
|
{provide: DomSanitizationService, useClass: DomSanitizationServiceImpl},
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A set of providers to initialize an Angular application in a web browser.
|
|
|
|
*
|
|
|
|
* Used automatically by `bootstrap`, or can be passed to {@link PlatformRef.application}.
|
|
|
|
*/
|
2016-06-08 16:38:52 -07:00
|
|
|
export const BROWSER_APP_PROVIDERS: Array<any /*Type | Provider | any[]*/> = [
|
|
|
|
APPLICATION_COMMON_PROVIDERS, FORM_PROVIDERS, BROWSER_SANITIZATION_PROVIDERS,
|
|
|
|
{provide: ExceptionHandler, useFactory: _exceptionHandler, deps: []},
|
|
|
|
{provide: DOCUMENT, useFactory: _document, deps: []},
|
|
|
|
{provide: EVENT_MANAGER_PLUGINS, useClass: DomEventsPlugin, multi: true},
|
|
|
|
{provide: EVENT_MANAGER_PLUGINS, useClass: KeyEventsPlugin, multi: true},
|
|
|
|
{provide: EVENT_MANAGER_PLUGINS, useClass: HammerGesturesPlugin, multi: true},
|
|
|
|
{provide: HAMMER_GESTURE_CONFIG, useClass: HammerGestureConfig},
|
|
|
|
{provide: DomRootRenderer, useClass: DomRootRenderer_},
|
|
|
|
{provide: RootRenderer, useExisting: DomRootRenderer},
|
|
|
|
{provide: SharedStylesHost, useExisting: DomSharedStylesHost},
|
|
|
|
{provide: AnimationDriver, useFactory: _resolveDefaultAnimationDriver}, DomSharedStylesHost,
|
|
|
|
Testability, EventManager, ELEMENT_PROBE_PROVIDERS
|
|
|
|
];
|
2016-05-20 16:11:49 -07:00
|
|
|
|
|
|
|
|
|
|
|
export function browserPlatform(): PlatformRef {
|
|
|
|
if (isBlank(getPlatform())) {
|
|
|
|
createPlatform(ReflectiveInjector.resolveAndCreate(BROWSER_PLATFORM_PROVIDERS));
|
|
|
|
}
|
|
|
|
return assertPlatform(BROWSER_PLATFORM_MARKER);
|
|
|
|
}
|
|
|
|
|
|
|
|
function initDomAdapter() {
|
|
|
|
BrowserDomAdapter.makeCurrent();
|
|
|
|
wtfInit();
|
|
|
|
BrowserGetTestability.init();
|
|
|
|
}
|
|
|
|
|
|
|
|
function _exceptionHandler(): ExceptionHandler {
|
|
|
|
return new ExceptionHandler(getDOM());
|
|
|
|
}
|
|
|
|
|
|
|
|
function _document(): any {
|
|
|
|
return getDOM().defaultDoc();
|
|
|
|
}
|
2016-05-25 12:46:22 -07:00
|
|
|
|
|
|
|
function _resolveDefaultAnimationDriver(): AnimationDriver {
|
|
|
|
if (getDOM().supportsWebAnimation()) {
|
|
|
|
return new WebAnimationsDriver();
|
|
|
|
}
|
|
|
|
return new NoOpAnimationDriver();
|
|
|
|
}
|