2016-06-23 09:47:54 -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-05-11 10:26:02 -07:00
|
|
|
import {ANALYZE_FOR_ENTRY_COMPONENTS, ChangeDetectionStrategy, ChangeDetectorRef, ComponentFactory, ComponentFactoryResolver, ComponentRef, ElementRef, Injector, LOCALE_ID, NgModuleFactory, NgModuleRef, QueryList, Renderer, SecurityContext, TRANSLATIONS_FORMAT, TemplateRef, ViewContainerRef, ViewEncapsulation, ɵCodegenComponentFactoryResolver, ɵEMPTY_ARRAY, ɵEMPTY_MAP, ɵand, ɵccf, ɵcmf, ɵcrt, ɵdid, ɵeld, ɵinlineInterpolate, ɵinterpolate, ɵmod, ɵmpd, ɵncd, ɵnov, ɵpad, ɵpid, ɵpod, ɵppd, ɵprd, ɵqud, ɵreflector, ɵregisterModuleFactory, ɵted, ɵunv, ɵvid} from '@angular/core';
|
2016-08-22 17:18:25 -07:00
|
|
|
|
2017-01-04 13:59:43 -08:00
|
|
|
import {CompileIdentifierMetadata, CompileTokenMetadata} from './compile_metadata';
|
2017-05-16 16:30:37 -07:00
|
|
|
import * as o from './output/output_ast';
|
2016-01-06 14:13:44 -08:00
|
|
|
|
2017-02-14 13:33:06 -08:00
|
|
|
const CORE = assetUrl('core');
|
2016-01-06 14:13:44 -08:00
|
|
|
|
|
|
|
export class Identifiers {
|
2017-05-16 16:30:37 -07:00
|
|
|
static ANALYZE_FOR_ENTRY_COMPONENTS: o.ExternalReference = {
|
2016-07-25 00:36:30 -07:00
|
|
|
name: 'ANALYZE_FOR_ENTRY_COMPONENTS',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2016-07-25 00:36:30 -07:00
|
|
|
runtime: ANALYZE_FOR_ENTRY_COMPONENTS
|
2016-08-24 17:39:49 -07:00
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static ElementRef:
|
|
|
|
o.ExternalReference = {name: 'ElementRef', moduleName: CORE, runtime: ElementRef};
|
|
|
|
static NgModuleRef:
|
|
|
|
o.ExternalReference = {name: 'NgModuleRef', moduleName: CORE, runtime: NgModuleRef};
|
2017-02-14 13:33:06 -08:00
|
|
|
static ViewContainerRef:
|
2017-05-16 16:30:37 -07:00
|
|
|
o.ExternalReference = {name: 'ViewContainerRef', moduleName: CORE, runtime: ViewContainerRef};
|
|
|
|
static ChangeDetectorRef: o.ExternalReference = {
|
|
|
|
name: 'ChangeDetectorRef',
|
|
|
|
moduleName: CORE,
|
|
|
|
runtime: ChangeDetectorRef
|
|
|
|
};
|
|
|
|
static QueryList: o.ExternalReference = {name: 'QueryList', moduleName: CORE, runtime: QueryList};
|
|
|
|
static TemplateRef:
|
|
|
|
o.ExternalReference = {name: 'TemplateRef', moduleName: CORE, runtime: TemplateRef};
|
|
|
|
static CodegenComponentFactoryResolver: o.ExternalReference = {
|
2017-02-14 13:33:06 -08:00
|
|
|
name: 'ɵCodegenComponentFactoryResolver',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2017-02-14 13:33:06 -08:00
|
|
|
runtime: ɵCodegenComponentFactoryResolver
|
2016-08-24 17:39:49 -07:00
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static ComponentFactoryResolver: o.ExternalReference = {
|
2016-06-22 14:06:23 -07:00
|
|
|
name: 'ComponentFactoryResolver',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2016-06-22 14:06:23 -07:00
|
|
|
runtime: ComponentFactoryResolver
|
2016-08-24 17:39:49 -07:00
|
|
|
};
|
2017-02-14 13:33:06 -08:00
|
|
|
static ComponentFactory:
|
2017-05-16 16:30:37 -07:00
|
|
|
o.ExternalReference = {name: 'ComponentFactory', moduleName: CORE, runtime: ComponentFactory};
|
2017-02-14 13:33:06 -08:00
|
|
|
static ComponentRef:
|
2017-05-16 16:30:37 -07:00
|
|
|
o.ExternalReference = {name: 'ComponentRef', moduleName: CORE, runtime: ComponentRef};
|
2017-02-14 13:33:06 -08:00
|
|
|
static NgModuleFactory:
|
2017-05-16 16:30:37 -07:00
|
|
|
o.ExternalReference = {name: 'NgModuleFactory', moduleName: CORE, runtime: NgModuleFactory};
|
|
|
|
static createModuleFactory: o.ExternalReference = {
|
2017-05-11 10:26:02 -07:00
|
|
|
name: 'ɵcmf',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2017-05-11 10:26:02 -07:00
|
|
|
runtime: ɵcmf,
|
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static moduleDef: o.ExternalReference = {
|
2017-05-11 10:26:02 -07:00
|
|
|
name: 'ɵmod',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2017-05-11 10:26:02 -07:00
|
|
|
runtime: ɵmod,
|
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static moduleProviderDef: o.ExternalReference = {
|
2017-05-11 10:26:02 -07:00
|
|
|
name: 'ɵmpd',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2017-05-11 10:26:02 -07:00
|
|
|
runtime: ɵmpd,
|
2016-08-24 17:39:49 -07:00
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static RegisterModuleFactoryFn: o.ExternalReference = {
|
2017-02-14 13:33:06 -08:00
|
|
|
name: 'ɵregisterModuleFactory',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2017-02-14 13:33:06 -08:00
|
|
|
runtime: ɵregisterModuleFactory,
|
2016-09-01 13:46:08 -07:00
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static Injector: o.ExternalReference = {name: 'Injector', moduleName: CORE, runtime: Injector};
|
|
|
|
static ViewEncapsulation: o.ExternalReference = {
|
|
|
|
name: 'ViewEncapsulation',
|
|
|
|
moduleName: CORE,
|
|
|
|
runtime: ViewEncapsulation
|
|
|
|
};
|
|
|
|
static ChangeDetectionStrategy: o.ExternalReference = {
|
2016-01-06 14:13:44 -08:00
|
|
|
name: 'ChangeDetectionStrategy',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2016-08-29 08:52:25 -07:00
|
|
|
runtime: ChangeDetectionStrategy
|
2016-08-24 17:39:49 -07:00
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static SecurityContext: o.ExternalReference = {
|
feat: security implementation in Angular 2.
Summary:
This adds basic security hooks to Angular 2.
* `SecurityContext` is a private API between core, compiler, and
platform-browser. `SecurityContext` communicates what context a value is used
in across template parser, compiler, and sanitization at runtime.
* `SanitizationService` is the bare bones interface to sanitize values for a
particular context.
* `SchemaElementRegistry.securityContext(tagName, attributeOrPropertyName)`
determines the security context for an attribute or property (it turns out
attributes and properties match for the purposes of sanitization).
Based on these hooks:
* `DomSchemaElementRegistry` decides what sanitization applies in a particular
context.
* `DomSanitizationService` implements `SanitizationService` and adds *Safe
Value*s, i.e. the ability to mark a value as safe and not requiring further
sanitization.
* `url_sanitizer` and `style_sanitizer` sanitize URLs and Styles, respectively
(surprise!).
`DomSanitizationService` is the default implementation bound for browser
applications, in the three contexts (browser rendering, web worker rendering,
server side rendering).
BREAKING CHANGES:
*** SECURITY WARNING ***
Angular 2 Release Candidates do not implement proper contextual escaping yet.
Make sure to correctly escape all values that go into the DOM.
*** SECURITY WARNING ***
Reviewers: IgorMinar
Differential Revision: https://reviews.angular.io/D103
2016-04-29 16:04:08 -07:00
|
|
|
name: 'SecurityContext',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
feat: security implementation in Angular 2.
Summary:
This adds basic security hooks to Angular 2.
* `SecurityContext` is a private API between core, compiler, and
platform-browser. `SecurityContext` communicates what context a value is used
in across template parser, compiler, and sanitization at runtime.
* `SanitizationService` is the bare bones interface to sanitize values for a
particular context.
* `SchemaElementRegistry.securityContext(tagName, attributeOrPropertyName)`
determines the security context for an attribute or property (it turns out
attributes and properties match for the purposes of sanitization).
Based on these hooks:
* `DomSchemaElementRegistry` decides what sanitization applies in a particular
context.
* `DomSanitizationService` implements `SanitizationService` and adds *Safe
Value*s, i.e. the ability to mark a value as safe and not requiring further
sanitization.
* `url_sanitizer` and `style_sanitizer` sanitize URLs and Styles, respectively
(surprise!).
`DomSanitizationService` is the default implementation bound for browser
applications, in the three contexts (browser rendering, web worker rendering,
server side rendering).
BREAKING CHANGES:
*** SECURITY WARNING ***
Angular 2 Release Candidates do not implement proper contextual escaping yet.
Make sure to correctly escape all values that go into the DOM.
*** SECURITY WARNING ***
Reviewers: IgorMinar
Differential Revision: https://reviews.angular.io/D103
2016-04-29 16:04:08 -07:00
|
|
|
runtime: SecurityContext,
|
2016-08-24 17:39:49 -07:00
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static LOCALE_ID: o.ExternalReference = {name: 'LOCALE_ID', moduleName: CORE, runtime: LOCALE_ID};
|
|
|
|
static TRANSLATIONS_FORMAT: o.ExternalReference = {
|
|
|
|
name: 'TRANSLATIONS_FORMAT',
|
|
|
|
moduleName: CORE,
|
|
|
|
runtime: TRANSLATIONS_FORMAT
|
|
|
|
};
|
|
|
|
static inlineInterpolate: o.ExternalReference = {
|
|
|
|
name: 'ɵinlineInterpolate',
|
|
|
|
moduleName: CORE,
|
|
|
|
runtime: ɵinlineInterpolate
|
|
|
|
};
|
2017-02-27 23:08:19 -08:00
|
|
|
static interpolate:
|
2017-05-16 16:30:37 -07:00
|
|
|
o.ExternalReference = {name: 'ɵinterpolate', moduleName: CORE, runtime: ɵinterpolate};
|
2017-02-27 23:08:19 -08:00
|
|
|
static EMPTY_ARRAY:
|
2017-05-16 16:30:37 -07:00
|
|
|
o.ExternalReference = {name: 'ɵEMPTY_ARRAY', moduleName: CORE, runtime: ɵEMPTY_ARRAY};
|
|
|
|
static EMPTY_MAP:
|
|
|
|
o.ExternalReference = {name: 'ɵEMPTY_MAP', moduleName: CORE, runtime: ɵEMPTY_MAP};
|
|
|
|
static Renderer: o.ExternalReference = {name: 'Renderer', moduleName: CORE, runtime: Renderer};
|
|
|
|
static viewDef: o.ExternalReference = {name: 'ɵvid', moduleName: CORE, runtime: ɵvid};
|
|
|
|
static elementDef: o.ExternalReference = {name: 'ɵeld', moduleName: CORE, runtime: ɵeld};
|
|
|
|
static anchorDef: o.ExternalReference = {name: 'ɵand', moduleName: CORE, runtime: ɵand};
|
|
|
|
static textDef: o.ExternalReference = {name: 'ɵted', moduleName: CORE, runtime: ɵted};
|
|
|
|
static directiveDef: o.ExternalReference = {name: 'ɵdid', moduleName: CORE, runtime: ɵdid};
|
|
|
|
static providerDef: o.ExternalReference = {name: 'ɵprd', moduleName: CORE, runtime: ɵprd};
|
|
|
|
static queryDef: o.ExternalReference = {name: 'ɵqud', moduleName: CORE, runtime: ɵqud};
|
|
|
|
static pureArrayDef: o.ExternalReference = {name: 'ɵpad', moduleName: CORE, runtime: ɵpad};
|
|
|
|
static pureObjectDef: o.ExternalReference = {name: 'ɵpod', moduleName: CORE, runtime: ɵpod};
|
|
|
|
static purePipeDef: o.ExternalReference = {name: 'ɵppd', moduleName: CORE, runtime: ɵppd};
|
|
|
|
static pipeDef: o.ExternalReference = {name: 'ɵpid', moduleName: CORE, runtime: ɵpid};
|
|
|
|
static nodeValue: o.ExternalReference = {name: 'ɵnov', moduleName: CORE, runtime: ɵnov};
|
|
|
|
static ngContentDef: o.ExternalReference = {name: 'ɵncd', moduleName: CORE, runtime: ɵncd};
|
|
|
|
static unwrapValue: o.ExternalReference = {name: 'ɵunv', moduleName: CORE, runtime: ɵunv};
|
|
|
|
static createRendererType2: o.ExternalReference = {name: 'ɵcrt', moduleName: CORE, runtime: ɵcrt};
|
|
|
|
static RendererType2: o.ExternalReference = {
|
2017-03-07 16:36:12 -08:00
|
|
|
name: 'RendererType2',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2017-02-17 08:56:49 -08:00
|
|
|
// type only
|
|
|
|
runtime: null
|
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static ViewDefinition: o.ExternalReference = {
|
2017-02-18 21:28:27 -08:00
|
|
|
name: 'ɵViewDefinition',
|
2017-05-16 16:30:37 -07:00
|
|
|
moduleName: CORE,
|
2017-02-17 08:56:49 -08:00
|
|
|
// type only
|
|
|
|
runtime: null
|
|
|
|
};
|
2017-05-16 16:30:37 -07:00
|
|
|
static createComponentFactory:
|
|
|
|
o.ExternalReference = {name: 'ɵccf', moduleName: CORE, runtime: ɵccf};
|
2016-10-19 09:17:36 -07:00
|
|
|
}
|
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
export function assetUrl(pkg: string, path: string | null = null, type: string = 'src'): string {
|
2016-10-19 09:17:36 -07:00
|
|
|
if (path == null) {
|
2017-02-14 13:33:06 -08:00
|
|
|
return `@angular/${pkg}`;
|
2016-10-19 09:17:36 -07:00
|
|
|
} else {
|
2016-11-15 10:14:01 -08:00
|
|
|
return `@angular/${pkg}/${type}/${path}`;
|
2016-10-19 09:17:36 -07:00
|
|
|
}
|
2016-08-24 17:39:49 -07:00
|
|
|
}
|
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
export function resolveIdentifier(identifier: o.ExternalReference) {
|
2017-02-14 13:33:06 -08:00
|
|
|
let name = identifier.name;
|
2017-05-16 16:30:37 -07:00
|
|
|
return ɵreflector.resolveIdentifier(name !, identifier.moduleName !, null, identifier.runtime);
|
2016-11-23 09:42:19 -08:00
|
|
|
}
|
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
export function createIdentifier(identifier: o.ExternalReference): CompileIdentifierMetadata {
|
2017-02-14 13:33:06 -08:00
|
|
|
return {reference: resolveIdentifier(identifier)};
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function identifierToken(identifier: CompileIdentifierMetadata): CompileTokenMetadata {
|
2016-11-30 10:52:51 -08:00
|
|
|
return {identifier: identifier};
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
2016-08-24 17:39:49 -07:00
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
export function createIdentifierToken(identifier: o.ExternalReference): CompileTokenMetadata {
|
2016-11-23 09:42:19 -08:00
|
|
|
return identifierToken(createIdentifier(identifier));
|
2016-08-24 17:39:49 -07:00
|
|
|
}
|
|
|
|
|
2016-11-23 09:42:19 -08:00
|
|
|
export function createEnumIdentifier(
|
2017-05-16 16:30:37 -07:00
|
|
|
enumType: o.ExternalReference, name: string): CompileIdentifierMetadata {
|
2017-02-14 13:33:06 -08:00
|
|
|
const resolvedEnum = ɵreflector.resolveEnum(resolveIdentifier(enumType), name);
|
2016-11-30 10:52:51 -08:00
|
|
|
return {reference: resolvedEnum};
|
2016-08-30 18:07:40 -07:00
|
|
|
}
|