114 lines
3.3 KiB
TypeScript
114 lines
3.3 KiB
TypeScript
import {
|
|
Injectable,
|
|
ViewMetadata,
|
|
ComponentMetadata,
|
|
reflector,
|
|
} from '@angular/core';
|
|
|
|
import {ReflectorReader} from '../core_private';
|
|
|
|
import {Type, stringify, isBlank, isPresent} from '../src/facade/lang';
|
|
import {BaseException} from '../src/facade/exceptions';
|
|
import {Map} from '../src/facade/collection';
|
|
|
|
/**
|
|
* Resolves types to {@link ViewMetadata}.
|
|
*/
|
|
@Injectable()
|
|
export class ViewResolver {
|
|
private _reflector: ReflectorReader;
|
|
|
|
/** @internal */
|
|
_cache = new Map<Type, ViewMetadata>();
|
|
|
|
constructor(_reflector?: ReflectorReader) {
|
|
if (isPresent(_reflector)) {
|
|
this._reflector = _reflector;
|
|
} else {
|
|
this._reflector = reflector;
|
|
}
|
|
}
|
|
|
|
resolve(component: Type): ViewMetadata {
|
|
var view = this._cache.get(component);
|
|
|
|
if (isBlank(view)) {
|
|
view = this._resolve(component);
|
|
this._cache.set(component, view);
|
|
}
|
|
|
|
return view;
|
|
}
|
|
|
|
/** @internal */
|
|
_resolve(component: Type): ViewMetadata {
|
|
var compMeta: ComponentMetadata;
|
|
var viewMeta: ViewMetadata;
|
|
|
|
this._reflector.annotations(component).forEach(m => {
|
|
if (m instanceof ViewMetadata) {
|
|
viewMeta = m;
|
|
}
|
|
if (m instanceof ComponentMetadata) {
|
|
compMeta = m;
|
|
}
|
|
});
|
|
|
|
if (isPresent(compMeta)) {
|
|
if (isBlank(compMeta.template) && isBlank(compMeta.templateUrl) && isBlank(viewMeta)) {
|
|
throw new BaseException(
|
|
`Component '${stringify(component)}' must have either 'template' or 'templateUrl' set.`);
|
|
|
|
} else if (isPresent(compMeta.template) && isPresent(viewMeta)) {
|
|
this._throwMixingViewAndComponent("template", component);
|
|
|
|
} else if (isPresent(compMeta.templateUrl) && isPresent(viewMeta)) {
|
|
this._throwMixingViewAndComponent("templateUrl", component);
|
|
|
|
} else if (isPresent(compMeta.directives) && isPresent(viewMeta)) {
|
|
this._throwMixingViewAndComponent("directives", component);
|
|
|
|
} else if (isPresent(compMeta.pipes) && isPresent(viewMeta)) {
|
|
this._throwMixingViewAndComponent("pipes", component);
|
|
|
|
} else if (isPresent(compMeta.encapsulation) && isPresent(viewMeta)) {
|
|
this._throwMixingViewAndComponent("encapsulation", component);
|
|
|
|
} else if (isPresent(compMeta.styles) && isPresent(viewMeta)) {
|
|
this._throwMixingViewAndComponent("styles", component);
|
|
|
|
} else if (isPresent(compMeta.styleUrls) && isPresent(viewMeta)) {
|
|
this._throwMixingViewAndComponent("styleUrls", component);
|
|
|
|
} else if (isPresent(viewMeta)) {
|
|
return viewMeta;
|
|
|
|
} else {
|
|
return new ViewMetadata({
|
|
templateUrl: compMeta.templateUrl,
|
|
template: compMeta.template,
|
|
directives: compMeta.directives,
|
|
pipes: compMeta.pipes,
|
|
encapsulation: compMeta.encapsulation,
|
|
styles: compMeta.styles,
|
|
styleUrls: compMeta.styleUrls
|
|
});
|
|
}
|
|
} else {
|
|
if (isBlank(viewMeta)) {
|
|
throw new BaseException(
|
|
`Could not compile '${stringify(component)}' because it is not a component.`);
|
|
} else {
|
|
return viewMeta;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/** @internal */
|
|
_throwMixingViewAndComponent(propertyName: string, component: Type): void {
|
|
throw new BaseException(
|
|
`Component '${stringify(component)}' cannot have both '${propertyName}' and '@View' set at the same time"`);
|
|
}
|
|
}
|