有条件地应用指令

时间:2017-06-16 19:58:47

标签: angular angular-material angular2-forms angular2-directives angular-material2

我正在使用材质2添加matches <- merge(df_long, all_map, by = 'source', all.x = TRUE) tapply( matches$target, matches$index, function(x) { paste0(sort(x), collapse = ' ') } ) # 1 2 3 4 5 # "a b c" "d e f" "c g" "" "g h i"

我想仅在某些条件成立时才应用此指令。

例如:

md-raised-button

另一个例子: 我在plunker中创建了一个基本的动态反应形式。 我正在使用<button md-raised-button="true"></button> 反应形式的指令来控制数组。 我想仅在特定条件成立时才应用formArrayName指令。否则不要添加formArrayName指令。我尝试和研究了很多,但可以找到任何解决方案。

以下是plunker链接:https://plnkr.co/edit/oPZ7PyBSf8jjYa2KVh4J?p=preview

我真的很感激任何贡献。

提前致谢!

15 个答案:

答案 0 :(得分:53)

您可以使用以下方法:

<button [attr.md-raised-button]="condition ? '' : null"></button>

将相同的内容应用于您的plunker:fork

<强>更新

condition ? '' : null如何作为值:

当空字符串'')变为attr.md-raised-button=""时,其null属性将不存在。

更新: plunker更新:fork(版本问题已修复,请注意问题最初基于角度4)

答案 1 :(得分:30)

我不知道您是否可以根据条件应用指令,但解决方法会有 2个按钮并根据条件显示它们。

<button *ngIf="!condition"></button>
<button *ngIf="condition" md-raised-button></button> 

修改:也许this会有所帮助。

答案 2 :(得分:9)

这可能会迟到,但它是一种可行且优雅的方法,可以有条件地应用指令。

在指令类中创建输入变量:

@Input('myDirective') options: any;

应用指令时,设置输入变量的apply属性:

<div [myDirective] = {apply: someCondition}></div>

在指令的方法中检查变量this.options.apply并根据条件应用指令逻辑:

ngAfterViewInit(): void {
    if (!this.options.apply) {
        return;
    }

    // directive logic
}

答案 3 :(得分:8)

正如其他人所说,directives无法动态应用。

但是,如果您只想将md-button的样式从平面切换为凸显,那么

<button md-button [class.mat-raised-button]="isRaised">Toggle Raised Button</button>

会做到这一点。 Plunker

答案 4 :(得分:7)

如前所述,这似乎是不可能的。可用于至少防止一些重复的一件事是ng-template。这允许您提取受ngIf分支影响的元素的内容。

例如,如果您想使用Angular Material创建分层菜单组件:

<!-- Button contents -->
<ng-template #contentTemplate>
    <mat-icon *ngIf="item.icon != null">{{ item.icon }}</mat-icon>
    {{ item.label }}
</ng-template>

<!-- Leaf button -->
<button *ngIf="item.children == null" mat-menu-item
    (click)="executeCommand()"
    [disabled]="enabled == false">
    <ng-container *ngTemplateOutlet="contentTemplate"></ng-container>
</button>
<!-- Node button -->
<ng-container *ngIf="item.children != null">
    <button mat-menu-item
        [matMenuTriggerFor]="subMenu">
        <ng-container *ngTemplateOutlet="contentTemplate"></ng-container>
    </button>

    <mat-menu #subMenu="matMenu">
        <menu-item *ngFor="let child of item.children" [item]="child"></menu-item>
    </mat-menu>
</ng-container>

此处有条件应用的指令是matMenuTriggerFor,它只应用于带子项的菜单项。该按钮的内容将通过ngTemplateOutlet插入到这两个位置。

答案 5 :(得分:4)

也许会帮助某人。

在下面的示例中,我拥有my-button.component.html,并且仅在设置了*appHasPermission属性的情况下,我才想将<button>指令应用于role

<ng-container *ngIf="role; else buttonNoRole" >
  <ng-container *appHasPermission="role">
    <!-- button with *appHasPermission -->
    <ng-template *ngTemplateOutlet="buttonNoRole;"></ng-template>
  </ng-container>
</ng-container>

<ng-template #buttonNoRole>
  <!-- button without *appHasPermission -->
  <button
    mat-raised-button type="button"
    [color]="color"
    [disabled]="disabled"
    [(appClickProgress)]="onClick"
    [key]="progressKey">
    <mat-icon *ngIf="icon">{{ icon }}</mat-icon> {{ label }}
  </button>
</ng-template>

这样,您就不会重复使用<button>代码。

答案 6 :(得分:3)

目前,有 NO 方式有条件地将指令应用于组件。这不受支持。您创建的组件可以有条件地添加或删除。

angular2 已经存在问题,因此应该是angular4的情况。

或者你可以选择ng-if

选项
<button ngIf="!condition"></button>
<button ngIf="condition" md-raised-button></button> 

答案 7 :(得分:2)

是的,这是可能的。

