2014-11-11 17:33:47 -08:00
|
|
|
import {Type, FIELD, isBlank, isPresent} from 'facade/lang';
|
|
|
|
import {Promise, PromiseWrapper} from 'facade/async';
|
|
|
|
import {List, ListWrapper} from 'facade/collection';
|
|
|
|
import {DOM, Element} from 'facade/dom';
|
|
|
|
|
|
|
|
import {Parser} from 'change_detection/parser/parser';
|
|
|
|
import {ClosureMap} from 'change_detection/parser/closure_map';
|
|
|
|
|
|
|
|
import {Reflector} from './reflector';
|
|
|
|
import {ProtoView} from './view';
|
|
|
|
import {CompilePipeline} from './pipeline/compile_pipeline';
|
|
|
|
import {CompileElement} from './pipeline/compile_element';
|
|
|
|
import {createDefaultSteps} from './pipeline/default_steps';
|
2014-09-19 16:38:37 -07:00
|
|
|
import {TemplateLoader} from './template_loader';
|
2014-11-11 17:33:47 -08:00
|
|
|
import {AnnotatedType} from './annotated_type';
|
2014-09-19 23:03:36 +00:00
|
|
|
|
2014-11-11 17:33:47 -08:00
|
|
|
/**
|
|
|
|
* The compiler loads and translates the html templates of components into
|
|
|
|
* nested ProtoViews. To decompose its functionality it uses
|
|
|
|
* the CompilePipeline and the CompileSteps.
|
|
|
|
*/
|
2014-09-19 23:03:36 +00:00
|
|
|
export class Compiler {
|
2014-11-11 17:33:47 -08:00
|
|
|
constructor(templateLoader:TemplateLoader, reflector: Reflector, parser:Parser, closureMap:ClosureMap) {
|
2014-09-19 16:38:37 -07:00
|
|
|
this._templateLoader = templateLoader;
|
2014-11-11 17:33:47 -08:00
|
|
|
this._reflector = reflector;
|
|
|
|
this._parser = parser;
|
|
|
|
this._closureMap = closureMap;
|
2014-09-19 16:38:37 -07:00
|
|
|
}
|
|
|
|
|
2014-11-11 17:33:47 -08:00
|
|
|
createSteps(component:AnnotatedType):List<CompileStep> {
|
|
|
|
var directives = component.annotation.template.directives;
|
|
|
|
var annotatedDirectives = ListWrapper.create();
|
|
|
|
for (var i=0; i<directives.length; i++) {
|
|
|
|
ListWrapper.push(annotatedDirectives, this._reflector.annotatedType(directives[i]));
|
|
|
|
}
|
|
|
|
return createDefaultSteps(this._parser, this._closureMap, annotatedDirectives);
|
2014-09-19 23:03:36 +00:00
|
|
|
}
|
|
|
|
|
2014-11-11 17:33:47 -08:00
|
|
|
compile(component:Type, templateRoot:Element = null):Promise<ProtoView> {
|
|
|
|
// TODO load all components transitively from the cache first
|
|
|
|
var cache = null;
|
2014-11-14 14:03:03 -08:00
|
|
|
return PromiseWrapper.resolve(this.compileWithCache(
|
|
|
|
cache, this._reflector.annotatedType(component), templateRoot)
|
2014-11-11 17:33:47 -08:00
|
|
|
);
|
|
|
|
}
|
2014-09-19 16:38:37 -07:00
|
|
|
|
2014-11-14 14:03:03 -08:00
|
|
|
// public so that we can compile in sync in performance tests.
|
|
|
|
compileWithCache(cache, component:AnnotatedType, templateRoot:Element = null):ProtoView {
|
2014-11-11 17:33:47 -08:00
|
|
|
if (isBlank(templateRoot)) {
|
|
|
|
// TODO: read out the cache if templateRoot = null. Could contain:
|
|
|
|
// - templateRoot string
|
|
|
|
// - precompiled template
|
|
|
|
// - ProtoView
|
|
|
|
templateRoot = DOM.createTemplate(component.annotation.template.inline);
|
|
|
|
}
|
|
|
|
var pipeline = new CompilePipeline(this.createSteps(component));
|
|
|
|
var compileElements = pipeline.process(templateRoot);
|
|
|
|
var rootProtoView = compileElements[0].inheritedProtoView;
|
|
|
|
// TODO: put the rootProtoView into the cache to support recursive templates!
|
|
|
|
|
|
|
|
for (var i=0; i<compileElements.length; i++) {
|
|
|
|
var ce = compileElements[i];
|
|
|
|
if (isPresent(ce.componentDirective)) {
|
2014-11-14 14:03:03 -08:00
|
|
|
ce.inheritedElementBinder.nestedProtoView = this.compileWithCache(cache, ce.componentDirective, null);
|
2014-11-11 17:33:47 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rootProtoView;
|
|
|
|
}
|
2014-09-28 16:29:11 -07:00
|
|
|
}
|