2016-04-28 17:50:03 -07:00
|
|
|
import {ComponentFactory} from '@angular/core';
|
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
import {
|
|
|
|
CompileDirectiveMetadata,
|
|
|
|
CompileIdentifierMetadata,
|
|
|
|
CompilePipeMetadata,
|
|
|
|
createHostComponentMeta
|
|
|
|
} from './compile_metadata';
|
|
|
|
|
2016-05-31 15:22:59 -07:00
|
|
|
import {BaseException} from './facade/exceptions';
|
|
|
|
import {ListWrapper} from './facade/collection';
|
2016-04-28 17:50:03 -07:00
|
|
|
import {StyleCompiler, StylesCompileResult} from './style_compiler';
|
2016-01-06 14:13:44 -08:00
|
|
|
import {ViewCompiler, ViewCompileResult} from './view_compiler/view_compiler';
|
|
|
|
import {TemplateParser} from './template_parser';
|
|
|
|
import {DirectiveNormalizer} from './directive_normalizer';
|
|
|
|
import {OutputEmitter} from './output/abstract_emitter';
|
|
|
|
import * as o from './output/output_ast';
|
2016-05-02 09:38:46 -07:00
|
|
|
import {XHR} from './xhr';
|
2016-01-06 14:13:44 -08:00
|
|
|
|
2016-05-31 15:22:59 -07:00
|
|
|
import {assetUrl} from './util';
|
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 {
|
|
|
|
constructor(public component: CompileDirectiveMetadata,
|
|
|
|
public directives: CompileDirectiveMetadata[], public pipes: CompilePipeMetadata[]) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class OfflineCompiler {
|
|
|
|
constructor(private _directiveNormalizer: DirectiveNormalizer,
|
|
|
|
private _templateParser: TemplateParser, private _styleCompiler: StyleCompiler,
|
2016-05-02 09:38:46 -07:00
|
|
|
private _viewCompiler: ViewCompiler, private _outputEmitter: OutputEmitter,
|
|
|
|
private _xhr: XHR) {}
|
2016-01-06 14:13:44 -08:00
|
|
|
|
|
|
|
normalizeDirectiveMetadata(directive: CompileDirectiveMetadata):
|
|
|
|
Promise<CompileDirectiveMetadata> {
|
|
|
|
return this._directiveNormalizer.normalizeDirective(directive);
|
|
|
|
}
|
|
|
|
|
|
|
|
compileTemplates(components: NormalizedComponentWithViewDirectives[]): SourceModule {
|
|
|
|
if (components.length === 0) {
|
|
|
|
throw new BaseException('No components given');
|
|
|
|
}
|
2016-06-08 15:45:15 -07:00
|
|
|
var statements: any[] /** TODO #9100 */ = [];
|
|
|
|
var exportedVars: any[] /** TODO #9100 */ = [];
|
2016-01-06 14:13:44 -08:00
|
|
|
var moduleUrl = _templateModuleUrl(components[0].component);
|
|
|
|
components.forEach(componentWithDirs => {
|
|
|
|
var compMeta = <CompileDirectiveMetadata>componentWithDirs.component;
|
|
|
|
_assertComponent(compMeta);
|
|
|
|
var compViewFactoryVar = this._compileComponent(compMeta, componentWithDirs.directives,
|
|
|
|
componentWithDirs.pipes, statements);
|
|
|
|
exportedVars.push(compViewFactoryVar);
|
|
|
|
|
|
|
|
var hostMeta = createHostComponentMeta(compMeta.type, compMeta.selector);
|
2016-04-13 17:05:17 -07:00
|
|
|
var hostViewFactoryVar = this._compileComponent(hostMeta, [compMeta], [], statements);
|
|
|
|
var compFactoryVar = `${compMeta.type.name}NgFactory`;
|
2016-04-30 10:52:04 -07:00
|
|
|
statements.push(
|
|
|
|
o.variable(compFactoryVar)
|
|
|
|
.set(o.importExpr(_COMPONENT_FACTORY_IDENTIFIER, [o.importType(compMeta.type)])
|
|
|
|
.instantiate(
|
|
|
|
[
|
|
|
|
o.literal(compMeta.selector),
|
|
|
|
o.variable(hostViewFactoryVar),
|
|
|
|
o.importExpr(compMeta.type)
|
|
|
|
],
|
|
|
|
o.importType(_COMPONENT_FACTORY_IDENTIFIER,
|
|
|
|
[o.importType(compMeta.type)], [o.TypeModifier.Const])))
|
|
|
|
.toDeclStmt(null, [o.StmtModifier.Final]));
|
2016-04-13 17:05:17 -07:00
|
|
|
exportedVars.push(compFactoryVar);
|
2016-01-06 14:13:44 -08:00
|
|
|
});
|
|
|
|
return this._codegenSourceModule(moduleUrl, statements, exportedVars);
|
|
|
|
}
|
|
|
|
|
2016-05-02 09:38:46 -07:00
|
|
|
loadAndCompileStylesheet(stylesheetUrl: string, shim: boolean,
|
|
|
|
suffix: string): Promise<StyleSheetSourceWithImports> {
|
|
|
|
return this._xhr.get(stylesheetUrl)
|
|
|
|
.then((cssText) => {
|
|
|
|
var compileResult = this._styleCompiler.compileStylesheet(stylesheetUrl, cssText, shim);
|
2016-06-08 15:45:15 -07:00
|
|
|
var importedUrls: any[] /** TODO #9100 */ = [];
|
2016-05-02 09:38:46 -07:00
|
|
|
compileResult.dependencies.forEach((dep) => {
|
|
|
|
importedUrls.push(dep.moduleUrl);
|
|
|
|
dep.valuePlaceholder.moduleUrl = _stylesModuleUrl(dep.moduleUrl, dep.isShimmed, suffix);
|
|
|
|
});
|
|
|
|
return new StyleSheetSourceWithImports(
|
|
|
|
this._codgenStyles(stylesheetUrl, shim, suffix, compileResult), importedUrls);
|
|
|
|
});
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private _compileComponent(compMeta: CompileDirectiveMetadata,
|
|
|
|
directives: CompileDirectiveMetadata[], pipes: CompilePipeMetadata[],
|
|
|
|
targetStatements: o.Statement[]): string {
|
|
|
|
var styleResult = this._styleCompiler.compileComponent(compMeta);
|
|
|
|
var parsedTemplate = this._templateParser.parse(compMeta, compMeta.template.template,
|
|
|
|
directives, pipes, compMeta.type.name);
|
|
|
|
var viewResult = this._viewCompiler.compileComponent(compMeta, parsedTemplate,
|
|
|
|
o.variable(styleResult.stylesVar), pipes);
|
2016-05-02 09:38:46 -07:00
|
|
|
ListWrapper.addAll(targetStatements,
|
|
|
|
_resolveStyleStatements(compMeta.type.moduleUrl, styleResult));
|
2016-01-06 14:13:44 -08:00
|
|
|
ListWrapper.addAll(targetStatements, _resolveViewStatements(viewResult));
|
|
|
|
return viewResult.viewFactoryVar;
|
|
|
|
}
|
|
|
|
|
2016-05-02 09:38:46 -07:00
|
|
|
private _codgenStyles(inputUrl: string, shim: boolean, suffix: string,
|
|
|
|
stylesCompileResult: StylesCompileResult): SourceModule {
|
|
|
|
return this._codegenSourceModule(_stylesModuleUrl(inputUrl, shim, suffix),
|
|
|
|
stylesCompileResult.statements,
|
|
|
|
[stylesCompileResult.stylesVar]);
|
|
|
|
}
|
2016-01-06 14:13:44 -08:00
|
|
|
|
|
|
|
private _codegenSourceModule(moduleUrl: string, statements: o.Statement[],
|
|
|
|
exportedVars: string[]): SourceModule {
|
|
|
|
return new SourceModule(
|
|
|
|
moduleUrl, this._outputEmitter.emitStatements(moduleUrl, statements, exportedVars));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function _resolveViewStatements(compileResult: ViewCompileResult): o.Statement[] {
|
|
|
|
compileResult.dependencies.forEach(
|
|
|
|
(dep) => { dep.factoryPlaceholder.moduleUrl = _templateModuleUrl(dep.comp); });
|
|
|
|
return compileResult.statements;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-02 09:38:46 -07:00
|
|
|
function _resolveStyleStatements(containingModuleUrl: string,
|
|
|
|
compileResult: StylesCompileResult): o.Statement[] {
|
|
|
|
var containingSuffix = _splitSuffix(containingModuleUrl)[1];
|
2016-01-06 14:13:44 -08:00
|
|
|
compileResult.dependencies.forEach((dep) => {
|
2016-05-02 09:38:46 -07:00
|
|
|
dep.valuePlaceholder.moduleUrl =
|
|
|
|
_stylesModuleUrl(dep.moduleUrl, dep.isShimmed, containingSuffix);
|
2016-01-06 14:13:44 -08:00
|
|
|
});
|
|
|
|
return compileResult.statements;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _templateModuleUrl(comp: CompileDirectiveMetadata): string {
|
2016-05-02 09:38:46 -07:00
|
|
|
var urlWithSuffix = _splitSuffix(comp.type.moduleUrl);
|
|
|
|
return `${urlWithSuffix[0]}.ngfactory${urlWithSuffix[1]}`;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
function _splitSuffix(path: string): string[] {
|
|
|
|
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
|
|
|
}
|