2015-05-20 09:48:15 -07:00
|
|
|
import {Binding, resolveForwardRef, Injectable} from 'angular2/di';
|
|
|
|
import {
|
|
|
|
Type,
|
|
|
|
isBlank,
|
|
|
|
isPresent,
|
|
|
|
BaseException,
|
|
|
|
normalizeBlank,
|
2015-06-11 19:32:55 +02:00
|
|
|
stringify,
|
|
|
|
isArray,
|
|
|
|
isPromise
|
2015-05-20 09:48:15 -07:00
|
|
|
} from 'angular2/src/facade/lang';
|
|
|
|
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
|
|
|
|
import {List, ListWrapper, Map, MapWrapper} from 'angular2/src/facade/collection';
|
|
|
|
|
|
|
|
import {DirectiveResolver} from './directive_resolver';
|
|
|
|
|
|
|
|
import {AppProtoView} from './view';
|
|
|
|
import {ElementBinder} from './element_binder';
|
|
|
|
import {ProtoViewRef} from './view_ref';
|
|
|
|
import {DirectiveBinding} from './element_injector';
|
2015-06-24 10:54:04 +02:00
|
|
|
import {ViewResolver} from './view_resolver';
|
2015-05-20 09:48:15 -07:00
|
|
|
import {View} from '../annotations_impl/view';
|
|
|
|
import {ComponentUrlMapper} from './component_url_mapper';
|
|
|
|
import {ProtoViewFactory} from './proto_view_factory';
|
|
|
|
import {UrlResolver} from 'angular2/src/services/url_resolver';
|
2015-06-23 11:28:06 +02:00
|
|
|
import {AppRootUrl} from 'angular2/src/services/app_root_url';
|
2015-05-20 09:48:15 -07:00
|
|
|
|
|
|
|
import * as renderApi from 'angular2/src/render/api';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cache that stores the AppProtoView of the template of a component.
|
|
|
|
* Used to prevent duplicate work and resolve cyclic dependencies.
|
|
|
|
*/
|
|
|
|
@Injectable()
|
|
|
|
export class CompilerCache {
|
2015-06-17 16:21:40 -07:00
|
|
|
_cache: Map<Type, AppProtoView> = new Map();
|
|
|
|
_hostCache: Map<Type, AppProtoView> = new Map();
|
2015-05-20 09:48:15 -07:00
|
|
|
|
2015-06-17 16:21:40 -07:00
|
|
|
set(component: Type, protoView: AppProtoView): void { this._cache.set(component, protoView); }
|
2015-05-20 09:48:15 -07:00
|
|
|
|
|
|
|
get(component: Type): AppProtoView {
|
2015-06-17 16:21:40 -07:00
|
|
|
var result = this._cache.get(component);
|
2015-05-20 09:48:15 -07:00
|
|
|
return normalizeBlank(result);
|
|
|
|
}
|
|
|
|
|
2015-06-16 09:45:03 -07:00
|
|
|
setHost(component: Type, protoView: AppProtoView): void {
|
2015-06-17 16:21:40 -07:00
|
|
|
this._hostCache.set(component, protoView);
|
2015-06-16 09:45:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
getHost(component: Type): AppProtoView {
|
2015-06-17 16:21:40 -07:00
|
|
|
var result = this._hostCache.get(component);
|
2015-06-16 09:45:03 -07:00
|
|
|
return normalizeBlank(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
clear(): void {
|
2015-06-18 09:59:51 -07:00
|
|
|
this._cache.clear();
|
|
|
|
this._hostCache.clear();
|
2015-06-16 09:45:03 -07:00
|
|
|
}
|
2015-05-20 09:48:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @exportedAs angular2/view
|
|
|
|
*/
|
|
|
|
@Injectable()
|
|
|
|
export class Compiler {
|
|
|
|
private _reader: DirectiveResolver;
|
|
|
|
private _compilerCache: CompilerCache;
|
|
|
|
private _compiling: Map<Type, Promise<AppProtoView>>;
|
2015-06-24 10:54:04 +02:00
|
|
|
private _viewResolver: ViewResolver;
|
2015-05-20 09:48:15 -07:00
|
|
|
private _componentUrlMapper: ComponentUrlMapper;
|
|
|
|
private _urlResolver: UrlResolver;
|
|
|
|
private _appUrl: string;
|
|
|
|
private _render: renderApi.RenderCompiler;
|
|
|
|
private _protoViewFactory: ProtoViewFactory;
|
|
|
|
|
2015-06-24 10:54:04 +02:00
|
|
|
constructor(reader: DirectiveResolver, cache: CompilerCache, viewResolver: ViewResolver,
|
2015-05-20 09:48:15 -07:00
|
|
|
componentUrlMapper: ComponentUrlMapper, urlResolver: UrlResolver,
|
2015-06-23 11:28:06 +02:00
|
|
|
render: renderApi.RenderCompiler, protoViewFactory: ProtoViewFactory,
|
|
|
|
appUrl: AppRootUrl) {
|
2015-05-20 09:48:15 -07:00
|
|
|
this._reader = reader;
|
|
|
|
this._compilerCache = cache;
|
2015-06-17 16:21:40 -07:00
|
|
|
this._compiling = new Map();
|
2015-06-24 10:54:04 +02:00
|
|
|
this._viewResolver = viewResolver;
|
2015-05-20 09:48:15 -07:00
|
|
|
this._componentUrlMapper = componentUrlMapper;
|
|
|
|
this._urlResolver = urlResolver;
|
2015-06-23 11:28:06 +02:00
|
|
|
this._appUrl = appUrl.value;
|
2015-05-20 09:48:15 -07:00
|
|
|
this._render = render;
|
|
|
|
this._protoViewFactory = protoViewFactory;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _bindDirective(directiveTypeOrBinding): DirectiveBinding {
|
|
|
|
if (directiveTypeOrBinding instanceof DirectiveBinding) {
|
|
|
|
return directiveTypeOrBinding;
|
|
|
|
} else if (directiveTypeOrBinding instanceof Binding) {
|
|
|
|
let annotation = this._reader.resolve(directiveTypeOrBinding.token);
|
|
|
|
return DirectiveBinding.createFromBinding(directiveTypeOrBinding, annotation);
|
|
|
|
} else {
|
|
|
|
let annotation = this._reader.resolve(directiveTypeOrBinding);
|
|
|
|
return DirectiveBinding.createFromType(directiveTypeOrBinding, annotation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a hostView as if the compiler encountered <hostcmp></hostcmp>.
|
|
|
|
// Used for bootstrapping.
|
|
|
|
compileInHost(componentTypeOrBinding: Type | Binding): Promise<ProtoViewRef> {
|
|
|
|
var componentBinding = this._bindDirective(componentTypeOrBinding);
|
|
|
|
Compiler._assertTypeIsComponent(componentBinding);
|
|
|
|
|
|
|
|
var directiveMetadata = componentBinding.metadata;
|
2015-06-16 09:45:03 -07:00
|
|
|
var hostPvPromise;
|
|
|
|
var component = <Type>componentBinding.key.token;
|
|
|
|
var hostAppProtoView = this._compilerCache.getHost(component);
|
|
|
|
if (isPresent(hostAppProtoView)) {
|
|
|
|
hostPvPromise = PromiseWrapper.resolve(hostAppProtoView);
|
|
|
|
} else {
|
|
|
|
hostPvPromise = this._render.compileHost(directiveMetadata)
|
|
|
|
.then((hostRenderPv) => {
|
|
|
|
return this._compileNestedProtoViews(componentBinding, hostRenderPv,
|
|
|
|
[componentBinding]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return hostPvPromise.then((hostAppProtoView) => { return new ProtoViewRef(hostAppProtoView); });
|
2015-05-20 09:48:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private _compile(componentBinding: DirectiveBinding): Promise<AppProtoView>| AppProtoView {
|
|
|
|
var component = <Type>componentBinding.key.token;
|
|
|
|
var protoView = this._compilerCache.get(component);
|
|
|
|
if (isPresent(protoView)) {
|
|
|
|
// The component has already been compiled into an AppProtoView,
|
|
|
|
// returns a plain AppProtoView, not wrapped inside of a Promise.
|
|
|
|
// Needed for recursive components.
|
|
|
|
return protoView;
|
|
|
|
}
|
|
|
|
|
2015-06-17 16:21:40 -07:00
|
|
|
var pvPromise = this._compiling.get(component);
|
2015-05-20 09:48:15 -07:00
|
|
|
if (isPresent(pvPromise)) {
|
|
|
|
// The component is already being compiled, attach to the existing Promise
|
|
|
|
// instead of re-compiling the component.
|
|
|
|
// It happens when a template references a component multiple times.
|
|
|
|
return pvPromise;
|
|
|
|
}
|
2015-06-24 11:10:29 +02:00
|
|
|
var view = this._viewResolver.resolve(component);
|
2015-05-20 09:48:15 -07:00
|
|
|
|
2015-06-24 11:10:29 +02:00
|
|
|
var directives = this._flattenDirectives(view);
|
2015-05-20 09:48:15 -07:00
|
|
|
|
|
|
|
for (var i = 0; i < directives.length; i++) {
|
|
|
|
if (!Compiler._isValidDirective(directives[i])) {
|
|
|
|
throw new BaseException(
|
|
|
|
`Unexpected directive value '${stringify(directives[i])}' on the View of component '${stringify(component)}'`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var boundDirectives =
|
|
|
|
ListWrapper.map(directives, (directive) => this._bindDirective(directive));
|
|
|
|
|
2015-06-24 11:10:29 +02:00
|
|
|
var renderTemplate = this._buildRenderTemplate(component, view, boundDirectives);
|
2015-05-20 09:48:15 -07:00
|
|
|
pvPromise =
|
|
|
|
this._render.compile(renderTemplate)
|
|
|
|
.then((renderPv) => {
|
|
|
|
return this._compileNestedProtoViews(componentBinding, renderPv, boundDirectives);
|
|
|
|
});
|
|
|
|
|
2015-06-17 16:21:40 -07:00
|
|
|
this._compiling.set(component, pvPromise);
|
2015-05-20 09:48:15 -07:00
|
|
|
return pvPromise;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _compileNestedProtoViews(componentBinding, renderPv, directives): Promise<AppProtoView>|
|
|
|
|
AppProtoView {
|
|
|
|
var protoViews =
|
|
|
|
this._protoViewFactory.createAppProtoViews(componentBinding, renderPv, directives);
|
|
|
|
var protoView = protoViews[0];
|
2015-06-16 09:45:03 -07:00
|
|
|
if (isPresent(componentBinding)) {
|
2015-05-20 09:48:15 -07:00
|
|
|
var component = componentBinding.key.token;
|
2015-06-16 09:45:03 -07:00
|
|
|
if (renderPv.type === renderApi.ViewType.COMPONENT) {
|
|
|
|
// Populate the cache before compiling the nested components,
|
|
|
|
// so that components can reference themselves in their template.
|
|
|
|
this._compilerCache.set(component, protoView);
|
|
|
|
MapWrapper.delete(this._compiling, component);
|
|
|
|
} else {
|
|
|
|
this._compilerCache.setHost(component, protoView);
|
|
|
|
}
|
2015-05-20 09:48:15 -07:00
|
|
|
}
|
|
|
|
var nestedPVPromises = [];
|
|
|
|
ListWrapper.forEach(this._collectComponentElementBinders(protoViews), (elementBinder) => {
|
|
|
|
var nestedComponent = elementBinder.componentDirective;
|
2015-05-21 16:42:19 +02:00
|
|
|
var elementBinderDone =
|
|
|
|
(nestedPv: AppProtoView) => { elementBinder.nestedProtoView = nestedPv; };
|
2015-05-20 09:48:15 -07:00
|
|
|
var nestedCall = this._compile(nestedComponent);
|
2015-06-11 19:32:55 +02:00
|
|
|
if (isPromise(nestedCall)) {
|
2015-06-17 11:17:21 -07:00
|
|
|
nestedPVPromises.push((<Promise<AppProtoView>>nestedCall).then(elementBinderDone));
|
2015-06-16 09:45:03 -07:00
|
|
|
} else {
|
2015-05-21 16:42:19 +02:00
|
|
|
elementBinderDone(<AppProtoView>nestedCall);
|
2015-05-20 09:48:15 -07:00
|
|
|
}
|
2015-05-21 16:42:19 +02:00
|
|
|
});
|
2015-05-20 09:48:15 -07:00
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
if (nestedPVPromises.length > 0) {
|
|
|
|
return PromiseWrapper.all(nestedPVPromises).then((_) => protoView);
|
|
|
|
} else {
|
|
|
|
return protoView;
|
|
|
|
}
|
2015-05-20 09:48:15 -07:00
|
|
|
}
|
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
private _collectComponentElementBinders(protoViews: List<AppProtoView>): List<ElementBinder> {
|
|
|
|
var componentElementBinders = [];
|
|
|
|
ListWrapper.forEach(protoViews, (protoView) => {
|
|
|
|
ListWrapper.forEach(protoView.elementBinders, (elementBinder) => {
|
|
|
|
if (isPresent(elementBinder.componentDirective)) {
|
2015-06-17 11:17:21 -07:00
|
|
|
componentElementBinders.push(elementBinder);
|
2015-05-21 16:42:19 +02:00
|
|
|
}
|
|
|
|
});
|
2015-05-20 09:48:15 -07:00
|
|
|
});
|
2015-05-21 16:42:19 +02:00
|
|
|
return componentElementBinders;
|
|
|
|
}
|
2015-05-20 09:48:15 -07:00
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
private _buildRenderTemplate(component, view, directives): renderApi.ViewDefinition {
|
|
|
|
var componentUrl =
|
|
|
|
this._urlResolver.resolve(this._appUrl, this._componentUrlMapper.getUrl(component));
|
|
|
|
var templateAbsUrl = null;
|
2015-06-10 14:40:24 +02:00
|
|
|
var styleAbsUrls = null;
|
2015-05-21 16:42:19 +02:00
|
|
|
if (isPresent(view.templateUrl)) {
|
|
|
|
templateAbsUrl = this._urlResolver.resolve(componentUrl, view.templateUrl);
|
|
|
|
} else if (isPresent(view.template)) {
|
|
|
|
// Note: If we have an inline template, we also need to send
|
|
|
|
// the url for the component to the render so that it
|
|
|
|
// is able to resolve urls in stylesheets.
|
|
|
|
templateAbsUrl = componentUrl;
|
|
|
|
}
|
2015-06-10 14:40:24 +02:00
|
|
|
if (isPresent(view.styleUrls)) {
|
|
|
|
styleAbsUrls =
|
|
|
|
ListWrapper.map(view.styleUrls, url => this._urlResolver.resolve(componentUrl, url));
|
|
|
|
}
|
2015-05-21 16:42:19 +02:00
|
|
|
return new renderApi.ViewDefinition({
|
|
|
|
componentId: stringify(component),
|
2015-06-10 14:40:24 +02:00
|
|
|
templateAbsUrl: templateAbsUrl, template: view.template,
|
|
|
|
styleAbsUrls: styleAbsUrls,
|
|
|
|
styles: view.styles,
|
2015-05-21 16:42:19 +02:00
|
|
|
directives: ListWrapper.map(directives, directiveBinding => directiveBinding.metadata)
|
|
|
|
});
|
2015-05-20 09:48:15 -07:00
|
|
|
}
|
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
private _flattenDirectives(template: View): List<Type> {
|
|
|
|
if (isBlank(template.directives)) return [];
|
2015-05-20 09:48:15 -07:00
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
var directives = [];
|
|
|
|
this._flattenList(template.directives, directives);
|
2015-05-20 09:48:15 -07:00
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
return directives;
|
|
|
|
}
|
2015-05-20 09:48:15 -07:00
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
private _flattenList(tree: List<any>, out: List<Type | Binding | List<any>>): void {
|
|
|
|
for (var i = 0; i < tree.length; i++) {
|
|
|
|
var item = resolveForwardRef(tree[i]);
|
2015-06-11 19:32:55 +02:00
|
|
|
if (isArray(item)) {
|
2015-05-21 16:42:19 +02:00
|
|
|
this._flattenList(item, out);
|
|
|
|
} else {
|
2015-06-17 11:17:21 -07:00
|
|
|
out.push(item);
|
2015-05-21 16:42:19 +02:00
|
|
|
}
|
2015-05-20 09:48:15 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
private static _isValidDirective(value: Type | Binding): boolean {
|
|
|
|
return isPresent(value) && (value instanceof Type || value instanceof Binding);
|
|
|
|
}
|
2015-05-20 09:48:15 -07:00
|
|
|
|
2015-05-21 16:42:19 +02:00
|
|
|
private static _assertTypeIsComponent(directiveBinding: DirectiveBinding): void {
|
|
|
|
if (directiveBinding.metadata.type !== renderApi.DirectiveMetadata.COMPONENT_TYPE) {
|
|
|
|
throw new BaseException(
|
|
|
|
`Could not load '${stringify(directiveBinding.key.token)}' because it is not a component.`);
|
|
|
|
}
|
2015-05-20 09:48:15 -07:00
|
|
|
}
|
|
|
|
}
|