2016-06-23 12:47:54 -04: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-09-12 22:14:17 -04:00
|
|
|
import {Component, Directive, HostBinding, HostListener, Injectable, Input, Output, Query, Type, resolveForwardRef} from '@angular/core';
|
2016-08-30 21:07:40 -04:00
|
|
|
|
2016-07-11 19:01:49 -04:00
|
|
|
import {StringMapWrapper} from './facade/collection';
|
2016-09-27 18:41:37 -04:00
|
|
|
import {stringify} from './facade/lang';
|
2016-08-30 21:07:40 -04:00
|
|
|
import {ReflectorReader, reflector} from './private_import_core';
|
2016-07-11 19:01:49 -04:00
|
|
|
import {splitAtColon} from './util';
|
2014-11-11 20:33:47 -05:00
|
|
|
|
2015-09-19 21:39:35 -04:00
|
|
|
/*
|
2016-09-12 22:14:17 -04:00
|
|
|
* Resolve a `Type` for {@link Directive}.
|
2015-07-07 02:15:58 -04:00
|
|
|
*
|
|
|
|
* This interface can be overridden by the application developer to create custom behavior.
|
|
|
|
*
|
|
|
|
* See {@link Compiler}
|
|
|
|
*/
|
2015-03-16 17:44:14 -04:00
|
|
|
@Injectable()
|
2015-05-11 20:59:39 -04:00
|
|
|
export class DirectiveResolver {
|
2016-06-17 13:57:50 -04:00
|
|
|
constructor(private _reflector: ReflectorReader = reflector) {}
|
2016-03-24 16:32:47 -04:00
|
|
|
|
2015-07-07 02:15:58 -04:00
|
|
|
/**
|
2016-09-12 22:14:17 -04:00
|
|
|
* Return {@link Directive} for a given `Type`.
|
2015-07-07 02:15:58 -04:00
|
|
|
*/
|
2016-09-12 22:14:17 -04:00
|
|
|
resolve(type: Type<any>, throwIfNotFound = true): Directive {
|
2016-09-27 18:41:37 -04:00
|
|
|
const typeMetadata = this._reflector.annotations(resolveForwardRef(type));
|
|
|
|
if (typeMetadata) {
|
|
|
|
const metadata = typeMetadata.find(isDirectiveMetadata);
|
|
|
|
if (metadata) {
|
|
|
|
const propertyMetadata = this._reflector.propMetadata(type);
|
2015-11-04 04:08:51 -05:00
|
|
|
return this._mergeWithPropertyMetadata(metadata, propertyMetadata, type);
|
2014-11-11 20:33:47 -05:00
|
|
|
}
|
|
|
|
}
|
2016-09-27 18:41:37 -04:00
|
|
|
|
2016-07-18 06:50:31 -04:00
|
|
|
if (throwIfNotFound) {
|
2016-08-25 03:50:16 -04:00
|
|
|
throw new Error(`No Directive annotation found on ${stringify(type)}`);
|
2016-07-18 06:50:31 -04:00
|
|
|
}
|
2016-09-27 18:41:37 -04:00
|
|
|
|
2016-07-18 06:50:31 -04:00
|
|
|
return null;
|
2014-11-11 20:33:47 -05:00
|
|
|
}
|
2015-09-03 18:10:48 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
private _mergeWithPropertyMetadata(
|
2016-09-12 22:14:17 -04:00
|
|
|
dm: Directive, propertyMetadata: {[key: string]: any[]},
|
|
|
|
directiveType: Type<any>): Directive {
|
2016-09-27 18:41:37 -04:00
|
|
|
const inputs: string[] = [];
|
|
|
|
const outputs: string[] = [];
|
|
|
|
const host: {[key: string]: string} = {};
|
|
|
|
const queries: {[key: string]: any} = {};
|
|
|
|
|
|
|
|
Object.keys(propertyMetadata).forEach((propName: string) => {
|
2015-09-03 18:10:48 -04:00
|
|
|
|
2016-09-27 18:41:37 -04:00
|
|
|
propertyMetadata[propName].forEach(a => {
|
2016-09-12 22:14:17 -04:00
|
|
|
if (a instanceof Input) {
|
2016-09-27 18:41:37 -04:00
|
|
|
if (a.bindingPropertyName) {
|
2015-09-30 23:59:23 -04:00
|
|
|
inputs.push(`${propName}: ${a.bindingPropertyName}`);
|
2015-09-03 18:10:48 -04:00
|
|
|
} else {
|
2015-09-30 23:59:23 -04:00
|
|
|
inputs.push(propName);
|
2015-09-03 18:10:48 -04:00
|
|
|
}
|
2016-09-12 22:14:17 -04:00
|
|
|
} else if (a instanceof Output) {
|
|
|
|
const output: Output = a;
|
2016-09-27 18:41:37 -04:00
|
|
|
if (output.bindingPropertyName) {
|
2016-09-12 12:44:20 -04:00
|
|
|
outputs.push(`${propName}: ${output.bindingPropertyName}`);
|
2015-09-03 18:10:48 -04:00
|
|
|
} else {
|
2015-09-30 23:59:23 -04:00
|
|
|
outputs.push(propName);
|
2015-09-03 18:10:48 -04:00
|
|
|
}
|
2016-09-12 22:14:17 -04:00
|
|
|
} else if (a instanceof HostBinding) {
|
|
|
|
const hostBinding: HostBinding = a;
|
2016-09-27 18:41:37 -04:00
|
|
|
if (hostBinding.hostPropertyName) {
|
2016-10-07 16:53:53 -04:00
|
|
|
const startWith = hostBinding.hostPropertyName[0];
|
|
|
|
if (startWith === '(') {
|
|
|
|
throw new Error(`@HostBinding can not bind to events. Use @HostListener instead.`);
|
|
|
|
} else if (startWith === '[') {
|
|
|
|
throw new Error(
|
|
|
|
`@HostBinding parameter should be a property name, 'class.<name>', or 'attr.<name>'.`);
|
|
|
|
}
|
2016-09-12 12:44:20 -04:00
|
|
|
host[`[${hostBinding.hostPropertyName}]`] = propName;
|
2015-09-04 17:07:16 -04:00
|
|
|
} else {
|
|
|
|
host[`[${propName}]`] = propName;
|
|
|
|
}
|
2016-09-12 22:14:17 -04:00
|
|
|
} else if (a instanceof HostListener) {
|
|
|
|
const hostListener: HostListener = a;
|
2016-09-27 18:41:37 -04:00
|
|
|
const args = hostListener.args || [];
|
|
|
|
host[`(${hostListener.eventName})`] = `${propName}(${args.join(',')})`;
|
2016-09-12 22:14:17 -04:00
|
|
|
} else if (a instanceof Query) {
|
2015-09-19 21:39:35 -04:00
|
|
|
queries[propName] = a;
|
|
|
|
}
|
2015-09-03 18:10:48 -04:00
|
|
|
});
|
|
|
|
});
|
2015-11-04 04:08:51 -05:00
|
|
|
return this._merge(dm, inputs, outputs, host, queries, directiveType);
|
2015-09-03 18:10:48 -04:00
|
|
|
}
|
|
|
|
|
2016-07-11 19:01:49 -04:00
|
|
|
private _extractPublicName(def: string) { return splitAtColon(def, [null, def])[1].trim(); }
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
private _merge(
|
2016-09-27 18:41:37 -04:00
|
|
|
directive: Directive, inputs: string[], outputs: string[], host: {[key: string]: string},
|
2016-09-12 22:14:17 -04:00
|
|
|
queries: {[key: string]: any}, directiveType: Type<any>): Directive {
|
2016-09-27 18:41:37 -04:00
|
|
|
const mergedInputs: string[] = inputs;
|
2016-07-11 19:01:49 -04:00
|
|
|
|
2016-09-27 18:41:37 -04:00
|
|
|
if (directive.inputs) {
|
2016-07-11 19:01:49 -04:00
|
|
|
const inputNames: string[] =
|
2016-09-27 18:41:37 -04:00
|
|
|
directive.inputs.map((def: string): string => this._extractPublicName(def));
|
|
|
|
|
2016-07-11 19:01:49 -04:00
|
|
|
inputs.forEach((inputDef: string) => {
|
|
|
|
const publicName = this._extractPublicName(inputDef);
|
|
|
|
if (inputNames.indexOf(publicName) > -1) {
|
2016-08-25 03:50:16 -04:00
|
|
|
throw new Error(
|
2016-07-11 19:01:49 -04:00
|
|
|
`Input '${publicName}' defined multiple times in '${stringify(directiveType)}'`);
|
|
|
|
}
|
|
|
|
});
|
2016-09-27 18:41:37 -04:00
|
|
|
|
|
|
|
mergedInputs.unshift(...directive.inputs);
|
2016-07-11 19:01:49 -04:00
|
|
|
}
|
|
|
|
|
2016-09-27 18:41:37 -04:00
|
|
|
let mergedOutputs: string[] = outputs;
|
2015-11-04 04:08:51 -05:00
|
|
|
|
2016-09-27 18:41:37 -04:00
|
|
|
if (directive.outputs) {
|
2016-07-11 19:01:49 -04:00
|
|
|
const outputNames: string[] =
|
2016-09-27 18:41:37 -04:00
|
|
|
directive.outputs.map((def: string): string => this._extractPublicName(def));
|
2016-07-11 19:01:49 -04:00
|
|
|
|
|
|
|
outputs.forEach((outputDef: string) => {
|
|
|
|
const publicName = this._extractPublicName(outputDef);
|
|
|
|
if (outputNames.indexOf(publicName) > -1) {
|
2016-08-25 03:50:16 -04:00
|
|
|
throw new Error(
|
2016-07-11 19:01:49 -04:00
|
|
|
`Output event '${publicName}' defined multiple times in '${stringify(directiveType)}'`);
|
2015-11-04 04:08:51 -05:00
|
|
|
}
|
|
|
|
});
|
2016-09-27 18:41:37 -04:00
|
|
|
mergedOutputs.unshift(...directive.outputs);
|
2015-11-04 04:08:51 -05:00
|
|
|
}
|
|
|
|
|
2016-09-27 18:41:37 -04:00
|
|
|
const mergedHost = directive.host ? StringMapWrapper.merge(directive.host, host) : host;
|
|
|
|
const mergedQueries =
|
|
|
|
directive.queries ? StringMapWrapper.merge(directive.queries, queries) : queries;
|
2015-09-03 18:10:48 -04:00
|
|
|
|
2016-09-27 18:41:37 -04:00
|
|
|
if (directive instanceof Component) {
|
2016-09-12 22:14:17 -04:00
|
|
|
return new Component({
|
2016-09-27 18:41:37 -04:00
|
|
|
selector: directive.selector,
|
2015-09-30 23:59:23 -04:00
|
|
|
inputs: mergedInputs,
|
|
|
|
outputs: mergedOutputs,
|
2015-09-04 17:07:16 -04:00
|
|
|
host: mergedHost,
|
2016-09-27 18:41:37 -04:00
|
|
|
exportAs: directive.exportAs,
|
|
|
|
moduleId: directive.moduleId,
|
2015-09-17 21:45:49 -04:00
|
|
|
queries: mergedQueries,
|
2016-09-27 18:41:37 -04:00
|
|
|
changeDetection: directive.changeDetection,
|
|
|
|
providers: directive.providers,
|
|
|
|
viewProviders: directive.viewProviders,
|
|
|
|
entryComponents: directive.entryComponents,
|
|
|
|
template: directive.template,
|
|
|
|
templateUrl: directive.templateUrl,
|
|
|
|
styles: directive.styles,
|
|
|
|
styleUrls: directive.styleUrls,
|
|
|
|
encapsulation: directive.encapsulation,
|
|
|
|
animations: directive.animations,
|
|
|
|
interpolation: directive.interpolation
|
2015-09-03 18:10:48 -04:00
|
|
|
});
|
|
|
|
} else {
|
2016-09-12 22:14:17 -04:00
|
|
|
return new Directive({
|
2016-09-27 18:41:37 -04:00
|
|
|
selector: directive.selector,
|
2015-09-30 23:59:23 -04:00
|
|
|
inputs: mergedInputs,
|
|
|
|
outputs: mergedOutputs,
|
2015-09-04 17:07:16 -04:00
|
|
|
host: mergedHost,
|
2016-09-27 18:41:37 -04:00
|
|
|
exportAs: directive.exportAs,
|
2015-10-11 01:11:13 -04:00
|
|
|
queries: mergedQueries,
|
2016-09-27 18:41:37 -04:00
|
|
|
providers: directive.providers
|
2015-09-03 18:10:48 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2014-11-11 20:33:47 -05:00
|
|
|
}
|
2016-09-27 18:41:37 -04:00
|
|
|
|
|
|
|
function isDirectiveMetadata(type: any): type is Directive {
|
|
|
|
return type instanceof Directive;
|
|
|
|
}
|