如何维护每个ngFor项目的按钮状态

时间:2019-02-25 06:16:53

标签: javascript jquery angular angular-directive ngfor

我正在将Trello集成到我的角度项目中。每张卡都有一个启动计时器按钮。假设当用户单击卡片A的开始计时器按钮时,该按钮将替换为结束任务按钮。问题是所有卡上都出现了结束按钮。 如果我单击卡片A的开始按钮计时器,则该按钮应仅在卡片A上被替换。在所有卡片上它都不应更改image

在第1部分的上图中,当我单击开始定时器按钮时,它具有第2部分中显示的结束定时器按钮,但是当我为模式窗口计时并单击另一张卡时,它显示了结束定时器按钮在另一张卡片上。可以预期的是,如果我单击卡A上的按钮,它应该只替换卡A上的卡B,它应该显示启动计时器按钮。

谢谢。

以下是我的代码-

startTimer() {
    this.startFlag = !this.startFlag;
}

activityModal(id, name, due) {
    jQuery("#activityModal").modal('show');

    this.cardDueDate = due;
    this.mainCardName = name;
    this.mainCardId = id;
}

// card iterates
<div class="row justify-content-center no-gutters overflow">
  <section class="list" *ngFor="let item of mainListArr" id="{{item.id}}">
    <header>{{item.name}}</header>
    <article class="card" *ngFor="let card of item.cards">
      <a (click)="activityModal(card.id, card.name,card.due)">
        <header>{{card.name}}</header>
        <div class="detail badge is-due-complete" *ngIf="card.due != null">
          <i class="badge-icon fa fa-clock-o" aria-hidden="true"></i>&nbsp;
          <span class="badge-text">{{card.due | date : 'MMM dd'}}</span>
        </div>
      </a>
    </article>
  </section>
</div>


// modal popup code

<!-- Modal for activity -->
<div class="modal fade" id="activityModal" data-backdrop="static" tabindex="-1" role="dialog" aria-labelledby="activityModal"
  aria-hidden="true">
  <div class="modal-dialog modal-dialog-centered modal-lg" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" *ngIf="mainCardName !== ''">{{mainCardName}}</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close" (click)="closeActivityModal()">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <div class="row">
          <div class="col-md-9">
          some code here
           </div>
          <div class="col-md-3 text-center vertical-center">
            <small><u>Card Actions</u></small>

            <button class="btn btn-action mar-t-05" (click)="startTimer()" *ngIf="startFlag">Start Timer</button>
            <button class="btn btn-action mar-t-05" (click)="endTimer()" *ngIf="!startFlag">End Timer</button>

          </div>
        </div>
      </div>
    </div>
  </div>
</div>

1 个答案:

答案 0 :(得分:1)

这是因为每张卡中的按钮具有相同的变量来显示或隐藏开始和结束计时器。

最简单的方法是在startTimer和endTimer函数中发送卡的索引值,并使用该索引为每个卡具有唯一的标志值。