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-04-28 17:50:03 -07:00
|
|
|
import {ComponentFactory} from '@angular/core';
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
import {CompileDirectiveMetadata, CompileIdentifierMetadata, CompilePipeMetadata, createHostComponentMeta} from './compile_metadata';
|
2016-01-06 14:13:44 -08:00
|
|
|
import {DirectiveNormalizer} from './directive_normalizer';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {ListWrapper} from './facade/collection';
|
|
|
|
import {BaseException} from './facade/exceptions';
|
2016-01-06 14:13:44 -08:00
|
|
|
import {OutputEmitter} from './output/abstract_emitter';
|
|
|
|
import * as o from './output/output_ast';
|
2016-06-24 08:46:43 -07:00
|
|
|
import {CompiledStylesheet, StyleCompiler} from './style_compiler';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {TemplateParser} from './template_parser';
|
2016-05-31 15:22:59 -07:00
|
|
|
import {assetUrl} from './util';
|
2016-06-22 14:06:23 -07:00
|
|
|
import {ComponentFactoryDependency, ViewCompileResult, ViewCompiler, ViewFactoryDependency} from './view_compiler/view_compiler';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {XHR} from './xhr';
|
2016-01-06 14:13:44 -08:00
|
|
|
|
2016-04-13 17:05:17 -07:00
|
|
|
var _COMPONENT_FACTORY_IDENTIFIER = new CompileIdentifierMetadata({
|
|
|
|
name: 'ComponentFactory',
|
|
|
|
runtime: ComponentFactory,
|
2016-04-28 17:50:03 -07:00
|
|
|
moduleUrl: assetUrl('core', 'linker/component_factory')
|
2016-01-06 14:13:44 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
export class SourceModule {
|
|
|
|
constructor(public moduleUrl: string, public source: string) {}
|
|
|
|
}
|
|
|
|
|
2016-05-02 09:38:46 -07:00
|
|
|
export class StyleSheetSourceWithImports {
|
|
|
|
constructor(public source: SourceModule, public importedUrls: string[]) {}
|
|
|
|
}
|
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
export class NormalizedComponentWithViewDirectives {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
|
|
|
public component: CompileDirectiveMetadata, public directives: CompileDirectiveMetadata[],
|
|
|
|
public pipes: CompilePipeMetadata[]) {}
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export class OfflineCompiler {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
|
|
|
private _directiveNormalizer: DirectiveNormalizer, private _templateParser: TemplateParser,
|
|
|
|
private _styleCompiler: StyleCompiler, private _viewCompiler: ViewCompiler,
|
2016-06-24 08:46:43 -07:00
|
|
|
private _outputEmitter: OutputEmitter) {}
|
2016-01-06 14:13:44 -08:00
|
|
|
|
|
|
|
normalizeDirectiveMetadata(directive: CompileDirectiveMetadata):
|
|
|
|
Promise<CompileDirectiveMetadata> {
|
2016-06-24 08:46:43 -07:00
|
|
|
return this._directiveNormalizer.normalizeDirective(directive).asyncResult;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:46:43 -07:00
|
|
|
compileTemplates(components: NormalizedComponentWithViewDirectives[]): SourceModule[] {
|
2016-01-06 14:13:44 -08:00
|
|
|
if (components.length === 0) {
|
|
|
|
throw new BaseException('No components given');
|
|
|
|
}
|
2016-06-11 21:23:37 -07:00
|
|
|
var statements: o.DeclareVarStmt[] = [];
|
|
|
|
var exportedVars: string[] = [];
|
2016-06-22 14:06:23 -07:00
|
|
|
var moduleUrl = _ngfactoryModuleUrl(components[0].component.type);
|
2016-06-24 08:46:43 -07:00
|
|
|
var outputSourceModules: SourceModule[] = [];
|
2016-01-06 14:13:44 -08:00
|
|
|
components.forEach(componentWithDirs => {
|
|
|
|
var compMeta = <CompileDirectiveMetadata>componentWithDirs.component;
|
|
|
|
_assertComponent(compMeta);
|
2016-06-24 08:46:43 -07:00
|
|
|
var fileSuffix = _splitLastSuffix(compMeta.type.moduleUrl)[1];
|
|
|
|
var stylesCompileResults = this._styleCompiler.compileComponent(compMeta);
|
|
|
|
stylesCompileResults.externalStylesheets.forEach((compiledStyleSheet) => {
|
|
|
|
outputSourceModules.push(this._codgenStyles(compiledStyleSheet, fileSuffix));
|
|
|
|
});
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
var compViewFactoryVar = this._compileComponent(
|
2016-06-24 08:46:43 -07:00
|
|
|
compMeta, componentWithDirs.directives, componentWithDirs.pipes,
|
|
|
|
stylesCompileResults.componentStylesheet, fileSuffix, statements);
|
2016-01-06 14:13:44 -08:00
|
|
|
exportedVars.push(compViewFactoryVar);
|
|
|
|
|
|
|
|
var hostMeta = createHostComponentMeta(compMeta.type, compMeta.selector);
|
2016-06-24 08:46:43 -07:00
|
|
|
var hostViewFactoryVar =
|
|
|
|
this._compileComponent(hostMeta, [compMeta], [], null, fileSuffix, statements);
|
2016-06-22 14:06:23 -07:00
|
|
|
var compFactoryVar = _componentFactoryName(compMeta.type);
|
2016-04-30 10:52:04 -07:00
|
|
|
statements.push(
|
|
|
|
o.variable(compFactoryVar)
|
|
|
|
.set(o.importExpr(_COMPONENT_FACTORY_IDENTIFIER, [o.importType(compMeta.type)])
|
|
|
|
.instantiate(
|
|
|
|
[
|
2016-06-08 16:38:52 -07:00
|
|
|
o.literal(compMeta.selector), o.variable(hostViewFactoryVar),
|
2016-04-30 10:52:04 -07:00
|
|
|
o.importExpr(compMeta.type)
|
|
|
|
],
|
2016-06-08 16:38:52 -07:00
|
|
|
o.importType(
|
|
|
|
_COMPONENT_FACTORY_IDENTIFIER, [o.importType(compMeta.type)],
|
|
|
|
[o.TypeModifier.Const])))
|
2016-04-30 10:52:04 -07:00
|
|
|
.toDeclStmt(null, [o.StmtModifier.Final]));
|
2016-04-13 17:05:17 -07:00
|
|
|
exportedVars.push(compFactoryVar);
|
2016-01-06 14:13:44 -08:00
|
|
|
});
|
2016-06-24 08:46:43 -07:00
|
|
|
outputSourceModules.unshift(this._codegenSourceModule(moduleUrl, statements, exportedVars));
|
|
|
|
return outputSourceModules;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
private _compileComponent(
|
|
|
|
compMeta: CompileDirectiveMetadata, directives: CompileDirectiveMetadata[],
|
2016-06-24 08:46:43 -07:00
|
|
|
pipes: CompilePipeMetadata[], componentStyles: CompiledStylesheet, fileSuffix: string,
|
|
|
|
targetStatements: o.Statement[]): string {
|
2016-06-08 16:38:52 -07:00
|
|
|
var parsedTemplate = this._templateParser.parse(
|
|
|
|
compMeta, compMeta.template.template, directives, pipes, compMeta.type.name);
|
2016-06-24 08:46:43 -07:00
|
|
|
var stylesExpr = componentStyles ? o.variable(componentStyles.stylesVar) : o.literalArr([]);
|
|
|
|
var viewResult =
|
|
|
|
this._viewCompiler.compileComponent(compMeta, parsedTemplate, stylesExpr, pipes);
|
|
|
|
if (componentStyles) {
|
|
|
|
ListWrapper.addAll(targetStatements, _resolveStyleStatements(componentStyles, fileSuffix));
|
|
|
|
}
|
2016-01-06 14:13:44 -08:00
|
|
|
ListWrapper.addAll(targetStatements, _resolveViewStatements(viewResult));
|
|
|
|
return viewResult.viewFactoryVar;
|
|
|
|
}
|
|
|
|
|
2016-06-24 08:46:43 -07:00
|
|
|
private _codgenStyles(stylesCompileResult: CompiledStylesheet, fileSuffix: string): SourceModule {
|
|
|
|
_resolveStyleStatements(stylesCompileResult, fileSuffix);
|
2016-06-08 16:38:52 -07:00
|
|
|
return this._codegenSourceModule(
|
2016-06-24 08:46:43 -07:00
|
|
|
_stylesModuleUrl(
|
|
|
|
stylesCompileResult.meta.moduleUrl, stylesCompileResult.isShimmed, fileSuffix),
|
|
|
|
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(
|
|
|
|
moduleUrl: string, statements: o.Statement[], exportedVars: string[]): SourceModule {
|
2016-01-06 14:13:44 -08:00
|
|
|
return new SourceModule(
|
|
|
|
moduleUrl, this._outputEmitter.emitStatements(moduleUrl, statements, exportedVars));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function _resolveViewStatements(compileResult: ViewCompileResult): o.Statement[] {
|
2016-06-22 14:06:23 -07:00
|
|
|
compileResult.dependencies.forEach((dep) => {
|
|
|
|
if (dep instanceof ViewFactoryDependency) {
|
2016-06-24 08:46:43 -07:00
|
|
|
dep.placeholder.moduleUrl = _ngfactoryModuleUrl(dep.comp);
|
2016-06-22 14:06:23 -07:00
|
|
|
} else if (dep instanceof ComponentFactoryDependency) {
|
|
|
|
dep.placeholder.name = _componentFactoryName(dep.comp);
|
|
|
|
dep.placeholder.moduleUrl = _ngfactoryModuleUrl(dep.comp);
|
|
|
|
}
|
|
|
|
});
|
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-06-22 14:06:23 -07:00
|
|
|
function _ngfactoryModuleUrl(comp: CompileIdentifierMetadata): string {
|
2016-06-24 08:46:43 -07:00
|
|
|
var urlWithSuffix = _splitLastSuffix(comp.moduleUrl);
|
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) {
|
|
|
|
throw new BaseException(`Could not compile '${meta.type.name}' because it is not a component.`);
|
|
|
|
}
|
|
|
|
}
|
2016-05-02 09:38:46 -07:00
|
|
|
|
2016-06-24 08:46:43 -07:00
|
|
|
function _splitLastSuffix(path: string): string[] {
|
2016-05-02 09:38:46 -07:00
|
|
|
let lastDot = path.lastIndexOf('.');
|
|
|
|
if (lastDot !== -1) {
|
|
|
|
return [path.substring(0, lastDot), path.substring(lastDot)];
|
|
|
|
} else {
|
|
|
|
return [path, ''];
|
|
|
|
}
|
2016-05-25 12:46:22 -07:00
|
|
|
}
|