Angular从另一个指令添加fxFlex指令

时间:2017-05-01 12:09:03

标签: angular angular-material2 angular-flex-layout

我试图通过另一个自定义指令添加所有fxFlex fxFlex.gt-xs指令,这样我就可以保持我的html尽可能干净。我创建了以下指令

import { Directive, ElementRef, Renderer, OnInit } from '@angular/core';

@Directive({
    selector: '[coreFlexInput]'
})
export class FlexInputDirective implements OnInit {

    constructor(private el: ElementRef, private renderer: Renderer) {
        // Use renderer to render the element with 50

    }

    ngOnInit() {
        this.renderer.setElementAttribute(this.el.nativeElement, "fxFlex", "");
        this.renderer.setElementAttribute(this.el.nativeElement, "fxFlex.gt-xs", "33");
        this.renderer.setElementClass(this.el.nativeElement, "padding-5", true);
        this.renderer.setElementStyle(this.el.nativeElement, "line-height", "50px");
        this.renderer.setElementStyle(this.el.nativeElement, "vertical-align", "middle");
    }
}

并使用如下

<div coreFlexInput></div>

但在检查dom时,它不会添加和灵活功能。 如果我以这种方式使用它,那么无论如何它正在工作

<div coreFlexInput fxFlex fxFlex-gt-xs="33"></div>

这是一种正确的方法还是我错过了什么?

1 个答案:

答案 0 :(得分:1)

我不认为你可以动态添加指令而不通过编译器步骤,它只是一个过于复杂的过程。我遇到了同样的问题,最后我创建了一个包含所有必需指令的新容器,并将内容从原始父级删除到新的容器。

这里是最终dom看起来像enter image description here

的方式

这里是plnkr:https://plnkr.co/edit/0UTwoKHVv8ch1zlAdm52

@Directive( {
   selector: '[anotherDir]'
})
export class AnotherDir {
  constructor(private el: ElementRef) {
  }

  ngAfterViewInit() {
    this.el.nativeElement.style.color = 'blue';
  }
}

@Component({
  selector: '[parent]',
  template: 
  `
  <ng-template #tpl>
      <div anotherDir><ng-content></ng-content></div>
  </ng-template>
  `
})
export class Parent {
  @ViewChild('tpl') tpl: TemplateRef<any>;

  constructor(private vc: ViewContainerRef) {
  }

  ngAfterViewInit() {
    this.vc.createEmbeddedView(this.tpl); 
  }
}

@Component({
  selector: 'my-app',
  template: `
    <div>
      <div parent>
          here is the content
      </div>   
    </div>
  `,
})
export class App {
  constructor() {
  }
}