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
|
|
|
|
*/
|
|
|
|
|
2016-08-25 00:50:16 -07:00
|
|
|
import {ChangeDetectionStrategy, SchemaMetadata, Type, ViewEncapsulation} from '@angular/core';
|
2016-06-08 16:38:52 -07:00
|
|
|
|
2016-11-03 16:58:27 -07:00
|
|
|
import {ListWrapper} from './facade/collection';
|
2016-10-21 15:14:44 -07:00
|
|
|
import {isPresent} from './facade/lang';
|
2016-09-27 17:12:25 -07:00
|
|
|
import {LifecycleHooks} from './private_import_core';
|
2016-04-28 17:50:03 -07:00
|
|
|
import {CssSelector} from './selector';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {sanitizeIdentifier, splitAtColon} from './util';
|
|
|
|
|
2016-08-11 08:39:13 -07:00
|
|
|
function unimplemented(): any {
|
2016-08-25 00:50:16 -07:00
|
|
|
throw new Error('unimplemented');
|
2016-08-11 08:39:13 -07:00
|
|
|
}
|
2016-07-25 03:02:57 -07:00
|
|
|
|
2016-07-08 17:11:12 -07:00
|
|
|
// group 0: "[prop] or (event) or @trigger"
|
|
|
|
// group 1: "prop" from "[prop]"
|
2015-09-18 10:33:23 -07:00
|
|
|
// group 2: "event" from "(event)"
|
2016-07-08 17:11:12 -07:00
|
|
|
// group 3: "@trigger" from "@trigger"
|
2016-08-05 09:50:49 -07:00
|
|
|
const HOST_REG_EXP = /^(?:(?:\[([^\]]+)\])|(?:\(([^\)]+)\)))|(\@[-\w]+)$/;
|
2015-08-25 15:36:02 -07:00
|
|
|
|
2016-02-26 08:01:07 -08:00
|
|
|
export abstract class CompileMetadataWithIdentifier {
|
2016-02-19 11:49:31 -08:00
|
|
|
get identifier(): CompileIdentifierMetadata { return <CompileIdentifierMetadata>unimplemented(); }
|
2016-04-10 19:36:16 -07:00
|
|
|
}
|
|
|
|
|
2016-05-25 12:46:22 -07:00
|
|
|
export class CompileAnimationEntryMetadata {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
|
|
|
public name: string = null, public definitions: CompileAnimationStateMetadata[] = null) {}
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export abstract class CompileAnimationStateMetadata {}
|
|
|
|
|
|
|
|
export class CompileAnimationStateDeclarationMetadata extends CompileAnimationStateMetadata {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(public stateNameExpr: string, public styles: CompileAnimationStyleMetadata) {
|
|
|
|
super();
|
|
|
|
}
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class CompileAnimationStateTransitionMetadata extends CompileAnimationStateMetadata {
|
2016-05-26 09:22:44 -07:00
|
|
|
constructor(public stateChangeExpr: string, public steps: CompileAnimationMetadata) { super(); }
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
export abstract class CompileAnimationMetadata {}
|
2016-05-25 12:46:22 -07:00
|
|
|
|
|
|
|
export class CompileAnimationKeyframesSequenceMetadata extends CompileAnimationMetadata {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(public steps: CompileAnimationStyleMetadata[] = []) { super(); }
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class CompileAnimationStyleMetadata extends CompileAnimationMetadata {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
|
|
|
public offset: number, public styles: Array<string|{[key: string]: string | number}> = null) {
|
|
|
|
super();
|
|
|
|
}
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class CompileAnimationAnimateMetadata extends CompileAnimationMetadata {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
|
|
|
public timings: string|number = 0, public styles: CompileAnimationStyleMetadata|
|
|
|
|
CompileAnimationKeyframesSequenceMetadata = null) {
|
|
|
|
super();
|
|
|
|
}
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export abstract class CompileAnimationWithStepsMetadata extends CompileAnimationMetadata {
|
|
|
|
constructor(public steps: CompileAnimationMetadata[] = null) { super(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
export class CompileAnimationSequenceMetadata extends CompileAnimationWithStepsMetadata {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(steps: CompileAnimationMetadata[] = null) { super(steps); }
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class CompileAnimationGroupMetadata extends CompileAnimationWithStepsMetadata {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(steps: CompileAnimationMetadata[] = null) { super(steps); }
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
|
|
|
|
2016-02-26 08:01:07 -08:00
|
|
|
export class CompileIdentifierMetadata implements CompileMetadataWithIdentifier {
|
2016-08-29 08:52:25 -07:00
|
|
|
reference: any;
|
2016-02-26 08:01:07 -08:00
|
|
|
name: string;
|
|
|
|
prefix: string;
|
|
|
|
moduleUrl: string;
|
2016-04-10 19:36:16 -07:00
|
|
|
value: any;
|
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
constructor(
|
2016-08-29 08:52:25 -07:00
|
|
|
{reference, name, moduleUrl, prefix, value}:
|
|
|
|
{reference?: any, name?: string, moduleUrl?: string, prefix?: string, value?: any} = {}) {
|
|
|
|
this.reference = reference;
|
2016-02-26 08:01:07 -08:00
|
|
|
this.name = name;
|
|
|
|
this.prefix = prefix;
|
|
|
|
this.moduleUrl = moduleUrl;
|
2016-04-10 19:36:16 -07:00
|
|
|
this.value = value;
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
get identifier(): CompileIdentifierMetadata { return this; }
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export class CompileDiDependencyMetadata {
|
|
|
|
isAttribute: boolean;
|
|
|
|
isSelf: boolean;
|
|
|
|
isHost: boolean;
|
|
|
|
isSkipSelf: boolean;
|
|
|
|
isOptional: boolean;
|
2016-01-06 14:13:44 -08:00
|
|
|
isValue: boolean;
|
|
|
|
token: CompileTokenMetadata;
|
|
|
|
value: any;
|
2016-02-26 08:01:07 -08:00
|
|
|
|
2016-10-31 15:46:24 -07:00
|
|
|
constructor({isAttribute, isSelf, isHost, isSkipSelf, isOptional, isValue, token, value}: {
|
|
|
|
isAttribute?: boolean,
|
|
|
|
isSelf?: boolean,
|
|
|
|
isHost?: boolean,
|
|
|
|
isSkipSelf?: boolean,
|
|
|
|
isOptional?: boolean,
|
|
|
|
isValue?: boolean,
|
|
|
|
query?: CompileQueryMetadata,
|
|
|
|
viewQuery?: CompileQueryMetadata,
|
|
|
|
token?: CompileTokenMetadata,
|
|
|
|
value?: any
|
|
|
|
} = {}) {
|
2016-10-21 15:14:44 -07:00
|
|
|
this.isAttribute = !!isAttribute;
|
|
|
|
this.isSelf = !!isSelf;
|
|
|
|
this.isHost = !!isHost;
|
|
|
|
this.isSkipSelf = !!isSkipSelf;
|
|
|
|
this.isOptional = !!isOptional;
|
|
|
|
this.isValue = !!isValue;
|
2016-02-26 08:01:07 -08:00
|
|
|
this.token = token;
|
2016-01-06 14:13:44 -08:00
|
|
|
this.value = value;
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class CompileProviderMetadata {
|
2016-01-06 14:13:44 -08:00
|
|
|
token: CompileTokenMetadata;
|
2016-02-26 08:01:07 -08:00
|
|
|
useClass: CompileTypeMetadata;
|
|
|
|
useValue: any;
|
2016-01-06 14:13:44 -08:00
|
|
|
useExisting: CompileTokenMetadata;
|
2016-02-26 08:01:07 -08:00
|
|
|
useFactory: CompileFactoryMetadata;
|
|
|
|
deps: CompileDiDependencyMetadata[];
|
|
|
|
multi: boolean;
|
|
|
|
|
|
|
|
constructor({token, useClass, useValue, useExisting, useFactory, deps, multi}: {
|
2016-01-06 14:13:44 -08:00
|
|
|
token?: CompileTokenMetadata,
|
2016-02-26 08:01:07 -08:00
|
|
|
useClass?: CompileTypeMetadata,
|
|
|
|
useValue?: any,
|
2016-01-06 14:13:44 -08:00
|
|
|
useExisting?: CompileTokenMetadata,
|
2016-02-26 08:01:07 -08:00
|
|
|
useFactory?: CompileFactoryMetadata,
|
|
|
|
deps?: CompileDiDependencyMetadata[],
|
|
|
|
multi?: boolean
|
|
|
|
}) {
|
|
|
|
this.token = token;
|
|
|
|
this.useClass = useClass;
|
|
|
|
this.useValue = useValue;
|
|
|
|
this.useExisting = useExisting;
|
|
|
|
this.useFactory = useFactory;
|
2016-10-21 15:14:44 -07:00
|
|
|
this.deps = deps || null;
|
|
|
|
this.multi = !!multi;
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
export class CompileFactoryMetadata extends CompileIdentifierMetadata {
|
2016-02-26 08:01:07 -08:00
|
|
|
diDeps: CompileDiDependencyMetadata[];
|
|
|
|
|
2016-08-29 08:52:25 -07:00
|
|
|
constructor({reference, name, moduleUrl, prefix, diDeps, value}: {
|
|
|
|
reference?: Function,
|
2016-02-26 08:01:07 -08:00
|
|
|
name?: string,
|
2016-04-10 19:36:16 -07:00
|
|
|
prefix?: string,
|
2016-02-26 08:01:07 -08:00
|
|
|
moduleUrl?: string,
|
2016-04-10 19:36:16 -07:00
|
|
|
value?: boolean,
|
2016-02-26 08:01:07 -08:00
|
|
|
diDeps?: CompileDiDependencyMetadata[]
|
|
|
|
}) {
|
2016-08-29 08:52:25 -07:00
|
|
|
super({reference: reference, name: name, prefix: prefix, moduleUrl: moduleUrl, value: value});
|
2016-01-06 14:13:44 -08:00
|
|
|
this.diDeps = _normalizeArray(diDeps);
|
2016-04-10 19:36:16 -07:00
|
|
|
}
|
2015-12-02 10:35:51 -08:00
|
|
|
}
|
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
export class CompileTokenMetadata implements CompileMetadataWithIdentifier {
|
|
|
|
value: any;
|
|
|
|
identifier: CompileIdentifierMetadata;
|
|
|
|
identifierIsInstance: boolean;
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
|
|
|
{value, identifier, identifierIsInstance}:
|
|
|
|
{value?: any, identifier?: CompileIdentifierMetadata, identifierIsInstance?: boolean}) {
|
2016-01-06 14:13:44 -08:00
|
|
|
this.value = value;
|
|
|
|
this.identifier = identifier;
|
2016-10-21 15:14:44 -07:00
|
|
|
this.identifierIsInstance = !!identifierIsInstance;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-08-29 08:52:25 -07:00
|
|
|
get reference(): any {
|
2016-01-06 14:13:44 -08:00
|
|
|
if (isPresent(this.identifier)) {
|
2016-08-29 08:52:25 -07:00
|
|
|
return this.identifier.reference;
|
2016-01-06 14:13:44 -08:00
|
|
|
} else {
|
|
|
|
return this.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-01 22:50:37 -07:00
|
|
|
get name(): string {
|
|
|
|
return isPresent(this.value) ? sanitizeIdentifier(this.value) : this.identifier.name;
|
|
|
|
}
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2015-12-03 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* Metadata regarding compilation of a type.
|
|
|
|
*/
|
2016-07-18 03:50:31 -07:00
|
|
|
export class CompileTypeMetadata extends CompileIdentifierMetadata {
|
2015-10-01 10:07:49 -07:00
|
|
|
isHost: boolean;
|
2016-02-26 08:01:07 -08:00
|
|
|
diDeps: CompileDiDependencyMetadata[];
|
2016-08-02 01:12:24 -07:00
|
|
|
lifecycleHooks: LifecycleHooks[];
|
2016-02-26 08:01:07 -08:00
|
|
|
|
2016-08-29 08:52:25 -07:00
|
|
|
constructor({reference, name, moduleUrl, prefix, isHost, value, diDeps, lifecycleHooks}: {
|
|
|
|
reference?: Type<any>,
|
2016-02-26 08:01:07 -08:00
|
|
|
name?: string,
|
|
|
|
moduleUrl?: string,
|
|
|
|
prefix?: string,
|
|
|
|
isHost?: boolean,
|
2016-04-10 19:36:16 -07:00
|
|
|
value?: any,
|
2016-08-02 01:12:24 -07:00
|
|
|
diDeps?: CompileDiDependencyMetadata[],
|
|
|
|
lifecycleHooks?: LifecycleHooks[];
|
2016-02-26 08:01:07 -08:00
|
|
|
} = {}) {
|
2016-08-29 08:52:25 -07:00
|
|
|
super({reference: reference, name: name, moduleUrl: moduleUrl, prefix: prefix, value: value});
|
2016-10-21 15:14:44 -07:00
|
|
|
this.isHost = !!isHost;
|
2016-01-06 14:13:44 -08:00
|
|
|
this.diDeps = _normalizeArray(diDeps);
|
2016-08-02 01:12:24 -07:00
|
|
|
this.lifecycleHooks = _normalizeArray(lifecycleHooks);
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 08:01:07 -08:00
|
|
|
export class CompileQueryMetadata {
|
2016-01-06 14:13:44 -08:00
|
|
|
selectors: Array<CompileTokenMetadata>;
|
2016-02-26 08:01:07 -08:00
|
|
|
descendants: boolean;
|
|
|
|
first: boolean;
|
|
|
|
propertyName: string;
|
2016-04-18 13:24:42 -07:00
|
|
|
read: CompileTokenMetadata;
|
2016-02-26 08:01:07 -08:00
|
|
|
|
2016-04-18 13:24:42 -07:00
|
|
|
constructor({selectors, descendants, first, propertyName, read}: {
|
2016-01-06 14:13:44 -08:00
|
|
|
selectors?: Array<CompileTokenMetadata>,
|
2016-02-26 08:01:07 -08:00
|
|
|
descendants?: boolean,
|
|
|
|
first?: boolean,
|
2016-04-18 13:24:42 -07:00
|
|
|
propertyName?: string,
|
|
|
|
read?: CompileTokenMetadata
|
2016-02-26 08:01:07 -08:00
|
|
|
} = {}) {
|
|
|
|
this.selectors = selectors;
|
2016-10-21 15:14:44 -07:00
|
|
|
this.descendants = !!descendants;
|
|
|
|
this.first = !!first;
|
2016-02-26 08:01:07 -08:00
|
|
|
this.propertyName = propertyName;
|
2016-04-18 13:24:42 -07:00
|
|
|
this.read = read;
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-24 08:46:43 -07:00
|
|
|
/**
|
|
|
|
* Metadata about a stylesheet
|
|
|
|
*/
|
|
|
|
export class CompileStylesheetMetadata {
|
|
|
|
moduleUrl: string;
|
|
|
|
styles: string[];
|
|
|
|
styleUrls: string[];
|
|
|
|
constructor(
|
|
|
|
{moduleUrl, styles,
|
|
|
|
styleUrls}: {moduleUrl?: string, styles?: string[], styleUrls?: string[]} = {}) {
|
|
|
|
this.moduleUrl = moduleUrl;
|
|
|
|
this.styles = _normalizeArray(styles);
|
|
|
|
this.styleUrls = _normalizeArray(styleUrls);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* Metadata regarding compilation of a template.
|
|
|
|
*/
|
2015-09-18 10:33:23 -07:00
|
|
|
export class CompileTemplateMetadata {
|
2015-09-14 15:59:09 -07:00
|
|
|
encapsulation: ViewEncapsulation;
|
|
|
|
template: string;
|
|
|
|
templateUrl: string;
|
|
|
|
styles: string[];
|
|
|
|
styleUrls: string[];
|
2016-06-24 08:46:43 -07:00
|
|
|
externalStylesheets: CompileStylesheetMetadata[];
|
2016-05-25 12:46:22 -07:00
|
|
|
animations: CompileAnimationEntryMetadata[];
|
2015-09-18 10:33:23 -07:00
|
|
|
ngContentSelectors: string[];
|
2016-06-20 09:52:41 -07:00
|
|
|
interpolation: [string, string];
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
2016-06-24 08:46:43 -07:00
|
|
|
{encapsulation, template, templateUrl, styles, styleUrls, externalStylesheets, animations,
|
|
|
|
ngContentSelectors, interpolation}: {
|
2016-06-08 16:38:52 -07:00
|
|
|
encapsulation?: ViewEncapsulation,
|
|
|
|
template?: string,
|
|
|
|
templateUrl?: string,
|
|
|
|
styles?: string[],
|
|
|
|
styleUrls?: string[],
|
2016-06-24 08:46:43 -07:00
|
|
|
externalStylesheets?: CompileStylesheetMetadata[],
|
2016-06-08 16:38:52 -07:00
|
|
|
ngContentSelectors?: string[],
|
2016-06-20 09:52:41 -07:00
|
|
|
animations?: CompileAnimationEntryMetadata[],
|
|
|
|
interpolation?: [string, string]
|
2016-06-08 16:38:52 -07:00
|
|
|
} = {}) {
|
2016-04-03 08:34:44 +09:00
|
|
|
this.encapsulation = encapsulation;
|
2015-09-14 15:59:09 -07:00
|
|
|
this.template = template;
|
|
|
|
this.templateUrl = templateUrl;
|
2016-06-24 08:46:43 -07:00
|
|
|
this.styles = _normalizeArray(styles);
|
|
|
|
this.styleUrls = _normalizeArray(styleUrls);
|
|
|
|
this.externalStylesheets = _normalizeArray(externalStylesheets);
|
2016-10-21 15:14:44 -07:00
|
|
|
this.animations = animations ? ListWrapper.flatten(animations) : [];
|
2016-10-07 18:11:37 -07:00
|
|
|
this.ngContentSelectors = ngContentSelectors || [];
|
2016-10-21 15:14:44 -07:00
|
|
|
if (interpolation && interpolation.length != 2) {
|
2016-08-25 00:50:16 -07:00
|
|
|
throw new Error(`'interpolation' should have a start and an end symbol.`);
|
2016-06-20 09:52:41 -07:00
|
|
|
}
|
|
|
|
this.interpolation = interpolation;
|
2015-09-14 15:59:09 -07:00
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
2015-12-03 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* Metadata regarding compilation of a directive.
|
|
|
|
*/
|
2016-07-18 03:50:31 -07:00
|
|
|
export class CompileDirectiveMetadata implements CompileMetadataWithIdentifier {
|
2016-06-08 16:38:52 -07:00
|
|
|
static create(
|
2016-08-02 01:12:24 -07:00
|
|
|
{type, isComponent, selector, exportAs, changeDetection, inputs, outputs, host, providers,
|
2016-08-19 13:51:45 -07:00
|
|
|
viewProviders, queries, viewQueries, entryComponents, template}: {
|
2016-06-08 16:38:52 -07:00
|
|
|
type?: CompileTypeMetadata,
|
|
|
|
isComponent?: boolean,
|
|
|
|
selector?: string,
|
|
|
|
exportAs?: string,
|
|
|
|
changeDetection?: ChangeDetectionStrategy,
|
|
|
|
inputs?: string[],
|
|
|
|
outputs?: string[],
|
|
|
|
host?: {[key: string]: string},
|
|
|
|
providers?:
|
|
|
|
Array<CompileProviderMetadata|CompileTypeMetadata|CompileIdentifierMetadata|any[]>,
|
|
|
|
viewProviders?:
|
|
|
|
Array<CompileProviderMetadata|CompileTypeMetadata|CompileIdentifierMetadata|any[]>,
|
|
|
|
queries?: CompileQueryMetadata[],
|
|
|
|
viewQueries?: CompileQueryMetadata[],
|
2016-11-10 14:07:30 -08:00
|
|
|
entryComponents?: CompileIdentifierMetadata[],
|
2016-06-08 16:38:52 -07:00
|
|
|
template?: CompileTemplateMetadata
|
|
|
|
} = {}): CompileDirectiveMetadata {
|
2015-10-02 17:33:21 -07:00
|
|
|
var hostListeners: {[key: string]: string} = {};
|
|
|
|
var hostProperties: {[key: string]: string} = {};
|
|
|
|
var hostAttributes: {[key: string]: string} = {};
|
2015-09-18 10:33:23 -07:00
|
|
|
if (isPresent(host)) {
|
2016-10-03 16:46:05 -07:00
|
|
|
Object.keys(host).forEach(key => {
|
|
|
|
const value = host[key];
|
2016-08-05 09:50:49 -07:00
|
|
|
const matches = key.match(HOST_REG_EXP);
|
|
|
|
if (matches === null) {
|
2015-09-18 10:33:23 -07:00
|
|
|
hostAttributes[key] = value;
|
|
|
|
} else if (isPresent(matches[1])) {
|
|
|
|
hostProperties[matches[1]] = value;
|
|
|
|
} else if (isPresent(matches[2])) {
|
|
|
|
hostListeners[matches[2]] = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-10-02 17:33:21 -07:00
|
|
|
var inputsMap: {[key: string]: string} = {};
|
2015-09-30 20:59:23 -07:00
|
|
|
if (isPresent(inputs)) {
|
|
|
|
inputs.forEach((bindConfig: string) => {
|
2015-09-18 10:33:23 -07:00
|
|
|
// canonical syntax: `dirProp: elProp`
|
|
|
|
// if there is no `:`, use dirProp = elProp
|
|
|
|
var parts = splitAtColon(bindConfig, [bindConfig, bindConfig]);
|
2015-09-30 20:59:23 -07:00
|
|
|
inputsMap[parts[0]] = parts[1];
|
2015-09-18 10:33:23 -07:00
|
|
|
});
|
|
|
|
}
|
2015-10-02 17:33:21 -07:00
|
|
|
var outputsMap: {[key: string]: string} = {};
|
2015-09-30 20:59:23 -07:00
|
|
|
if (isPresent(outputs)) {
|
|
|
|
outputs.forEach((bindConfig: string) => {
|
2015-09-18 10:33:23 -07:00
|
|
|
// canonical syntax: `dirProp: elProp`
|
|
|
|
// if there is no `:`, use dirProp = elProp
|
|
|
|
var parts = splitAtColon(bindConfig, [bindConfig, bindConfig]);
|
2015-09-30 20:59:23 -07:00
|
|
|
outputsMap[parts[0]] = parts[1];
|
2015-09-18 10:33:23 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return new CompileDirectiveMetadata({
|
2016-06-22 17:25:42 -07:00
|
|
|
type,
|
2016-10-21 15:14:44 -07:00
|
|
|
isComponent: !!isComponent, selector, exportAs, changeDetection,
|
2015-09-30 20:59:23 -07:00
|
|
|
inputs: inputsMap,
|
2016-08-02 01:12:24 -07:00
|
|
|
outputs: outputsMap,
|
|
|
|
hostListeners,
|
|
|
|
hostProperties,
|
|
|
|
hostAttributes,
|
2016-06-22 17:25:42 -07:00
|
|
|
providers,
|
|
|
|
viewProviders,
|
|
|
|
queries,
|
|
|
|
viewQueries,
|
2016-07-25 00:36:30 -07:00
|
|
|
entryComponents,
|
2016-06-22 17:25:42 -07:00
|
|
|
template,
|
2015-09-18 10:33:23 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
type: CompileTypeMetadata;
|
2015-08-27 09:03:18 -07:00
|
|
|
isComponent: boolean;
|
2015-08-25 15:36:02 -07:00
|
|
|
selector: string;
|
2015-09-18 10:33:23 -07:00
|
|
|
exportAs: string;
|
|
|
|
changeDetection: ChangeDetectionStrategy;
|
2015-10-02 16:47:54 -07:00
|
|
|
inputs: {[key: string]: string};
|
|
|
|
outputs: {[key: string]: string};
|
|
|
|
hostListeners: {[key: string]: string};
|
|
|
|
hostProperties: {[key: string]: string};
|
|
|
|
hostAttributes: {[key: string]: string};
|
2016-01-06 14:13:44 -08:00
|
|
|
providers: CompileProviderMetadata[];
|
|
|
|
viewProviders: CompileProviderMetadata[];
|
2016-02-26 08:01:07 -08:00
|
|
|
queries: CompileQueryMetadata[];
|
|
|
|
viewQueries: CompileQueryMetadata[];
|
2016-07-18 03:50:31 -07:00
|
|
|
// Note: Need to keep types here to prevent cycles!
|
2016-11-10 14:07:30 -08:00
|
|
|
entryComponents: CompileIdentifierMetadata[];
|
2016-07-28 06:31:26 -07:00
|
|
|
|
2015-09-18 10:33:23 -07:00
|
|
|
template: CompileTemplateMetadata;
|
2016-06-22 17:25:42 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
|
|
|
{type, isComponent, selector, exportAs, changeDetection, inputs, outputs, hostListeners,
|
2016-08-02 01:12:24 -07:00
|
|
|
hostProperties, hostAttributes, providers, viewProviders, queries, viewQueries,
|
2016-08-19 13:51:45 -07:00
|
|
|
entryComponents, template}: {
|
2016-06-08 16:38:52 -07:00
|
|
|
type?: CompileTypeMetadata,
|
|
|
|
isComponent?: boolean,
|
|
|
|
selector?: string,
|
|
|
|
exportAs?: string,
|
|
|
|
changeDetection?: ChangeDetectionStrategy,
|
|
|
|
inputs?: {[key: string]: string},
|
|
|
|
outputs?: {[key: string]: string},
|
|
|
|
hostListeners?: {[key: string]: string},
|
|
|
|
hostProperties?: {[key: string]: string},
|
|
|
|
hostAttributes?: {[key: string]: string},
|
|
|
|
providers?:
|
|
|
|
Array<CompileProviderMetadata|CompileTypeMetadata|CompileIdentifierMetadata|any[]>,
|
|
|
|
viewProviders?:
|
|
|
|
Array<CompileProviderMetadata|CompileTypeMetadata|CompileIdentifierMetadata|any[]>,
|
|
|
|
queries?: CompileQueryMetadata[],
|
|
|
|
viewQueries?: CompileQueryMetadata[],
|
2016-11-10 14:07:30 -08:00
|
|
|
entryComponents?: CompileIdentifierMetadata[],
|
2016-06-22 17:25:42 -07:00
|
|
|
template?: CompileTemplateMetadata,
|
2016-06-08 16:38:52 -07:00
|
|
|
} = {}) {
|
2015-08-25 15:36:02 -07:00
|
|
|
this.type = type;
|
2015-09-18 10:33:23 -07:00
|
|
|
this.isComponent = isComponent;
|
2015-08-25 15:36:02 -07:00
|
|
|
this.selector = selector;
|
2015-09-18 10:33:23 -07:00
|
|
|
this.exportAs = exportAs;
|
2015-08-27 16:29:02 -07:00
|
|
|
this.changeDetection = changeDetection;
|
2015-09-30 20:59:23 -07:00
|
|
|
this.inputs = inputs;
|
|
|
|
this.outputs = outputs;
|
2015-09-18 10:33:23 -07:00
|
|
|
this.hostListeners = hostListeners;
|
|
|
|
this.hostProperties = hostProperties;
|
|
|
|
this.hostAttributes = hostAttributes;
|
2016-01-06 14:13:44 -08:00
|
|
|
this.providers = _normalizeArray(providers);
|
|
|
|
this.viewProviders = _normalizeArray(viewProviders);
|
|
|
|
this.queries = _normalizeArray(queries);
|
|
|
|
this.viewQueries = _normalizeArray(viewQueries);
|
2016-07-25 00:36:30 -07:00
|
|
|
this.entryComponents = _normalizeArray(entryComponents);
|
2016-07-28 06:31:26 -07:00
|
|
|
|
2015-08-25 15:36:02 -07:00
|
|
|
this.template = template;
|
|
|
|
}
|
2015-09-11 13:35:46 -07:00
|
|
|
|
2016-02-26 08:01:07 -08:00
|
|
|
get identifier(): CompileIdentifierMetadata { return this.type; }
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
2015-09-02 15:07:31 -07:00
|
|
|
|
2015-12-03 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* Construct {@link CompileDirectiveMetadata} from {@link ComponentTypeMetadata} and a selector.
|
|
|
|
*/
|
2016-07-18 03:50:31 -07:00
|
|
|
export function createHostComponentMeta(compMeta: CompileDirectiveMetadata):
|
|
|
|
CompileDirectiveMetadata {
|
|
|
|
var template = CssSelector.parse(compMeta.selector)[0].getMatchingElementTemplate();
|
2015-09-18 10:33:23 -07:00
|
|
|
return CompileDirectiveMetadata.create({
|
2015-10-01 10:07:49 -07:00
|
|
|
type: new CompileTypeMetadata({
|
2016-08-29 08:52:25 -07:00
|
|
|
reference: Object,
|
2016-07-18 03:50:31 -07:00
|
|
|
name: `${compMeta.type.name}_Host`,
|
|
|
|
moduleUrl: compMeta.type.moduleUrl,
|
2015-10-01 10:07:49 -07:00
|
|
|
isHost: true
|
|
|
|
}),
|
2016-06-08 16:38:52 -07:00
|
|
|
template: new CompileTemplateMetadata({
|
2016-08-24 17:39:49 -07:00
|
|
|
encapsulation: ViewEncapsulation.None,
|
2016-06-08 16:38:52 -07:00
|
|
|
template: template,
|
|
|
|
templateUrl: '',
|
|
|
|
styles: [],
|
|
|
|
styleUrls: [],
|
|
|
|
ngContentSelectors: [],
|
|
|
|
animations: []
|
|
|
|
}),
|
2015-09-18 10:33:23 -07:00
|
|
|
changeDetection: ChangeDetectionStrategy.Default,
|
2015-09-30 20:59:23 -07:00
|
|
|
inputs: [],
|
|
|
|
outputs: [],
|
2015-09-18 10:33:23 -07:00
|
|
|
host: {},
|
2015-09-14 15:59:09 -07:00
|
|
|
isComponent: true,
|
2016-02-26 08:01:07 -08:00
|
|
|
selector: '*',
|
|
|
|
providers: [],
|
|
|
|
viewProviders: [],
|
|
|
|
queries: [],
|
|
|
|
viewQueries: []
|
2015-09-14 15:59:09 -07:00
|
|
|
});
|
2015-09-02 15:07:31 -07:00
|
|
|
}
|
2015-12-02 10:35:51 -08:00
|
|
|
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
export class CompilePipeMetadata implements CompileMetadataWithIdentifier {
|
2015-12-02 10:35:51 -08:00
|
|
|
type: CompileTypeMetadata;
|
|
|
|
name: string;
|
|
|
|
pure: boolean;
|
2016-01-06 14:13:44 -08:00
|
|
|
|
2016-08-02 01:12:24 -07:00
|
|
|
constructor({type, name, pure}: {
|
2016-01-06 14:13:44 -08:00
|
|
|
type?: CompileTypeMetadata,
|
|
|
|
name?: string,
|
|
|
|
pure?: boolean,
|
|
|
|
} = {}) {
|
2015-12-02 10:35:51 -08:00
|
|
|
this.type = type;
|
|
|
|
this.name = name;
|
2016-10-21 15:14:44 -07:00
|
|
|
this.pure = !!pure;
|
2015-12-02 10:35:51 -08:00
|
|
|
}
|
2016-02-26 08:01:07 -08:00
|
|
|
get identifier(): CompileIdentifierMetadata { return this.type; }
|
2015-12-02 10:35:51 -08:00
|
|
|
}
|
|
|
|
|
2016-06-28 09:54:42 -07:00
|
|
|
/**
|
2016-10-24 13:28:23 -07:00
|
|
|
* Metadata regarding compilation of a module.
|
2016-06-28 09:54:42 -07:00
|
|
|
*/
|
2016-07-18 03:50:31 -07:00
|
|
|
export class CompileNgModuleMetadata implements CompileMetadataWithIdentifier {
|
2016-06-28 09:54:42 -07:00
|
|
|
type: CompileTypeMetadata;
|
2016-11-10 14:07:30 -08:00
|
|
|
declaredDirectives: CompileIdentifierMetadata[];
|
|
|
|
exportedDirectives: CompileIdentifierMetadata[];
|
|
|
|
declaredPipes: CompileIdentifierMetadata[];
|
|
|
|
exportedPipes: CompileIdentifierMetadata[];
|
2016-07-25 00:36:30 -07:00
|
|
|
// Note: See CompileDirectiveMetadata.entryComponents why this has to be a type.
|
2016-11-10 14:07:30 -08:00
|
|
|
entryComponents: CompileIdentifierMetadata[];
|
|
|
|
bootstrapComponents: CompileIdentifierMetadata[];
|
2016-07-18 03:50:31 -07:00
|
|
|
providers: CompileProviderMetadata[];
|
2016-06-28 09:54:42 -07:00
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
importedModules: CompileNgModuleMetadata[];
|
|
|
|
exportedModules: CompileNgModuleMetadata[];
|
2016-07-25 03:02:57 -07:00
|
|
|
schemas: SchemaMetadata[];
|
2016-09-01 13:46:08 -07:00
|
|
|
id: string;
|
2016-07-18 03:50:31 -07:00
|
|
|
|
|
|
|
transitiveModule: TransitiveCompileNgModuleMetadata;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
{type, providers, declaredDirectives, exportedDirectives, declaredPipes, exportedPipes,
|
2016-08-02 06:54:08 -07:00
|
|
|
entryComponents, bootstrapComponents, importedModules, exportedModules, schemas,
|
2016-09-01 13:46:08 -07:00
|
|
|
transitiveModule, id}: {
|
2016-07-18 03:50:31 -07:00
|
|
|
type?: CompileTypeMetadata,
|
|
|
|
providers?:
|
|
|
|
Array<CompileProviderMetadata|CompileTypeMetadata|CompileIdentifierMetadata|any[]>,
|
2016-11-10 14:07:30 -08:00
|
|
|
declaredDirectives?: CompileIdentifierMetadata[],
|
|
|
|
exportedDirectives?: CompileIdentifierMetadata[],
|
|
|
|
declaredPipes?: CompileIdentifierMetadata[],
|
|
|
|
exportedPipes?: CompileIdentifierMetadata[],
|
|
|
|
entryComponents?: CompileIdentifierMetadata[],
|
|
|
|
bootstrapComponents?: CompileIdentifierMetadata[],
|
2016-07-18 03:50:31 -07:00
|
|
|
importedModules?: CompileNgModuleMetadata[],
|
|
|
|
exportedModules?: CompileNgModuleMetadata[],
|
2016-07-25 03:02:57 -07:00
|
|
|
transitiveModule?: TransitiveCompileNgModuleMetadata,
|
2016-09-01 13:46:08 -07:00
|
|
|
schemas?: SchemaMetadata[],
|
|
|
|
id?: string
|
2016-07-18 03:50:31 -07:00
|
|
|
} = {}) {
|
2016-06-28 09:54:42 -07:00
|
|
|
this.type = type;
|
2016-07-18 03:50:31 -07:00
|
|
|
this.declaredDirectives = _normalizeArray(declaredDirectives);
|
|
|
|
this.exportedDirectives = _normalizeArray(exportedDirectives);
|
|
|
|
this.declaredPipes = _normalizeArray(declaredPipes);
|
|
|
|
this.exportedPipes = _normalizeArray(exportedPipes);
|
2016-06-28 09:54:42 -07:00
|
|
|
this.providers = _normalizeArray(providers);
|
2016-07-25 00:36:30 -07:00
|
|
|
this.entryComponents = _normalizeArray(entryComponents);
|
2016-08-02 06:54:08 -07:00
|
|
|
this.bootstrapComponents = _normalizeArray(bootstrapComponents);
|
2016-07-18 03:50:31 -07:00
|
|
|
this.importedModules = _normalizeArray(importedModules);
|
|
|
|
this.exportedModules = _normalizeArray(exportedModules);
|
2016-07-25 03:02:57 -07:00
|
|
|
this.schemas = _normalizeArray(schemas);
|
2016-09-01 13:46:08 -07:00
|
|
|
this.id = id;
|
2016-07-18 03:50:31 -07:00
|
|
|
this.transitiveModule = transitiveModule;
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
get identifier(): CompileIdentifierMetadata { return this.type; }
|
|
|
|
}
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
export class TransitiveCompileNgModuleMetadata {
|
2016-11-10 14:07:30 -08:00
|
|
|
directivesSet = new Set<any>();
|
|
|
|
pipesSet = new Set<any>();
|
2016-10-24 13:28:23 -07:00
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
constructor(
|
|
|
|
public modules: CompileNgModuleMetadata[], public providers: CompileProviderMetadata[],
|
2016-11-10 14:07:30 -08:00
|
|
|
public entryComponents: CompileIdentifierMetadata[],
|
|
|
|
public directives: CompileIdentifierMetadata[], public pipes: CompileIdentifierMetadata[],
|
|
|
|
public loadingPromises: Promise<any>[]) {
|
|
|
|
directives.forEach(dir => this.directivesSet.add(dir.reference));
|
|
|
|
pipes.forEach(pipe => this.pipesSet.add(pipe.reference));
|
2016-07-18 03:50:31 -07:00
|
|
|
}
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
export function removeIdentifierDuplicates<T extends CompileMetadataWithIdentifier>(items: T[]):
|
|
|
|
T[] {
|
2016-08-29 08:52:25 -07:00
|
|
|
const map = new Map<any, T>();
|
2016-10-24 13:28:23 -07:00
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
items.forEach((item) => {
|
2016-08-29 08:52:25 -07:00
|
|
|
if (!map.get(item.identifier.reference)) {
|
|
|
|
map.set(item.identifier.reference, item);
|
2016-07-18 03:50:31 -07:00
|
|
|
}
|
|
|
|
});
|
2016-10-24 13:28:23 -07:00
|
|
|
|
2016-11-03 16:58:27 -07:00
|
|
|
return Array.from(map.values());
|
2016-02-19 11:49:31 -08:00
|
|
|
}
|
2016-01-06 14:13:44 -08:00
|
|
|
|
|
|
|
function _normalizeArray(obj: any[]): any[] {
|
2016-10-07 18:11:37 -07:00
|
|
|
return obj || [];
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
2016-06-28 09:54:42 -07:00
|
|
|
|
|
|
|
export function isStaticSymbol(value: any): value is StaticSymbol {
|
2016-10-19 13:42:39 -07:00
|
|
|
return typeof value === 'object' && value !== null && value['name'] && value['filePath'];
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface StaticSymbol {
|
|
|
|
name: string;
|
|
|
|
filePath: string;
|
|
|
|
}
|
2016-08-15 19:37:42 -07:00
|
|
|
|
|
|
|
export class ProviderMeta {
|
|
|
|
token: any;
|
|
|
|
useClass: Type<any>;
|
|
|
|
useValue: any;
|
|
|
|
useExisting: any;
|
|
|
|
useFactory: Function;
|
|
|
|
dependencies: Object[];
|
|
|
|
multi: boolean;
|
|
|
|
|
|
|
|
constructor(token: any, {useClass, useValue, useExisting, useFactory, deps, multi}: {
|
|
|
|
useClass?: Type<any>,
|
|
|
|
useValue?: any,
|
|
|
|
useExisting?: any,
|
|
|
|
useFactory?: Function,
|
|
|
|
deps?: Object[],
|
|
|
|
multi?: boolean
|
|
|
|
}) {
|
|
|
|
this.token = token;
|
|
|
|
this.useClass = useClass;
|
|
|
|
this.useValue = useValue;
|
|
|
|
this.useExisting = useExisting;
|
|
|
|
this.useFactory = useFactory;
|
|
|
|
this.dependencies = deps;
|
|
|
|
this.multi = !!multi;
|
|
|
|
}
|
|
|
|
}
|