当我的项目使用 Angular 2 和 Angular 4 时,我可以使用这个有用的装饰器来让一个组件扩展另一个组件:
// Modified from https://medium.com/@ttemplier/angular2-decorators-and-class-inheritance-905921dbd1b7#.s9pf0649f
// by Thierry Templier.
import { Component } from '@angular/core';
export function ComponentExtender(annotation: any): ((target: Function) => void) {
return function(target: Function): void {
let parentTarget = Object.getPrototypeOf(target.prototype).constructor;
let parentAnnotations = Reflect.getMetadata('annotations', parentTarget); // TODO: Doesn't work in Angular 5, returns undefined.
let parentAnnotation = parentAnnotations[0];
Object.keys(parentAnnotation).forEach(key => {
if (parentAnnotation[key]) {
if (!annotation[key]) {
annotation[key] = parentAnnotation[key];
}
}
});
let metadata = new Component(annotation);
Reflect.defineMetadata('annotations', [ metadata ], target);
};
}
有了这个,您可以创建一个扩展另一个组件类的组件类,使用@ComponentExtender 而不是@Component,并从超类继承模板和样式等东西,如果这些东西不需要在子类组件中进行更改。
现在我已将项目移至 Angular 5,这不再有效。注释元数据未定义。
这可能与 AOT 编译有关(即使我没有选择该选项)?谁能想到一种方法来恢复这个装饰器曾经为 Angular 2 和 Angular 4 所做的事情?