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 {SchemaMetadata} from '@angular/core';
|
2016-08-10 15:55:18 -07:00
|
|
|
|
2016-11-14 17:37:47 -08:00
|
|
|
import {AnimationCompiler} from '../animation/animation_compiler';
|
|
|
|
import {AnimationParser} from '../animation/animation_parser';
|
|
|
|
import {CompileDirectiveMetadata, CompileIdentifierMetadata, CompileNgModuleMetadata, CompilePipeMetadata, CompileProviderMetadata, createHostComponentMeta} from '../compile_metadata';
|
|
|
|
import {DirectiveNormalizer} from '../directive_normalizer';
|
|
|
|
import {DirectiveWrapperCompileResult, DirectiveWrapperCompiler} from '../directive_wrapper_compiler';
|
|
|
|
import {ListWrapper} from '../facade/collection';
|
|
|
|
import {Identifiers, resolveIdentifier, resolveIdentifierToken} from '../identifiers';
|
|
|
|
import {CompileMetadataResolver} from '../metadata_resolver';
|
|
|
|
import {NgModuleCompiler} from '../ng_module_compiler';
|
|
|
|
import {OutputEmitter} from '../output/abstract_emitter';
|
|
|
|
import * as o from '../output/output_ast';
|
|
|
|
import {CompiledStylesheet, StyleCompiler} from '../style_compiler';
|
|
|
|
import {TemplateParser} from '../template_parser/template_parser';
|
|
|
|
import {ComponentFactoryDependency, DirectiveWrapperDependency, ViewClassDependency, ViewCompileResult, ViewCompiler} from '../view_compiler/view_compiler';
|
|
|
|
|
|
|
|
import {StaticSymbol} from './static_symbol';
|
2016-01-06 14:13:44 -08:00
|
|
|
|
|
|
|
export class SourceModule {
|
2016-10-24 13:28:23 -07:00
|
|
|
constructor(public fileUrl: string, public moduleUrl: string, public source: string) {}
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-11-16 10:22:11 -08:00
|
|
|
export interface NgAnalyzedModules {
|
|
|
|
ngModules: CompileNgModuleMetadata[];
|
|
|
|
ngModuleByPipeOrDirective: Map<StaticSymbol, CompileNgModuleMetadata>;
|
|
|
|
files: Array<{srcUrl: string, directives: StaticSymbol[], ngModules: StaticSymbol[]}>;
|
|
|
|
symbolsMissingModule?: StaticSymbol[];
|
|
|
|
}
|
|
|
|
|
2016-10-24 13:28:23 -07:00
|
|
|
// Returns all the source files and a mapping from modules to directives
|
|
|
|
export function analyzeNgModules(
|
2016-10-25 16:28:22 -07:00
|
|
|
programStaticSymbols: StaticSymbol[], options: {transitiveModules: boolean},
|
2016-11-16 10:22:11 -08:00
|
|
|
metadataResolver: CompileMetadataResolver): NgAnalyzedModules {
|
|
|
|
const {ngModules, symbolsMissingModule} =
|
|
|
|
_createNgModules(programStaticSymbols, options, metadataResolver);
|
|
|
|
return _analyzeNgModules(ngModules, symbolsMissingModule);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function analyzeAndValidateNgModules(
|
|
|
|
programStaticSymbols: StaticSymbol[], options: {transitiveModules: boolean},
|
|
|
|
metadataResolver: CompileMetadataResolver): NgAnalyzedModules {
|
|
|
|
const result = analyzeNgModules(programStaticSymbols, options, metadataResolver);
|
|
|
|
if (result.symbolsMissingModule && result.symbolsMissingModule.length) {
|
|
|
|
const messages = result.symbolsMissingModule.map(
|
|
|
|
s => `Cannot determine the module for class ${s.name} in ${s.filePath}!`);
|
|
|
|
throw new Error(messages.join('\n'));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for the directives in the given modules have been loaded
|
|
|
|
export function loadNgModuleDirectives(ngModules: CompileNgModuleMetadata[]) {
|
|
|
|
return Promise
|
|
|
|
.all(ListWrapper.flatten(ngModules.map(
|
|
|
|
(ngModule) => ngModule.transitiveModule.directiveLoaders.map(loader => loader()))))
|
|
|
|
.then(() => {});
|
2016-11-10 14:07:30 -08:00
|
|
|
}
|
2016-10-25 16:28:22 -07:00
|
|
|
|
2016-11-16 10:22:11 -08:00
|
|
|
function _analyzeNgModules(
|
|
|
|
ngModuleMetas: CompileNgModuleMetadata[],
|
|
|
|
symbolsMissingModule: StaticSymbol[]): NgAnalyzedModules {
|
2016-10-24 13:28:23 -07:00
|
|
|
const moduleMetasByRef = new Map<any, CompileNgModuleMetadata>();
|
2016-11-10 14:07:30 -08:00
|
|
|
ngModuleMetas.forEach((ngModule) => moduleMetasByRef.set(ngModule.type.reference, ngModule));
|
2016-10-25 16:28:22 -07:00
|
|
|
const ngModuleByPipeOrDirective = new Map<StaticSymbol, CompileNgModuleMetadata>();
|
2016-10-24 13:28:23 -07:00
|
|
|
const ngModulesByFile = new Map<string, StaticSymbol[]>();
|
|
|
|
const ngDirectivesByFile = new Map<string, StaticSymbol[]>();
|
2016-10-25 16:28:22 -07:00
|
|
|
const filePaths = new Set<string>();
|
2016-10-24 13:28:23 -07:00
|
|
|
|
|
|
|
// Looping over all modules to construct:
|
2016-10-25 16:28:22 -07:00
|
|
|
// - a map from file to modules `ngModulesByFile`,
|
|
|
|
// - a map from file to directives `ngDirectivesByFile`,
|
|
|
|
// - a map from directive/pipe to module `ngModuleByPipeOrDirective`.
|
2016-10-24 13:28:23 -07:00
|
|
|
ngModuleMetas.forEach((ngModuleMeta) => {
|
|
|
|
const srcFileUrl = ngModuleMeta.type.reference.filePath;
|
2016-10-25 16:28:22 -07:00
|
|
|
filePaths.add(srcFileUrl);
|
2016-10-24 13:28:23 -07:00
|
|
|
ngModulesByFile.set(
|
|
|
|
srcFileUrl, (ngModulesByFile.get(srcFileUrl) || []).concat(ngModuleMeta.type.reference));
|
2016-10-07 13:52:53 -07:00
|
|
|
|
2016-11-10 14:07:30 -08:00
|
|
|
ngModuleMeta.declaredDirectives.forEach((dirIdentifier) => {
|
|
|
|
const fileUrl = dirIdentifier.reference.filePath;
|
2016-10-25 16:28:22 -07:00
|
|
|
filePaths.add(fileUrl);
|
2016-10-24 13:28:23 -07:00
|
|
|
ngDirectivesByFile.set(
|
2016-11-10 14:07:30 -08:00
|
|
|
fileUrl, (ngDirectivesByFile.get(fileUrl) || []).concat(dirIdentifier.reference));
|
|
|
|
ngModuleByPipeOrDirective.set(dirIdentifier.reference, ngModuleMeta);
|
2016-10-25 16:28:22 -07:00
|
|
|
});
|
2016-11-10 14:07:30 -08:00
|
|
|
ngModuleMeta.declaredPipes.forEach((pipeIdentifier) => {
|
|
|
|
const fileUrl = pipeIdentifier.reference.filePath;
|
2016-10-25 16:28:22 -07:00
|
|
|
filePaths.add(fileUrl);
|
2016-11-10 14:07:30 -08:00
|
|
|
ngModuleByPipeOrDirective.set(pipeIdentifier.reference, ngModuleMeta);
|
2016-10-07 13:52:53 -07:00
|
|
|
});
|
|
|
|
});
|
2016-10-24 13:28:23 -07:00
|
|
|
|
|
|
|
const files: {srcUrl: string, directives: StaticSymbol[], ngModules: StaticSymbol[]}[] = [];
|
|
|
|
|
2016-10-25 16:28:22 -07:00
|
|
|
filePaths.forEach((srcUrl) => {
|
2016-10-24 13:28:23 -07:00
|
|
|
const directives = ngDirectivesByFile.get(srcUrl) || [];
|
|
|
|
const ngModules = ngModulesByFile.get(srcUrl) || [];
|
|
|
|
files.push({srcUrl, directives, ngModules});
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
2016-11-16 10:22:11 -08:00
|
|
|
// map directive/pipe to module
|
|
|
|
ngModuleByPipeOrDirective,
|
|
|
|
// list modules and directives for every source file
|
|
|
|
files,
|
|
|
|
ngModules: ngModuleMetas, symbolsMissingModule
|
2016-10-24 13:28:23 -07:00
|
|
|
};
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
2016-07-18 03:50:31 -07:00
|
|
|
|
2016-11-14 17:37:47 -08:00
|
|
|
export class AotCompiler {
|
2016-09-23 16:37:04 -04:00
|
|
|
private _animationCompiler = new AnimationCompiler();
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
2016-11-10 14:07:30 -08:00
|
|
|
private _metadataResolver: CompileMetadataResolver, private _templateParser: TemplateParser,
|
2016-06-08 16:38:52 -07:00
|
|
|
private _styleCompiler: StyleCompiler, private _viewCompiler: ViewCompiler,
|
2016-10-13 16:34:37 -07:00
|
|
|
private _dirWrapperCompiler: DirectiveWrapperCompiler,
|
2016-08-12 14:45:36 -07:00
|
|
|
private _ngModuleCompiler: NgModuleCompiler, private _outputEmitter: OutputEmitter,
|
2016-11-08 15:45:30 -08:00
|
|
|
private _localeId: string, private _translationFormat: string,
|
|
|
|
private _animationParser: AnimationParser) {}
|
2016-07-18 03:50:31 -07:00
|
|
|
|
2016-11-10 14:07:30 -08:00
|
|
|
clearCache() { this._metadataResolver.clearCache(); }
|
2016-06-28 09:54:42 -07:00
|
|
|
|
2016-10-25 16:28:22 -07:00
|
|
|
compileModules(staticSymbols: StaticSymbol[], options: {transitiveModules: boolean}):
|
|
|
|
Promise<SourceModule[]> {
|
2016-11-16 10:22:11 -08:00
|
|
|
const {ngModuleByPipeOrDirective, files, ngModules} =
|
|
|
|
analyzeAndValidateNgModules(staticSymbols, options, this._metadataResolver);
|
|
|
|
return loadNgModuleDirectives(ngModules).then(() => {
|
|
|
|
const sourceModules = files.map(
|
|
|
|
file => this._compileSrcFile(
|
|
|
|
file.srcUrl, ngModuleByPipeOrDirective, file.directives, file.ngModules));
|
|
|
|
return ListWrapper.flatten(sourceModules);
|
|
|
|
});
|
2016-10-24 13:28:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private _compileSrcFile(
|
2016-10-25 16:28:22 -07:00
|
|
|
srcFileUrl: string, ngModuleByPipeOrDirective: Map<StaticSymbol, CompileNgModuleMetadata>,
|
2016-11-10 14:07:30 -08:00
|
|
|
directives: StaticSymbol[], ngModules: StaticSymbol[]): SourceModule[] {
|
2016-10-24 13:28:23 -07:00
|
|
|
const fileSuffix = _splitTypescriptSuffix(srcFileUrl)[1];
|
2016-09-15 15:38:17 -07:00
|
|
|
const statements: o.Statement[] = [];
|
|
|
|
const exportedVars: string[] = [];
|
|
|
|
const outputSourceModules: SourceModule[] = [];
|
2016-06-28 09:54:42 -07:00
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
// compile all ng modules
|
2016-06-28 09:54:42 -07:00
|
|
|
exportedVars.push(
|
2016-07-18 03:50:31 -07:00
|
|
|
...ngModules.map((ngModuleType) => this._compileModule(ngModuleType, statements)));
|
2016-06-28 09:54:42 -07:00
|
|
|
|
2016-10-13 16:34:37 -07:00
|
|
|
// compile directive wrappers
|
|
|
|
exportedVars.push(...directives.map(
|
|
|
|
(directiveType) => this._compileDirectiveWrapper(directiveType, statements)));
|
|
|
|
|
2016-06-28 09:54:42 -07:00
|
|
|
// compile components
|
2016-11-10 14:07:30 -08:00
|
|
|
directives.forEach((dirType) => {
|
|
|
|
const compMeta = this._metadataResolver.getDirectiveMetadata(<any>dirType);
|
|
|
|
if (!compMeta.isComponent) {
|
|
|
|
return Promise.resolve(null);
|
|
|
|
}
|
|
|
|
const ngModule = ngModuleByPipeOrDirective.get(dirType);
|
|
|
|
if (!ngModule) {
|
|
|
|
throw new Error(
|
|
|
|
`Internal Error: cannot determine the module for component ${compMeta.type.name}!`);
|
|
|
|
}
|
|
|
|
|
|
|
|
_assertComponent(compMeta);
|
|
|
|
|
|
|
|
// compile styles
|
|
|
|
const stylesCompileResults = this._styleCompiler.compileComponent(compMeta);
|
|
|
|
stylesCompileResults.externalStylesheets.forEach((compiledStyleSheet) => {
|
|
|
|
outputSourceModules.push(this._codgenStyles(srcFileUrl, compiledStyleSheet, fileSuffix));
|
|
|
|
});
|
|
|
|
|
|
|
|
// compile components
|
|
|
|
exportedVars.push(
|
|
|
|
this._compileComponentFactory(compMeta, ngModule, fileSuffix, statements),
|
|
|
|
this._compileComponent(
|
|
|
|
compMeta, ngModule, ngModule.transitiveModule.directives,
|
|
|
|
stylesCompileResults.componentStylesheet, fileSuffix, statements));
|
|
|
|
});
|
|
|
|
if (statements.length > 0) {
|
|
|
|
const srcModule = this._codegenSourceModule(
|
|
|
|
srcFileUrl, _ngfactoryModuleUrl(srcFileUrl), statements, exportedVars);
|
|
|
|
outputSourceModules.unshift(srcModule);
|
|
|
|
}
|
|
|
|
return outputSourceModules;
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
private _compileModule(ngModuleType: StaticSymbol, targetStatements: o.Statement[]): string {
|
2016-09-15 15:38:17 -07:00
|
|
|
const ngModule = this._metadataResolver.getNgModuleMetadata(ngModuleType);
|
2016-09-15 15:43:00 -07:00
|
|
|
const providers: CompileProviderMetadata[] = [];
|
|
|
|
|
|
|
|
if (this._localeId) {
|
|
|
|
providers.push(new CompileProviderMetadata({
|
|
|
|
token: resolveIdentifierToken(Identifiers.LOCALE_ID),
|
|
|
|
useValue: this._localeId,
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._translationFormat) {
|
|
|
|
providers.push(new CompileProviderMetadata({
|
2016-08-24 17:39:49 -07:00
|
|
|
token: resolveIdentifierToken(Identifiers.TRANSLATIONS_FORMAT),
|
2016-08-12 14:45:36 -07:00
|
|
|
useValue: this._translationFormat
|
2016-09-15 15:43:00 -07:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
const appCompileResult = this._ngModuleCompiler.compile(ngModule, providers);
|
|
|
|
|
2016-06-28 09:54:42 -07:00
|
|
|
appCompileResult.dependencies.forEach((dep) => {
|
|
|
|
dep.placeholder.name = _componentFactoryName(dep.comp);
|
|
|
|
dep.placeholder.moduleUrl = _ngfactoryModuleUrl(dep.comp.moduleUrl);
|
|
|
|
});
|
2016-09-15 15:43:00 -07:00
|
|
|
|
2016-06-28 09:54:42 -07:00
|
|
|
targetStatements.push(...appCompileResult.statements);
|
2016-07-18 03:50:31 -07:00
|
|
|
return appCompileResult.ngModuleFactoryVar;
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
|
2016-10-13 16:34:37 -07:00
|
|
|
private _compileDirectiveWrapper(directiveType: StaticSymbol, targetStatements: o.Statement[]):
|
|
|
|
string {
|
|
|
|
const dirMeta = this._metadataResolver.getDirectiveMetadata(directiveType);
|
|
|
|
const dirCompileResult = this._dirWrapperCompiler.compile(dirMeta);
|
|
|
|
|
|
|
|
targetStatements.push(...dirCompileResult.statements);
|
|
|
|
return dirCompileResult.dirWrapperClassVar;
|
|
|
|
}
|
|
|
|
|
2016-06-28 09:54:42 -07:00
|
|
|
private _compileComponentFactory(
|
2016-11-10 14:07:30 -08:00
|
|
|
compMeta: CompileDirectiveMetadata, ngModule: CompileNgModuleMetadata, fileSuffix: string,
|
2016-06-28 09:54:42 -07:00
|
|
|
targetStatements: o.Statement[]): string {
|
2016-09-15 15:38:17 -07:00
|
|
|
const hostMeta = createHostComponentMeta(compMeta);
|
2016-11-10 14:07:30 -08:00
|
|
|
const hostViewFactoryVar = this._compileComponent(
|
|
|
|
hostMeta, ngModule, [compMeta.type], null, fileSuffix, targetStatements);
|
2016-09-15 15:38:17 -07:00
|
|
|
const compFactoryVar = _componentFactoryName(compMeta.type);
|
2016-06-28 09:54:42 -07:00
|
|
|
targetStatements.push(
|
|
|
|
o.variable(compFactoryVar)
|
2016-08-24 17:39:49 -07:00
|
|
|
.set(o.importExpr(resolveIdentifier(Identifiers.ComponentFactory), [o.importType(
|
|
|
|
compMeta.type)])
|
2016-06-28 09:54:42 -07:00
|
|
|
.instantiate(
|
|
|
|
[
|
2016-09-15 15:38:17 -07:00
|
|
|
o.literal(compMeta.selector),
|
|
|
|
o.variable(hostViewFactoryVar),
|
|
|
|
o.importExpr(compMeta.type),
|
2016-06-28 09:54:42 -07:00
|
|
|
],
|
|
|
|
o.importType(
|
2016-08-24 17:39:49 -07:00
|
|
|
resolveIdentifier(Identifiers.ComponentFactory),
|
|
|
|
[o.importType(compMeta.type)], [o.TypeModifier.Const])))
|
2016-06-28 09:54:42 -07:00
|
|
|
.toDeclStmt(null, [o.StmtModifier.Final]));
|
|
|
|
return compFactoryVar;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
private _compileComponent(
|
2016-11-10 14:07:30 -08:00
|
|
|
compMeta: CompileDirectiveMetadata, ngModule: CompileNgModuleMetadata,
|
|
|
|
directiveIdentifiers: CompileIdentifierMetadata[], componentStyles: CompiledStylesheet,
|
2016-07-25 03:02:57 -07:00
|
|
|
fileSuffix: string, targetStatements: o.Statement[]): string {
|
2016-09-23 16:37:04 -04:00
|
|
|
const parsedAnimations = this._animationParser.parseComponent(compMeta);
|
2016-11-10 14:07:30 -08:00
|
|
|
const directives =
|
2016-11-10 16:27:53 -08:00
|
|
|
directiveIdentifiers.map(dir => this._metadataResolver.getDirectiveSummary(dir.reference));
|
2016-11-10 14:07:30 -08:00
|
|
|
const pipes = ngModule.transitiveModule.pipes.map(
|
2016-11-10 16:27:53 -08:00
|
|
|
pipe => this._metadataResolver.getPipeSummary(pipe.reference));
|
2016-11-10 14:07:30 -08:00
|
|
|
|
2016-09-15 15:38:17 -07:00
|
|
|
const parsedTemplate = this._templateParser.parse(
|
2016-11-10 14:07:30 -08:00
|
|
|
compMeta, compMeta.template.template, directives, pipes, ngModule.schemas,
|
|
|
|
compMeta.type.name);
|
2016-09-15 15:38:17 -07:00
|
|
|
const stylesExpr = componentStyles ? o.variable(componentStyles.stylesVar) : o.literalArr([]);
|
2016-09-23 16:37:04 -04:00
|
|
|
const compiledAnimations =
|
|
|
|
this._animationCompiler.compile(compMeta.type.name, parsedAnimations);
|
|
|
|
const viewResult = this._viewCompiler.compileComponent(
|
|
|
|
compMeta, parsedTemplate, stylesExpr, pipes, compiledAnimations);
|
2016-06-24 08:46:43 -07:00
|
|
|
if (componentStyles) {
|
2016-09-15 15:38:17 -07:00
|
|
|
targetStatements.push(..._resolveStyleStatements(componentStyles, fileSuffix));
|
2016-06-24 08:46:43 -07:00
|
|
|
}
|
2016-11-02 08:11:10 -07:00
|
|
|
compiledAnimations.forEach(entry => targetStatements.push(...entry.statements));
|
2016-09-15 15:38:17 -07:00
|
|
|
targetStatements.push(..._resolveViewStatements(viewResult));
|
2016-11-02 08:36:23 -07:00
|
|
|
return viewResult.viewClassVar;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-10-24 13:28:23 -07:00
|
|
|
private _codgenStyles(
|
|
|
|
fileUrl: string, stylesCompileResult: CompiledStylesheet, fileSuffix: string): SourceModule {
|
2016-06-24 08:46:43 -07:00
|
|
|
_resolveStyleStatements(stylesCompileResult, fileSuffix);
|
2016-06-08 16:38:52 -07:00
|
|
|
return this._codegenSourceModule(
|
2016-10-24 13:28:23 -07:00
|
|
|
fileUrl, _stylesModuleUrl(
|
|
|
|
stylesCompileResult.meta.moduleUrl, stylesCompileResult.isShimmed, fileSuffix),
|
2016-06-24 08:46:43 -07:00
|
|
|
stylesCompileResult.statements, [stylesCompileResult.stylesVar]);
|
2016-05-02 09:38:46 -07:00
|
|
|
}
|
2016-01-06 14:13:44 -08:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
private _codegenSourceModule(
|
2016-10-24 13:28:23 -07:00
|
|
|
fileUrl: string, moduleUrl: string, statements: o.Statement[],
|
|
|
|
exportedVars: string[]): SourceModule {
|
2016-01-06 14:13:44 -08:00
|
|
|
return new SourceModule(
|
2016-10-24 13:28:23 -07:00
|
|
|
fileUrl, moduleUrl,
|
|
|
|
this._outputEmitter.emitStatements(moduleUrl, statements, exportedVars));
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function _resolveViewStatements(compileResult: ViewCompileResult): o.Statement[] {
|
2016-06-22 14:06:23 -07:00
|
|
|
compileResult.dependencies.forEach((dep) => {
|
2016-11-02 08:36:23 -07:00
|
|
|
if (dep instanceof ViewClassDependency) {
|
|
|
|
const vfd = <ViewClassDependency>dep;
|
2016-09-19 15:36:25 -07:00
|
|
|
vfd.placeholder.moduleUrl = _ngfactoryModuleUrl(vfd.comp.moduleUrl);
|
2016-06-22 14:06:23 -07:00
|
|
|
} else if (dep instanceof ComponentFactoryDependency) {
|
2016-09-19 15:36:25 -07:00
|
|
|
const cfd = <ComponentFactoryDependency>dep;
|
|
|
|
cfd.placeholder.name = _componentFactoryName(cfd.comp);
|
|
|
|
cfd.placeholder.moduleUrl = _ngfactoryModuleUrl(cfd.comp.moduleUrl);
|
2016-10-13 16:34:37 -07:00
|
|
|
} else if (dep instanceof DirectiveWrapperDependency) {
|
|
|
|
const dwd = <DirectiveWrapperDependency>dep;
|
|
|
|
dwd.placeholder.moduleUrl = _ngfactoryModuleUrl(dwd.dir.moduleUrl);
|
2016-06-22 14:06:23 -07:00
|
|
|
}
|
|
|
|
});
|
2016-01-06 14:13:44 -08:00
|
|
|
return compileResult.statements;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
function _resolveStyleStatements(
|
2016-06-24 08:46:43 -07:00
|
|
|
compileResult: CompiledStylesheet, fileSuffix: string): o.Statement[] {
|
2016-01-06 14:13:44 -08:00
|
|
|
compileResult.dependencies.forEach((dep) => {
|
2016-06-24 08:46:43 -07:00
|
|
|
dep.valuePlaceholder.moduleUrl = _stylesModuleUrl(dep.moduleUrl, dep.isShimmed, fileSuffix);
|
2016-01-06 14:13:44 -08:00
|
|
|
});
|
|
|
|
return compileResult.statements;
|
|
|
|
}
|
|
|
|
|
2016-10-13 16:34:37 -07:00
|
|
|
function _ngfactoryModuleUrl(dirUrl: string): string {
|
|
|
|
const urlWithSuffix = _splitTypescriptSuffix(dirUrl);
|
2016-05-02 09:38:46 -07:00
|
|
|
return `${urlWithSuffix[0]}.ngfactory${urlWithSuffix[1]}`;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-06-22 14:06:23 -07:00
|
|
|
function _componentFactoryName(comp: CompileIdentifierMetadata): string {
|
|
|
|
return `${comp.name}NgFactory`;
|
|
|
|
}
|
|
|
|
|
2016-05-02 09:38:46 -07:00
|
|
|
function _stylesModuleUrl(stylesheetUrl: string, shim: boolean, suffix: string): string {
|
|
|
|
return shim ? `${stylesheetUrl}.shim${suffix}` : `${stylesheetUrl}${suffix}`;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
function _assertComponent(meta: CompileDirectiveMetadata) {
|
|
|
|
if (!meta.isComponent) {
|
2016-08-25 00:50:16 -07:00
|
|
|
throw new Error(`Could not compile '${meta.type.name}' because it is not a component.`);
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
}
|
2016-05-02 09:38:46 -07:00
|
|
|
|
2016-08-18 10:11:06 -07:00
|
|
|
function _splitTypescriptSuffix(path: string): string[] {
|
2016-09-15 15:38:17 -07:00
|
|
|
if (path.endsWith('.d.ts')) {
|
|
|
|
return [path.slice(0, -5), '.ts'];
|
2016-08-18 10:11:06 -07:00
|
|
|
}
|
2016-09-15 15:38:17 -07:00
|
|
|
|
|
|
|
const lastDot = path.lastIndexOf('.');
|
|
|
|
|
2016-05-02 09:38:46 -07:00
|
|
|
if (lastDot !== -1) {
|
|
|
|
return [path.substring(0, lastDot), path.substring(lastDot)];
|
|
|
|
}
|
2016-09-15 15:38:17 -07:00
|
|
|
|
|
|
|
return [path, ''];
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|
2016-10-25 16:28:22 -07:00
|
|
|
|
2016-11-10 14:07:30 -08:00
|
|
|
// Load the NgModules and check
|
|
|
|
// that all directives / pipes that are present in the program
|
|
|
|
// are also declared by a module.
|
2016-11-16 10:22:11 -08:00
|
|
|
function _createNgModules(
|
2016-11-10 14:07:30 -08:00
|
|
|
programStaticSymbols: StaticSymbol[], options: {transitiveModules: boolean},
|
2016-11-16 10:22:11 -08:00
|
|
|
metadataResolver: CompileMetadataResolver):
|
|
|
|
{ngModules: CompileNgModuleMetadata[], symbolsMissingModule: StaticSymbol[]} {
|
2016-11-10 14:07:30 -08:00
|
|
|
const ngModules = new Map<any, CompileNgModuleMetadata>();
|
|
|
|
const programPipesAndDirectives: StaticSymbol[] = [];
|
|
|
|
const ngModulePipesAndDirective = new Set<StaticSymbol>();
|
|
|
|
|
|
|
|
const addNgModule = (staticSymbol: any) => {
|
|
|
|
if (ngModules.has(staticSymbol)) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-16 10:22:11 -08:00
|
|
|
const ngModule = metadataResolver.getUnloadedNgModuleMetadata(staticSymbol, false, false);
|
2016-10-25 16:28:22 -07:00
|
|
|
if (ngModule) {
|
2016-11-10 14:07:30 -08:00
|
|
|
ngModules.set(ngModule.type.reference, ngModule);
|
|
|
|
ngModule.declaredDirectives.forEach((dir) => ngModulePipesAndDirective.add(dir.reference));
|
|
|
|
ngModule.declaredPipes.forEach((pipe) => ngModulePipesAndDirective.add(pipe.reference));
|
|
|
|
if (options.transitiveModules) {
|
|
|
|
// For every input modules add the list of transitively included modules
|
|
|
|
ngModule.transitiveModule.modules.forEach(modMeta => addNgModule(modMeta.type.reference));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return !!ngModule;
|
|
|
|
};
|
|
|
|
programStaticSymbols.forEach((staticSymbol) => {
|
|
|
|
if (!addNgModule(staticSymbol) &&
|
|
|
|
(metadataResolver.isDirective(staticSymbol) || metadataResolver.isPipe(staticSymbol))) {
|
|
|
|
programPipesAndDirectives.push(staticSymbol);
|
2016-10-25 16:28:22 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-11-10 14:07:30 -08:00
|
|
|
// Throw an error if any of the program pipe or directives is not declared by a module
|
|
|
|
const symbolsMissingModule =
|
|
|
|
programPipesAndDirectives.filter(s => !ngModulePipesAndDirective.has(s));
|
|
|
|
|
2016-11-16 10:22:11 -08:00
|
|
|
return {ngModules: Array.from(ngModules.values()), symbolsMissingModule};
|
2016-10-25 16:28:22 -07:00
|
|
|
}
|