带有appActiveAhover指令的html页面:)

  <li routerLinkActive="active" #link1="routerLinkActive">
        <a [appActiveAhover]='link1.isActive?false:true' routerLink="administration" [ngStyle]="{'background':link1.isActive?domaindata.get_color3():none}">
          <i class="fa fa-users fa-lg" aria-hidden="true"></i> Administration</a>
      </li>
      <li  routerLinkActive="active" #link2="routerLinkActive">
        <a [appActiveAhover]='link2.isActive?false:true' routerLink="verkaufsburo" [ngStyle]="{'background':link2.isActive?domaindata.get_color3():none,'color':link2.isActive?color2:none}">
          <i class="fa fa-truck fa-lg" aria-hidden="true"></i> Verkaufsbüro</a>
      </li>
      <li  routerLinkActive="active" #link3="routerLinkActive">
        <a [appActiveAhover]='link3.isActive?false:true' routerLink="preisrechner" [ngStyle]="{'background':link3.isActive?domaindata.get_color3():none}">
          <i class="fa fa-calculator fa-lg" aria-hidden="true" *ngIf="routerLinkActive"></i> Preisrechner</a>
      </li>

指令

@Directive({
  selector: '[appActiveAhover]'
})
export class ActiveAhoverDirective implements OnInit {
  @Input() appActiveAhover:boolean;
  constructor(public el: ElementRef, public renderer: Renderer, public domaindata: DomainnameDataService) {
}

  ngOnInit() {
  }

  @HostListener('mouseover') onMouseOver() {
    if(this.appActiveAhover){
      this.renderer.setElementStyle(this.el.nativeElement, 'color', this.domaindata.domaindata.color2);
    }
  }

  @HostListener('mouseout') onMouseOut() {
    if(this.appActiveAhover){
      this.renderer.setElementStyle(this.el.nativeElement, 'color', 'white');
    }
  }

}

答案 8 :(得分:2)

我找不到一个好的现有解决方案,所以我建立了自己的指令来做到这一点。

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

@Directive({
  selector: '[dynamic-attr]'
})
export class DynamicAttrDirective {
  @Input('dynamic-attr') attr: string;
  private _el: ElementRef;

  constructor(el: ElementRef) {
    this._el = el;
  }

  ngOnInit() {
    if (this.attr === '') return null;
    const node = document.createAttribute(this.attr);
    this._el.nativeElement.setAttributeNode(node);
  }
}

然后你的html:

<div dynamic-attr="{{hasMargin: 'margin-left' ? ''}}"></div>

答案 9 :(得分:1)

这也可以是一个解决方案:

[md-raised-button]="condition ? 'true' : ''"

它正在为角4,离子3工作,就像这样:

[color]="condition ? 'primary' : ''"其中condition是一个决定这是否是活动页面的函数。整个代码看起来像这样:

<button *ngFor="let page of ..." [color]="isActivePage(page) ? 'primary' : ''">{{ page.title }}</button>

答案 10 :(得分:1)

null传递给指令将其删除!

<button md-raised-button="condition ? true : null"></button>

答案 11 :(得分:0)

我正在与Angular Material一起工作,在*ngIf上添加一个元素对我来说无法正常工作(该元素将在许多新生成的实质HTML标签中消失)。

我不知道这是否是一个好习惯,但是我使用了OnChanges并且有一种条件指令-并且有效! :)

这就是我的解决方法:

import { Directive, Renderer2, ElementRef, Input, OnChanges, SimpleChanges, AfterViewInit } from '@angular/core';

@Directive({
  selector: '[appDirtyInputIndicator]'
})
export class DirtyInputIndicatorDirective implements OnChanges, AfterViewInit {

  @Input('appDirtyInputIndicator') dirtyInputIndicator: boolean;
  span = this.renderer.createElement('span');

  constructor(private renderer: Renderer2, private el: ElementRef) {}

  ngOnChanges(changes: SimpleChanges): void {
    if (changes.dirtyInputIndicator && this.dirtyInputIndicator) {
      this.renderer.appendChild(this.el.nativeElement, this.span);
    } else {
      this.renderer.removeChild(this.el.nativeElement, this.span);
    }
  }

  ngAfterViewInit() {
    this.renderer.addClass(this.span, 'dirty_input_badge');
  }
}

答案 12 :(得分:-1)

使用NgClass

[ngClass]="{ 'mat-raised-button': trueCondition }"

真实条件的例子:

this.element === 'Today'

或布尔函数

getTruth()

完整示例:

  <button [ngClass]="{ 'mat-raised-button': trueCondition }">TEXT</button>

如果你想要一个默认的类:

  <button [ngClass]="{ 'mat-raised-button': trueCondition, 'default-class': !trueCondition }">TEXT</button>

答案 13 :(得分:-1)

我对你能做什么有了另一个想法。

您可以将要替换的html作为字符串存储在变量中,然后使用DomSanitizerbypassSecurityTrustHtml方法根据需要添加/删除指令。

我没有找到一个干净的解决方案,但至少你不需要重复代码。

答案 14 :(得分:-1)

截至2019年1月18日, 这就是我在Angular 5及更高版本中有条件地添加指令的方式。我需要根据<app-nav>更改darkMode组件的颜色。页面是否处于暗模式。

这对我有用:

<app-nav [color]="darkMode ? 'orange':'green'"></app-nav>

我希望这对某人有帮助。