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-12-05 13:26:12 -08:00
|
|
|
import {StaticSymbol} from './aot/static_symbol';
|
2017-08-16 09:00:03 -07:00
|
|
|
import {ChangeDetectionStrategy, SchemaMetadata, Type, ViewEncapsulation} from './core';
|
2017-05-18 13:46:51 -07:00
|
|
|
import {LifecycleHooks} from './lifecycle_reflector';
|
2017-09-11 15:18:19 -07:00
|
|
|
import {ParseTreeResult as HtmlParseTreeResult} from './ml_parser/parser';
|
2017-08-16 09:00:03 -07:00
|
|
|
import {splitAtColon, stringify} from './util';
|
2016-06-08 16:38:52 -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
|
|
|
|
2018-02-15 16:43:16 -08:00
|
|
|
export function sanitizeIdentifier(name: string): string {
|
2016-11-23 09:42:19 -08:00
|
|
|
return name.replace(/\W/g, '_');
|
|
|
|
}
|
|
|
|
|
|
|
|
let _anonymousTypeIndex = 0;
|
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
export function identifierName(compileIdentifier: CompileIdentifierMetadata | null | undefined):
|
|
|
|
string|null {
|
2016-11-23 09:42:19 -08:00
|
|
|
if (!compileIdentifier || !compileIdentifier.reference) {
|
|
|
|
return null;
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
2016-11-23 09:42:19 -08:00
|
|
|
const ref = compileIdentifier.reference;
|
2016-12-05 13:26:12 -08:00
|
|
|
if (ref instanceof StaticSymbol) {
|
2016-11-23 09:42:19 -08:00
|
|
|
return ref.name;
|
|
|
|
}
|
|
|
|
if (ref['__anonymousType']) {
|
|
|
|
return ref['__anonymousType'];
|
|
|
|
}
|
|
|
|
let identifier = stringify(ref);
|
|
|
|
if (identifier.indexOf('(') >= 0) {
|
|
|
|
// case: anonymous functions!
|
|
|
|
identifier = `anonymous_${_anonymousTypeIndex++}`;
|
|
|
|
ref['__anonymousType'] = identifier;
|
|
|
|
} else {
|
2018-02-15 16:43:16 -08:00
|
|
|
identifier = sanitizeIdentifier(identifier);
|
2016-11-23 09:42:19 -08:00
|
|
|
}
|
|
|
|
return identifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function identifierModuleUrl(compileIdentifier: CompileIdentifierMetadata): string {
|
|
|
|
const ref = compileIdentifier.reference;
|
2016-12-05 13:26:12 -08:00
|
|
|
if (ref instanceof StaticSymbol) {
|
2016-11-23 09:42:19 -08:00
|
|
|
return ref.filePath;
|
|
|
|
}
|
2017-05-18 13:46:51 -07:00
|
|
|
// Runtime type
|
|
|
|
return `./${stringify(ref)}`;
|
2016-11-23 09:42:19 -08:00
|
|
|
}
|
|
|
|
|
2016-12-27 09:36:47 -08:00
|
|
|
export function viewClassName(compType: any, embeddedTemplateIndex: number): string {
|
|
|
|
return `View_${identifierName({reference: compType})}_${embeddedTemplateIndex}`;
|
|
|
|
}
|
|
|
|
|
2017-02-17 09:01:37 -08:00
|
|
|
export function rendererTypeName(compType: any): string {
|
2017-02-16 13:55:55 -08:00
|
|
|
return `RenderType_${identifierName({reference: compType})}`;
|
|
|
|
}
|
|
|
|
|
2016-12-27 09:36:47 -08:00
|
|
|
export function hostViewClassName(compType: any): string {
|
|
|
|
return `HostView_${identifierName({reference: compType})}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function componentFactoryName(compType: any): string {
|
|
|
|
return `${identifierName({reference: compType})}NgFactory`;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ProxyClass { setDelegate(delegate: any): void; }
|
|
|
|
|
2016-11-30 10:52:51 -08:00
|
|
|
export interface CompileIdentifierMetadata { reference: any; }
|
2016-02-26 08:01:07 -08:00
|
|
|
|
2016-12-02 10:08:46 -08:00
|
|
|
export enum CompileSummaryKind {
|
|
|
|
Pipe,
|
|
|
|
Directive,
|
2016-12-15 09:12:40 -08:00
|
|
|
NgModule,
|
|
|
|
Injectable
|
2016-12-02 10:08:46 -08:00
|
|
|
}
|
|
|
|
|
2016-11-10 16:27:53 -08:00
|
|
|
/**
|
|
|
|
* A CompileSummary is the data needed to use a directive / pipe / module
|
|
|
|
* in other modules / components. However, this data is not enough to compile
|
|
|
|
* the directive / module itself.
|
|
|
|
*/
|
2016-12-15 09:12:40 -08:00
|
|
|
export interface CompileTypeSummary {
|
2017-03-24 09:59:58 -07:00
|
|
|
summaryKind: CompileSummaryKind|null;
|
2016-12-15 09:12:40 -08:00
|
|
|
type: CompileTypeMetadata;
|
|
|
|
}
|
2016-11-29 15:36:33 -08:00
|
|
|
|
2016-11-30 10:52:51 -08:00
|
|
|
export interface CompileDiDependencyMetadata {
|
|
|
|
isAttribute?: boolean;
|
|
|
|
isSelf?: boolean;
|
|
|
|
isHost?: boolean;
|
|
|
|
isSkipSelf?: boolean;
|
|
|
|
isOptional?: boolean;
|
|
|
|
isValue?: boolean;
|
|
|
|
token?: CompileTokenMetadata;
|
|
|
|
value?: any;
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
|
2016-11-30 10:52:51 -08:00
|
|
|
export interface CompileProviderMetadata {
|
2016-01-06 14:13:44 -08:00
|
|
|
token: CompileTokenMetadata;
|
2016-11-30 10:52:51 -08:00
|
|
|
useClass?: CompileTypeMetadata;
|
|
|
|
useValue?: any;
|
|
|
|
useExisting?: CompileTokenMetadata;
|
|
|
|
useFactory?: CompileFactoryMetadata;
|
|
|
|
deps?: CompileDiDependencyMetadata[];
|
|
|
|
multi?: boolean;
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
|
2016-11-30 10:52:51 -08:00
|
|
|
export interface CompileFactoryMetadata extends CompileIdentifierMetadata {
|
2016-02-26 08:01:07 -08:00
|
|
|
diDeps: CompileDiDependencyMetadata[];
|
2016-11-30 10:52:51 -08:00
|
|
|
reference: any;
|
2015-12-02 10:35:51 -08:00
|
|
|
}
|
|
|
|
|
2016-11-23 09:42:19 -08:00
|
|
|
export function tokenName(token: CompileTokenMetadata) {
|
2018-02-15 16:43:16 -08:00
|
|
|
return token.value != null ? sanitizeIdentifier(token.value) : identifierName(token.identifier);
|
2016-11-23 09:42:19 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function tokenReference(token: CompileTokenMetadata) {
|
2017-03-02 09:37:01 -08:00
|
|
|
if (token.identifier != null) {
|
2016-11-23 09:42:19 -08:00
|
|
|
return token.identifier.reference;
|
|
|
|
} else {
|
|
|
|
return token.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-30 10:52:51 -08:00
|
|
|
export interface CompileTokenMetadata {
|
|
|
|
value?: any;
|
|
|
|
identifier?: CompileIdentifierMetadata|CompileTypeMetadata;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
feat: change @Injectable() to support tree-shakeable tokens (#22005)
This commit bundles 3 important changes, with the goal of enabling tree-shaking
of services which are never injected. Ordinarily, this tree-shaking is prevented
by the existence of a hard dependency on the service by the module in which it
is declared.
Firstly, @Injectable() is modified to accept a 'scope' parameter, which points
to an @NgModule(). This reverses the dependency edge, permitting the module to
not depend on the service which it "provides".
Secondly, the runtime is modified to understand the new relationship created
above. When a module receives a request to inject a token, and cannot find that
token in its list of providers, it will then look at the token for a special
ngInjectableDef field which indicates which module the token is scoped to. If
that module happens to be in the injector, it will behave as if the token
itself was in the injector to begin with.
Thirdly, the compiler is modified to read the @Injectable() metadata and to
generate the special ngInjectableDef field as part of TS compilation, using the
PartialModules system.
Additionally, this commit adds several unit and integration tests of various
flavors to test this change.
PR Close #22005
2018-02-02 10:33:48 -08:00
|
|
|
export interface CompileInjectableMetadata {
|
|
|
|
symbol: StaticSymbol;
|
|
|
|
type: CompileTypeMetadata;
|
|
|
|
|
|
|
|
module?: StaticSymbol;
|
|
|
|
|
|
|
|
useValue?: any;
|
|
|
|
useClass?: StaticSymbol;
|
|
|
|
useExisting?: StaticSymbol;
|
|
|
|
useFactory?: StaticSymbol;
|
|
|
|
deps?: any[];
|
|
|
|
}
|
|
|
|
|
2015-12-03 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* Metadata regarding compilation of a type.
|
|
|
|
*/
|
2016-11-30 10:52:51 -08:00
|
|
|
export interface CompileTypeMetadata extends CompileIdentifierMetadata {
|
2016-02-26 08:01:07 -08:00
|
|
|
diDeps: CompileDiDependencyMetadata[];
|
2017-05-18 13:46:51 -07:00
|
|
|
lifecycleHooks: LifecycleHooks[];
|
2016-11-30 10:52:51 -08:00
|
|
|
reference: any;
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
2016-11-30 10:52:51 -08:00
|
|
|
export interface 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-06-24 08:46:43 -07:00
|
|
|
/**
|
|
|
|
* Metadata about a stylesheet
|
|
|
|
*/
|
|
|
|
export class CompileStylesheetMetadata {
|
2017-03-24 09:59:58 -07:00
|
|
|
moduleUrl: string|null;
|
2016-06-24 08:46:43 -07:00
|
|
|
styles: string[];
|
|
|
|
styleUrls: string[];
|
|
|
|
constructor(
|
|
|
|
{moduleUrl, styles,
|
|
|
|
styleUrls}: {moduleUrl?: string, styles?: string[], styleUrls?: string[]} = {}) {
|
2017-03-24 09:59:58 -07:00
|
|
|
this.moduleUrl = moduleUrl || null;
|
2016-06-24 08:46:43 -07:00
|
|
|
this.styles = _normalizeArray(styles);
|
|
|
|
this.styleUrls = _normalizeArray(styleUrls);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-10 16:27:53 -08:00
|
|
|
/**
|
|
|
|
* Summary Metadata regarding compilation of a template.
|
|
|
|
*/
|
2016-12-15 09:12:40 -08:00
|
|
|
export interface CompileTemplateSummary {
|
2016-11-10 16:27:53 -08:00
|
|
|
ngContentSelectors: string[];
|
2017-03-24 09:59:58 -07:00
|
|
|
encapsulation: ViewEncapsulation|null;
|
2016-11-10 16:27:53 -08:00
|
|
|
}
|
|
|
|
|
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 {
|
2017-03-24 09:59:58 -07:00
|
|
|
encapsulation: ViewEncapsulation|null;
|
|
|
|
template: string|null;
|
|
|
|
templateUrl: string|null;
|
2017-09-11 15:18:19 -07:00
|
|
|
htmlAst: HtmlParseTreeResult|null;
|
2017-03-14 09:16:15 -07:00
|
|
|
isInline: boolean;
|
2015-09-14 15:59:09 -07:00
|
|
|
styles: string[];
|
|
|
|
styleUrls: string[];
|
2016-06-24 08:46:43 -07:00
|
|
|
externalStylesheets: CompileStylesheetMetadata[];
|
2017-02-22 15:14:49 -08:00
|
|
|
animations: any[];
|
2015-09-18 10:33:23 -07:00
|
|
|
ngContentSelectors: string[];
|
2017-03-24 09:59:58 -07:00
|
|
|
interpolation: [string, string]|null;
|
2017-07-28 15:58:28 +02:00
|
|
|
preserveWhitespaces: boolean;
|
2017-09-11 15:18:19 -07:00
|
|
|
constructor({encapsulation, template, templateUrl, htmlAst, styles, styleUrls,
|
|
|
|
externalStylesheets, animations, ngContentSelectors, interpolation, isInline,
|
|
|
|
preserveWhitespaces}: {
|
2017-03-24 09:59:58 -07:00
|
|
|
encapsulation: ViewEncapsulation | null,
|
|
|
|
template: string|null,
|
|
|
|
templateUrl: string|null,
|
2017-09-11 15:18:19 -07:00
|
|
|
htmlAst: HtmlParseTreeResult|null,
|
2017-03-24 09:59:58 -07:00
|
|
|
styles: string[],
|
|
|
|
styleUrls: string[],
|
|
|
|
externalStylesheets: CompileStylesheetMetadata[],
|
|
|
|
ngContentSelectors: string[],
|
|
|
|
animations: any[],
|
|
|
|
interpolation: [string, string]|null,
|
2017-07-28 15:58:28 +02:00
|
|
|
isInline: boolean,
|
|
|
|
preserveWhitespaces: boolean
|
2017-03-24 09:59:58 -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;
|
2017-09-11 15:18:19 -07:00
|
|
|
this.htmlAst = htmlAst;
|
2016-06-24 08:46:43 -07:00
|
|
|
this.styles = _normalizeArray(styles);
|
|
|
|
this.styleUrls = _normalizeArray(styleUrls);
|
|
|
|
this.externalStylesheets = _normalizeArray(externalStylesheets);
|
2017-03-01 14:10:59 -08:00
|
|
|
this.animations = animations ? 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;
|
2017-03-14 09:16:15 -07:00
|
|
|
this.isInline = isInline;
|
2017-07-28 15:58:28 +02:00
|
|
|
this.preserveWhitespaces = preserveWhitespaces;
|
2015-09-14 15:59:09 -07:00
|
|
|
}
|
2016-11-10 16:27:53 -08:00
|
|
|
|
|
|
|
toSummary(): CompileTemplateSummary {
|
|
|
|
return {
|
|
|
|
ngContentSelectors: this.ngContentSelectors,
|
2016-12-27 09:36:47 -08:00
|
|
|
encapsulation: this.encapsulation,
|
2016-11-10 16:27:53 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-27 09:36:47 -08:00
|
|
|
export interface CompileEntryComponentMetadata {
|
|
|
|
componentType: any;
|
2017-08-16 09:00:03 -07:00
|
|
|
componentFactory: StaticSymbol|object;
|
2016-12-27 09:36:47 -08:00
|
|
|
}
|
|
|
|
|
2016-11-30 10:52:51 -08:00
|
|
|
// Note: This should only use interfaces as nested data types
|
|
|
|
// as we need to be able to serialize this from/to JSON!
|
2016-11-29 15:36:33 -08:00
|
|
|
export interface CompileDirectiveSummary extends CompileTypeSummary {
|
2016-11-10 16:27:53 -08:00
|
|
|
type: CompileTypeMetadata;
|
|
|
|
isComponent: boolean;
|
2017-03-24 09:59:58 -07:00
|
|
|
selector: string|null;
|
|
|
|
exportAs: string|null;
|
2016-11-10 16:27:53 -08:00
|
|
|
inputs: {[key: string]: string};
|
|
|
|
outputs: {[key: string]: string};
|
|
|
|
hostListeners: {[key: string]: string};
|
|
|
|
hostProperties: {[key: string]: string};
|
|
|
|
hostAttributes: {[key: string]: string};
|
|
|
|
providers: CompileProviderMetadata[];
|
|
|
|
viewProviders: CompileProviderMetadata[];
|
|
|
|
queries: CompileQueryMetadata[];
|
2017-11-29 16:29:05 -08:00
|
|
|
guards: {[key: string]: any};
|
2017-02-15 08:36:49 -08:00
|
|
|
viewQueries: CompileQueryMetadata[];
|
2016-12-27 09:36:47 -08:00
|
|
|
entryComponents: CompileEntryComponentMetadata[];
|
2017-03-24 09:59:58 -07:00
|
|
|
changeDetection: ChangeDetectionStrategy|null;
|
|
|
|
template: CompileTemplateSummary|null;
|
|
|
|
componentViewType: StaticSymbol|ProxyClass|null;
|
2017-08-16 09:00:03 -07:00
|
|
|
rendererType: StaticSymbol|object|null;
|
|
|
|
componentFactory: StaticSymbol|object|null;
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
2015-12-03 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* Metadata regarding compilation of a directive.
|
|
|
|
*/
|
2016-11-23 09:42:19 -08:00
|
|
|
export class CompileDirectiveMetadata {
|
2017-03-24 09:59:58 -07:00
|
|
|
static create({isHost, type, isComponent, selector, exportAs, changeDetection, inputs, outputs,
|
2017-11-29 16:29:05 -08:00
|
|
|
host, providers, viewProviders, queries, guards, viewQueries, entryComponents,
|
|
|
|
template, componentViewType, rendererType, componentFactory}: {
|
2017-03-24 09:59:58 -07:00
|
|
|
isHost: boolean,
|
|
|
|
type: CompileTypeMetadata,
|
|
|
|
isComponent: boolean,
|
|
|
|
selector: string|null,
|
|
|
|
exportAs: string|null,
|
|
|
|
changeDetection: ChangeDetectionStrategy|null,
|
|
|
|
inputs: string[],
|
|
|
|
outputs: string[],
|
|
|
|
host: {[key: string]: string},
|
|
|
|
providers: CompileProviderMetadata[],
|
|
|
|
viewProviders: CompileProviderMetadata[],
|
|
|
|
queries: CompileQueryMetadata[],
|
2017-11-29 16:29:05 -08:00
|
|
|
guards: {[key: string]: any};
|
2017-03-24 09:59:58 -07:00
|
|
|
viewQueries: CompileQueryMetadata[],
|
|
|
|
entryComponents: CompileEntryComponentMetadata[],
|
|
|
|
template: CompileTemplateMetadata,
|
|
|
|
componentViewType: StaticSymbol|ProxyClass|null,
|
2017-08-16 09:00:03 -07:00
|
|
|
rendererType: StaticSymbol|object|null,
|
|
|
|
componentFactory: StaticSymbol|object|null,
|
2017-03-24 09:59:58 -07:00
|
|
|
}): CompileDirectiveMetadata {
|
2016-11-12 14:08:58 +01:00
|
|
|
const hostListeners: {[key: string]: string} = {};
|
|
|
|
const hostProperties: {[key: string]: string} = {};
|
|
|
|
const hostAttributes: {[key: string]: string} = {};
|
2017-03-02 09:37:01 -08:00
|
|
|
if (host != null) {
|
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;
|
2017-03-02 09:37:01 -08:00
|
|
|
} else if (matches[1] != null) {
|
2015-09-18 10:33:23 -07:00
|
|
|
hostProperties[matches[1]] = value;
|
2017-03-02 09:37:01 -08:00
|
|
|
} else if (matches[2] != null) {
|
2015-09-18 10:33:23 -07:00
|
|
|
hostListeners[matches[2]] = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-11-12 14:08:58 +01:00
|
|
|
const inputsMap: {[key: string]: string} = {};
|
2017-03-02 09:37:01 -08:00
|
|
|
if (inputs != null) {
|
2015-09-30 20:59:23 -07:00
|
|
|
inputs.forEach((bindConfig: string) => {
|
2015-09-18 10:33:23 -07:00
|
|
|
// canonical syntax: `dirProp: elProp`
|
|
|
|
// if there is no `:`, use dirProp = elProp
|
2016-11-12 14:08:58 +01:00
|
|
|
const 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
|
|
|
});
|
|
|
|
}
|
2016-11-12 14:08:58 +01:00
|
|
|
const outputsMap: {[key: string]: string} = {};
|
2017-03-02 09:37:01 -08:00
|
|
|
if (outputs != null) {
|
2015-09-30 20:59:23 -07:00
|
|
|
outputs.forEach((bindConfig: string) => {
|
2015-09-18 10:33:23 -07:00
|
|
|
// canonical syntax: `dirProp: elProp`
|
|
|
|
// if there is no `:`, use dirProp = elProp
|
2016-11-12 14:08:58 +01:00
|
|
|
const 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-11-23 09:42:19 -08:00
|
|
|
isHost,
|
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,
|
2017-11-29 16:29:05 -08:00
|
|
|
guards,
|
2016-06-22 17:25:42 -07:00
|
|
|
viewQueries,
|
2016-07-25 00:36:30 -07:00
|
|
|
entryComponents,
|
2016-06-22 17:25:42 -07:00
|
|
|
template,
|
2016-12-27 09:36:47 -08:00
|
|
|
componentViewType,
|
2017-02-17 09:01:37 -08:00
|
|
|
rendererType,
|
2016-12-27 09:36:47 -08:00
|
|
|
componentFactory,
|
2015-09-18 10:33:23 -07:00
|
|
|
});
|
|
|
|
}
|
2016-11-23 09:42:19 -08:00
|
|
|
isHost: boolean;
|
2015-09-18 10:33:23 -07:00
|
|
|
type: CompileTypeMetadata;
|
2015-08-27 09:03:18 -07:00
|
|
|
isComponent: boolean;
|
2017-03-24 09:59:58 -07:00
|
|
|
selector: string|null;
|
|
|
|
exportAs: string|null;
|
|
|
|
changeDetection: ChangeDetectionStrategy|null;
|
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[];
|
2017-11-29 16:29:05 -08:00
|
|
|
guards: {[key: string]: any};
|
2016-02-26 08:01:07 -08:00
|
|
|
viewQueries: CompileQueryMetadata[];
|
2016-12-27 09:36:47 -08:00
|
|
|
entryComponents: CompileEntryComponentMetadata[];
|
2016-07-28 06:31:26 -07:00
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
template: CompileTemplateMetadata|null;
|
2016-06-22 17:25:42 -07:00
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
componentViewType: StaticSymbol|ProxyClass|null;
|
2017-08-16 09:00:03 -07:00
|
|
|
rendererType: StaticSymbol|object|null;
|
|
|
|
componentFactory: StaticSymbol|object|null;
|
2016-12-27 09:36:47 -08:00
|
|
|
|
2017-11-29 16:29:05 -08:00
|
|
|
constructor({isHost,
|
|
|
|
type,
|
|
|
|
isComponent,
|
|
|
|
selector,
|
|
|
|
exportAs,
|
|
|
|
changeDetection,
|
|
|
|
inputs,
|
|
|
|
outputs,
|
|
|
|
hostListeners,
|
|
|
|
hostProperties,
|
|
|
|
hostAttributes,
|
|
|
|
providers,
|
|
|
|
viewProviders,
|
|
|
|
queries,
|
|
|
|
guards,
|
|
|
|
viewQueries,
|
|
|
|
entryComponents,
|
|
|
|
template,
|
|
|
|
componentViewType,
|
|
|
|
rendererType,
|
|
|
|
componentFactory}: {
|
2017-03-24 09:59:58 -07:00
|
|
|
isHost: boolean,
|
|
|
|
type: CompileTypeMetadata,
|
|
|
|
isComponent: boolean,
|
|
|
|
selector: string|null,
|
|
|
|
exportAs: string|null,
|
|
|
|
changeDetection: ChangeDetectionStrategy|null,
|
|
|
|
inputs: {[key: string]: string},
|
|
|
|
outputs: {[key: string]: string},
|
|
|
|
hostListeners: {[key: string]: string},
|
|
|
|
hostProperties: {[key: string]: string},
|
|
|
|
hostAttributes: {[key: string]: string},
|
|
|
|
providers: CompileProviderMetadata[],
|
|
|
|
viewProviders: CompileProviderMetadata[],
|
|
|
|
queries: CompileQueryMetadata[],
|
2017-11-29 16:29:05 -08:00
|
|
|
guards: {[key: string]: any},
|
2017-03-24 09:59:58 -07:00
|
|
|
viewQueries: CompileQueryMetadata[],
|
|
|
|
entryComponents: CompileEntryComponentMetadata[],
|
|
|
|
template: CompileTemplateMetadata|null,
|
|
|
|
componentViewType: StaticSymbol|ProxyClass|null,
|
2017-08-16 09:00:03 -07:00
|
|
|
rendererType: StaticSymbol|object|null,
|
|
|
|
componentFactory: StaticSymbol|object|null,
|
2017-03-24 09:59:58 -07:00
|
|
|
}) {
|
2016-11-23 09:42:19 -08:00
|
|
|
this.isHost = !!isHost;
|
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);
|
2017-11-29 16:29:05 -08:00
|
|
|
this.guards = guards;
|
2016-01-06 14:13:44 -08:00
|
|
|
this.viewQueries = _normalizeArray(viewQueries);
|
2016-07-25 00:36:30 -07:00
|
|
|
this.entryComponents = _normalizeArray(entryComponents);
|
2015-08-25 15:36:02 -07:00
|
|
|
this.template = template;
|
2016-12-27 09:36:47 -08:00
|
|
|
|
|
|
|
this.componentViewType = componentViewType;
|
2017-02-17 09:01:37 -08:00
|
|
|
this.rendererType = rendererType;
|
2016-12-27 09:36:47 -08:00
|
|
|
this.componentFactory = componentFactory;
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
2015-09-11 13:35:46 -07:00
|
|
|
|
2016-11-10 16:27:53 -08:00
|
|
|
toSummary(): CompileDirectiveSummary {
|
|
|
|
return {
|
2016-12-02 10:08:46 -08:00
|
|
|
summaryKind: CompileSummaryKind.Directive,
|
2016-11-10 16:27:53 -08:00
|
|
|
type: this.type,
|
|
|
|
isComponent: this.isComponent,
|
|
|
|
selector: this.selector,
|
|
|
|
exportAs: this.exportAs,
|
|
|
|
inputs: this.inputs,
|
|
|
|
outputs: this.outputs,
|
|
|
|
hostListeners: this.hostListeners,
|
|
|
|
hostProperties: this.hostProperties,
|
|
|
|
hostAttributes: this.hostAttributes,
|
|
|
|
providers: this.providers,
|
|
|
|
viewProviders: this.viewProviders,
|
|
|
|
queries: this.queries,
|
2017-11-29 16:29:05 -08:00
|
|
|
guards: this.guards,
|
2017-02-15 08:36:49 -08:00
|
|
|
viewQueries: this.viewQueries,
|
2016-11-10 16:27:53 -08:00
|
|
|
entryComponents: this.entryComponents,
|
|
|
|
changeDetection: this.changeDetection,
|
2016-12-27 09:36:47 -08:00
|
|
|
template: this.template && this.template.toSummary(),
|
|
|
|
componentViewType: this.componentViewType,
|
2017-02-17 09:01:37 -08:00
|
|
|
rendererType: this.rendererType,
|
2016-12-27 09:36:47 -08:00
|
|
|
componentFactory: this.componentFactory
|
2016-11-10 16:27:53 -08:00
|
|
|
};
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
2015-09-02 15:07:31 -07:00
|
|
|
|
2016-11-29 15:36:33 -08:00
|
|
|
export interface CompilePipeSummary extends CompileTypeSummary {
|
2016-11-10 16:27:53 -08:00
|
|
|
type: CompileTypeMetadata;
|
|
|
|
name: string;
|
|
|
|
pure: boolean;
|
|
|
|
}
|
2015-12-02 10:35:51 -08:00
|
|
|
|
2016-11-23 09:42:19 -08:00
|
|
|
export class CompilePipeMetadata {
|
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}: {
|
2017-03-24 09:59:58 -07: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-11-10 16:27:53 -08:00
|
|
|
|
|
|
|
toSummary(): CompilePipeSummary {
|
2016-12-02 10:08:46 -08:00
|
|
|
return {
|
|
|
|
summaryKind: CompileSummaryKind.Pipe,
|
|
|
|
type: this.type,
|
|
|
|
name: this.name,
|
|
|
|
pure: this.pure
|
|
|
|
};
|
2016-11-10 16:27:53 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-30 10:52:51 -08:00
|
|
|
// Note: This should only use interfaces as nested data types
|
|
|
|
// as we need to be able to serialize this from/to JSON!
|
2016-11-29 15:36:33 -08:00
|
|
|
export interface CompileNgModuleSummary extends CompileTypeSummary {
|
2016-11-10 16:27:53 -08:00
|
|
|
type: CompileTypeMetadata;
|
|
|
|
|
2016-12-02 10:08:46 -08:00
|
|
|
// Note: This is transitive over the exported modules.
|
2016-11-10 16:27:53 -08:00
|
|
|
exportedDirectives: CompileIdentifierMetadata[];
|
2016-12-02 10:08:46 -08:00
|
|
|
// Note: This is transitive over the exported modules.
|
2016-11-10 16:27:53 -08:00
|
|
|
exportedPipes: CompileIdentifierMetadata[];
|
2015-12-02 10:35:51 -08:00
|
|
|
|
2016-11-29 08:08:22 -08:00
|
|
|
// Note: This is transitive.
|
2016-12-27 09:36:47 -08:00
|
|
|
entryComponents: CompileEntryComponentMetadata[];
|
2016-11-29 08:08:22 -08:00
|
|
|
// Note: This is transitive.
|
2016-11-29 15:36:33 -08:00
|
|
|
providers: {provider: CompileProviderMetadata, module: CompileIdentifierMetadata}[];
|
|
|
|
// Note: This is transitive.
|
|
|
|
modules: CompileTypeMetadata[];
|
2016-11-29 08:08:22 -08:00
|
|
|
}
|
2016-11-10 16:27:53 -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-11-23 09:42:19 -08:00
|
|
|
export class CompileNgModuleMetadata {
|
2016-06-28 09:54:42 -07:00
|
|
|
type: CompileTypeMetadata;
|
2016-11-10 14:07:30 -08:00
|
|
|
declaredDirectives: CompileIdentifierMetadata[];
|
|
|
|
exportedDirectives: CompileIdentifierMetadata[];
|
|
|
|
declaredPipes: CompileIdentifierMetadata[];
|
2016-11-29 08:08:22 -08:00
|
|
|
|
2016-11-10 14:07:30 -08:00
|
|
|
exportedPipes: CompileIdentifierMetadata[];
|
2016-12-27 09:36:47 -08:00
|
|
|
entryComponents: CompileEntryComponentMetadata[];
|
2016-11-10 14:07:30 -08:00
|
|
|
bootstrapComponents: CompileIdentifierMetadata[];
|
2016-07-18 03:50:31 -07:00
|
|
|
providers: CompileProviderMetadata[];
|
2016-06-28 09:54:42 -07:00
|
|
|
|
2016-11-10 16:27:53 -08:00
|
|
|
importedModules: CompileNgModuleSummary[];
|
|
|
|
exportedModules: CompileNgModuleSummary[];
|
2016-07-25 03:02:57 -07:00
|
|
|
schemas: SchemaMetadata[];
|
2017-03-24 09:59:58 -07:00
|
|
|
id: string|null;
|
2016-07-18 03:50:31 -07:00
|
|
|
|
|
|
|
transitiveModule: TransitiveCompileNgModuleMetadata;
|
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
constructor({type, providers, declaredDirectives, exportedDirectives, declaredPipes,
|
|
|
|
exportedPipes, entryComponents, bootstrapComponents, importedModules,
|
|
|
|
exportedModules, schemas, transitiveModule, id}: {
|
|
|
|
type: CompileTypeMetadata,
|
|
|
|
providers: CompileProviderMetadata[],
|
|
|
|
declaredDirectives: CompileIdentifierMetadata[],
|
|
|
|
exportedDirectives: CompileIdentifierMetadata[],
|
|
|
|
declaredPipes: CompileIdentifierMetadata[],
|
|
|
|
exportedPipes: CompileIdentifierMetadata[],
|
|
|
|
entryComponents: CompileEntryComponentMetadata[],
|
|
|
|
bootstrapComponents: CompileIdentifierMetadata[],
|
|
|
|
importedModules: CompileNgModuleSummary[],
|
|
|
|
exportedModules: CompileNgModuleSummary[],
|
|
|
|
transitiveModule: TransitiveCompileNgModuleMetadata,
|
|
|
|
schemas: SchemaMetadata[],
|
|
|
|
id: string|null
|
|
|
|
}) {
|
|
|
|
this.type = type || null;
|
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);
|
2017-03-24 09:59:58 -07:00
|
|
|
this.id = id || null;
|
|
|
|
this.transitiveModule = transitiveModule || null;
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
|
2016-11-10 16:27:53 -08:00
|
|
|
toSummary(): CompileNgModuleSummary {
|
2017-03-24 09:59:58 -07:00
|
|
|
const module = this.transitiveModule !;
|
2016-11-10 16:27:53 -08:00
|
|
|
return {
|
2016-12-02 10:08:46 -08:00
|
|
|
summaryKind: CompileSummaryKind.NgModule,
|
2016-11-10 16:27:53 -08:00
|
|
|
type: this.type,
|
2017-03-24 09:59:58 -07:00
|
|
|
entryComponents: module.entryComponents,
|
|
|
|
providers: module.providers,
|
|
|
|
modules: module.modules,
|
|
|
|
exportedDirectives: module.exportedDirectives,
|
|
|
|
exportedPipes: module.exportedPipes
|
2016-11-10 16:27:53 -08:00
|
|
|
};
|
|
|
|
}
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
export class TransitiveCompileNgModuleMetadata {
|
2016-11-10 14:07:30 -08:00
|
|
|
directivesSet = new Set<any>();
|
2016-12-02 10:08:46 -08:00
|
|
|
directives: CompileIdentifierMetadata[] = [];
|
|
|
|
exportedDirectivesSet = new Set<any>();
|
|
|
|
exportedDirectives: CompileIdentifierMetadata[] = [];
|
2016-11-10 14:07:30 -08:00
|
|
|
pipesSet = new Set<any>();
|
2016-12-02 10:08:46 -08:00
|
|
|
pipes: CompileIdentifierMetadata[] = [];
|
|
|
|
exportedPipesSet = new Set<any>();
|
|
|
|
exportedPipes: CompileIdentifierMetadata[] = [];
|
|
|
|
modulesSet = new Set<any>();
|
|
|
|
modules: CompileTypeMetadata[] = [];
|
|
|
|
entryComponentsSet = new Set<any>();
|
2016-12-27 09:36:47 -08:00
|
|
|
entryComponents: CompileEntryComponentMetadata[] = [];
|
2016-12-02 10:08:46 -08:00
|
|
|
|
|
|
|
providers: {provider: CompileProviderMetadata, module: CompileIdentifierMetadata}[] = [];
|
|
|
|
|
|
|
|
addProvider(provider: CompileProviderMetadata, module: CompileIdentifierMetadata) {
|
|
|
|
this.providers.push({provider: provider, module: module});
|
|
|
|
}
|
2016-10-24 13:28:23 -07:00
|
|
|
|
2016-12-02 10:08:46 -08:00
|
|
|
addDirective(id: CompileIdentifierMetadata) {
|
|
|
|
if (!this.directivesSet.has(id.reference)) {
|
|
|
|
this.directivesSet.add(id.reference);
|
|
|
|
this.directives.push(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
addExportedDirective(id: CompileIdentifierMetadata) {
|
|
|
|
if (!this.exportedDirectivesSet.has(id.reference)) {
|
|
|
|
this.exportedDirectivesSet.add(id.reference);
|
|
|
|
this.exportedDirectives.push(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
addPipe(id: CompileIdentifierMetadata) {
|
|
|
|
if (!this.pipesSet.has(id.reference)) {
|
|
|
|
this.pipesSet.add(id.reference);
|
|
|
|
this.pipes.push(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
addExportedPipe(id: CompileIdentifierMetadata) {
|
|
|
|
if (!this.exportedPipesSet.has(id.reference)) {
|
|
|
|
this.exportedPipesSet.add(id.reference);
|
|
|
|
this.exportedPipes.push(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
addModule(id: CompileTypeMetadata) {
|
|
|
|
if (!this.modulesSet.has(id.reference)) {
|
|
|
|
this.modulesSet.add(id.reference);
|
|
|
|
this.modules.push(id);
|
|
|
|
}
|
|
|
|
}
|
2016-12-27 09:36:47 -08:00
|
|
|
addEntryComponent(ec: CompileEntryComponentMetadata) {
|
|
|
|
if (!this.entryComponentsSet.has(ec.componentType)) {
|
|
|
|
this.entryComponentsSet.add(ec.componentType);
|
|
|
|
this.entryComponents.push(ec);
|
2016-12-02 10:08:46 -08:00
|
|
|
}
|
2016-07-18 03:50:31 -07:00
|
|
|
}
|
2016-02-26 08:01:07 -08:00
|
|
|
}
|
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
function _normalizeArray(obj: any[] | undefined | null): 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
|
|
|
|
2016-08-15 19:37:42 -07:00
|
|
|
export class ProviderMeta {
|
|
|
|
token: any;
|
2017-08-16 09:00:03 -07:00
|
|
|
useClass: Type|null;
|
2016-08-15 19:37:42 -07:00
|
|
|
useValue: any;
|
|
|
|
useExisting: any;
|
2017-03-24 09:59:58 -07:00
|
|
|
useFactory: Function|null;
|
|
|
|
dependencies: Object[]|null;
|
2016-08-15 19:37:42 -07:00
|
|
|
multi: boolean;
|
|
|
|
|
|
|
|
constructor(token: any, {useClass, useValue, useExisting, useFactory, deps, multi}: {
|
2017-08-16 09:00:03 -07:00
|
|
|
useClass?: Type,
|
2016-08-15 19:37:42 -07:00
|
|
|
useValue?: any,
|
|
|
|
useExisting?: any,
|
2017-03-24 09:59:58 -07:00
|
|
|
useFactory?: Function|null,
|
|
|
|
deps?: Object[]|null,
|
2016-08-15 19:37:42 -07:00
|
|
|
multi?: boolean
|
|
|
|
}) {
|
|
|
|
this.token = token;
|
2017-03-24 09:59:58 -07:00
|
|
|
this.useClass = useClass || null;
|
2016-08-15 19:37:42 -07:00
|
|
|
this.useValue = useValue;
|
|
|
|
this.useExisting = useExisting;
|
2017-03-24 09:59:58 -07:00
|
|
|
this.useFactory = useFactory || null;
|
|
|
|
this.dependencies = deps || null;
|
2016-08-15 19:37:42 -07:00
|
|
|
this.multi = !!multi;
|
|
|
|
}
|
|
|
|
}
|
2017-03-01 14:10:59 -08:00
|
|
|
|
|
|
|
export function flatten<T>(list: Array<T|T[]>): T[] {
|
|
|
|
return list.reduce((flat: any[], item: T | T[]): T[] => {
|
|
|
|
const flatItem = Array.isArray(item) ? flatten(item) : item;
|
|
|
|
return (<T[]>flat).concat(flatItem);
|
|
|
|
}, []);
|
|
|
|
}
|
2017-03-14 09:16:15 -07:00
|
|
|
|
2017-10-04 13:37:27 -07:00
|
|
|
function jitSourceUrl(url: string) {
|
2017-03-16 17:33:17 -07:00
|
|
|
// Note: We need 3 "/" so that ng shows up as a separate domain
|
|
|
|
// in the chrome dev tools.
|
|
|
|
return url.replace(/(\w+:\/\/[\w:-]+)?(\/+)?/, 'ng:///');
|
2017-03-14 09:16:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export function templateSourceUrl(
|
|
|
|
ngModuleType: CompileIdentifierMetadata, compMeta: {type: CompileIdentifierMetadata},
|
2017-03-24 09:59:58 -07:00
|
|
|
templateMeta: {isInline: boolean, templateUrl: string | null}) {
|
2017-03-16 17:33:17 -07:00
|
|
|
let url: string;
|
2017-03-14 09:16:15 -07:00
|
|
|
if (templateMeta.isInline) {
|
|
|
|
if (compMeta.type.reference instanceof StaticSymbol) {
|
2017-03-15 15:50:30 -07:00
|
|
|
// Note: a .ts file might contain multiple components with inline templates,
|
|
|
|
// so we need to give them unique urls, as these will be used for sourcemaps.
|
2017-03-16 17:33:17 -07:00
|
|
|
url = `${compMeta.type.reference.filePath}.${compMeta.type.reference.name}.html`;
|
2017-03-14 09:16:15 -07:00
|
|
|
} else {
|
2017-03-16 17:33:17 -07:00
|
|
|
url = `${identifierName(ngModuleType)}/${identifierName(compMeta.type)}.html`;
|
2017-03-14 09:16:15 -07:00
|
|
|
}
|
|
|
|
} else {
|
2017-03-24 09:59:58 -07:00
|
|
|
url = templateMeta.templateUrl !;
|
2017-03-14 09:16:15 -07:00
|
|
|
}
|
2017-10-04 13:37:27 -07:00
|
|
|
return compMeta.type.reference instanceof StaticSymbol ? url : jitSourceUrl(url);
|
2017-03-14 09:16:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export function sharedStylesheetJitUrl(meta: CompileStylesheetMetadata, id: number) {
|
2017-03-24 09:59:58 -07:00
|
|
|
const pathParts = meta.moduleUrl !.split(/\/\\/g);
|
2017-03-14 09:16:15 -07:00
|
|
|
const baseName = pathParts[pathParts.length - 1];
|
2017-10-04 13:37:27 -07:00
|
|
|
return jitSourceUrl(`css/${id}${baseName}.ngstyle.js`);
|
2017-03-14 09:16:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export function ngModuleJitUrl(moduleMeta: CompileNgModuleMetadata): string {
|
2017-10-04 13:37:27 -07:00
|
|
|
return jitSourceUrl(`${identifierName(moduleMeta.type)}/module.ngfactory.js`);
|
2017-03-14 09:16:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export function templateJitUrl(
|
|
|
|
ngModuleType: CompileIdentifierMetadata, compMeta: CompileDirectiveMetadata): string {
|
2017-10-04 13:37:27 -07:00
|
|
|
return jitSourceUrl(
|
|
|
|
`${identifierName(ngModuleType)}/${identifierName(compMeta.type)}.ngfactory.js`);
|
2017-03-14 09:16:15 -07:00
|
|
|
}
|