4

当我的项目使用 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 所做的事情?

4

2 回答 2

2

您可以将组件的注释保存在单独的变量中并将其与您的组件一起导出,因此您无需从组件的元数据中检索它。这是一个小例子,希望对你有帮助。

https://stackblitz.com/edit/angular-bxbpwr?embed=1&file=app/asignAnnotations.ts

于 2018-02-27T13:51:55.530 回答
2

您可以通过target['__annotations__'][0].

还有'__paramaters__'and '__prop__metadata__',参见decorators.ts 的来源

注意:根据Angular 博客,构建优化器现在默认用于生产构建,因此注释在运行时将不可用。

免责声明:这是 hacky 和实现细节,所以它不应该在生产代码中使用!

于 2017-11-14T07:45:53.463 回答