通过覆盖装饰器属性来继承Angular 5组件

时间:2017-11-27 05:54:16

标签: angular5

在Angular 2/4中,我们可以创建自定义装饰器来扩展父组件。在自定义装饰器中根据需要处理装饰器属性的实际覆盖。要获得我们使用的父注释:

let parentAnnotations = Reflect.getMetadata('annotations', parentTarget);

更新到Angular 5后,这不再起作用了。关于this  我们可以使用的答案:

target['__annotations__'][0]用于获取父组件注释。

为了在Angular 2/4中设置当前组件中的注释,我们使用了:

let metadata = new Component(annotation); Reflect.defineMetadata('annotations', [ metadata ], target);

如何在Angular 5中设置当前组件注释?

1 个答案:

答案 0 :(得分:3)

最后,我想到了一个自定义装饰器(extendedcomponent.decorator.ts)的实现:

import { Component } from '@angular/core';

export function ExtendedComponent(extendedConfig: Component = {}) {
    return function (target: Function) {
        const ANNOTATIONS = '__annotations__';
        const PARAMETERS = '__paramaters__';
        const PROP_METADATA = '__prop__metadata__';

        const annotations = target[ANNOTATIONS] || [];
        const parameters = target[PARAMETERS] || [];
        const propMetadata = target[PROP_METADATA] || [];

        if (annotations.length > 0) {
            const parentAnnotations = Object.assign({}, annotations[0]);

            Object.keys(parentAnnotations).forEach(key => {
                if (parentAnnotations.hasOwnProperty(key)) {
                    if (!extendedConfig.hasOwnProperty(key)) {
                        extendedConfig[key] = parentAnnotations[key];
                        annotations[0][key] = '';
                    } else {
                        if (extendedConfig[key] === parentAnnotations[key]){
                             annotations[0][key] = '';
                        }
                    }
                }
            });
        }
        return Component(extendedConfig)(target);
    };
}

使用示例:

首先像往常一样实现父组件(myparent.component.ts):

import { Component, Output, EventEmitter, Input } from '@angular/core';
@Component({
    selector: 'my-component',
    templateUrl: 'my.component.html'
})
export class MyParentComponent implements OnInit {
    @Input() someInput: Array<any>;
    @Output() onChange: EventEmitter<any> = new EventEmitter();

    constructor(
        public formatting: FormattingService
    ) {
    }

    ngOnInit() {

    }

    onClick() {
        this.onChange.emit();
    }
}

继承父组件的实现子组件之后:

import { Component, OnInit } from '@angular/core';
import { ExtendedComponent } from './extendedcomponent.decorator';
import { MyParentComponent } from './myparent.component';


@ExtendedComponent ({
    templateUrl: 'mychild.component.html'
})

export class MyChildComponent extends MyParentComponent {
}

注意:这不是正式记录的,在许多情况下可能不起作用。我希望它会帮助其他人,但使用它需要您自担风险。