| <!-- |
| Copyright 2020 TATA ELXSI |
| |
| Licensed under the Apache License, Version 2.0 (the 'License'); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| Author: SANDHYA JS (sandhya.j@tataelxsi.co.in) |
| --> |
| <div class="modal-header"> |
| <h4 class="modal-title" id="modal-basic-title">{{ 'HEALING' | translate }}</h4> |
| <button class="button-xs" type="button" class="close" aria-label="Close" (click)="activeModal.close()"> |
| <i class="fas fa-times-circle text-danger"></i> |
| </button> |
| </div> |
| <form [formGroup]="healingForm" (ngSubmit)="manualHealingTrigger()" autocomplete="off"> |
| <div class="modal-body"> |
| <div class="form-group row"> |
| <label class="col-sm-12 col-form-label mandatory-label" |
| [ngClass]="{'text-danger': healingForm.invalid === true && submitted === true}"> |
| {{'MANDATORYCHECK' | translate}} |
| </label> |
| <div class="col-sm-6"> |
| <label for="memberVnfIndex"> {{'MEMBERVNFINDEX' | translate}} *</label> |
| </div> |
| <div class="col-sm-6"> |
| <ng-select (change)="getVdu($event.vnfinstanceId)" formControlName="memberIndex" [clearable]="false" |
| placeholder="{{'SELECTMEMBERVNFINDEX' | translate}} *" [items]="memberTypes" bindLabel="id" bindValue="id" |
| [ngClass]="{ 'is-invalid': submitted && f.memberIndex.errors }"> |
| </ng-select> |
| <small class="form-text text-muted" *ngIf="selectedvnfId !== ''">vnfd-id : {{ selectedvnfId }}</small> |
| </div> |
| </div> |
| <div class="form-group row"> |
| <div class="col-sm-6"> |
| <label for="memberVnfIndex"> {{'DAY1OPERATION' | translate}}</label> |
| </div> |
| <div class="col-sm-6"> |
| <ng-select formControlName="run_day1" [clearable]="false" placeholder="{{'DAY1OPERATION' | translate}}" |
| [items]="day1Operation" bindLabel="name" bindValue="id"> |
| </ng-select> |
| </div> |
| </div> |
| <div class="form-group row p-2 bg-light text-white justify-content-end"> |
| <div class="col-5"> |
| <button class="button-xs" type="button" class="btn btn-primary" (click)="addVdu()"> |
| <i class="fas fa-plus-circle"></i>{{'SELECTVDU' | translate}}</button> |
| </div> |
| </div> |
| <ng-container> |
| <div formArrayName="vdu" *ngFor="let params of getControls(); let i = index;"> |
| <div class="form-group row" [formGroupName]="i"> |
| <div class="card bg-light"> |
| <div class="card-body"> |
| <div class="form-group row"> |
| <label class="col-sm-3 col-md-3 col-form-label" for="vduId_{{i}}">{{'VDUID' | |
| translate}}</label> |
| <div class="col-sm-8 col-md-8"> |
| <ng-select (change)="getCountIndex($event.VDU)" |
| placeholder="{{'SELECT' | translate}}" [items]="vduId" bindLabel="VDU" |
| bindValue="VDU" formControlName="vduId" id="vduId_{{i}}" |
| [ngClass]="{ 'is-invalid': submitted && params.controls.vduId.errors }"> |
| </ng-select> |
| </div> |
| <label class="col-sm-3 col-md-3 col-form-label" for="countIndex_{{i}}">{{'COUNTINDEX' | |
| translate}}</label> |
| <div class="col-sm-8 col-md-8"> |
| <ng-select placeholder="{{'SELECT' | translate}}" [items]="countIndex" |
| bindLabel="count-index" bindValue="count-index" formControlName="countIndex" |
| id="countIndex_{{i}}" |
| [ngClass]="{ 'is-invalid': submitted && params.controls.countIndex.errors }"> |
| </ng-select> |
| </div> |
| <label class="col-sm-3 col-md-3 col-form-label" for="runDay1_{{i}}">{{'DAY1OPERATION' | |
| translate}}</label> |
| <div class="col-sm-8 col-md-8"> |
| <ng-select formControlName="runDay1" [clearable]="false" placeholder="{{'DAY1OPERATION' | |
| translate}}" [items]="day1Operation" bindLabel="name" bindValue="id"> |
| </ng-select> |
| </div> |
| <div class="col-sm-1"> |
| <button class="button-xs" type="button" class="close" (click)="removeMapping(i)" |
| placement="right" ngbTooltip="{{ 'CANCEL' | translate }}"> |
| <i class="fas fa-minus-circle text-danger"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </ng-container> |
| </div> |
| <div class="modal-footer"> |
| <button type="button" (click)="activeModal.close()" class="btn btn-danger">{{'CANCEL' | translate}}</button> |
| <button type="submit" class="btn btn-primary">{{'APPLY' | translate }}</button> |
| </div> |
| </form> |
| <app-loader [waitingMessage]="message" *ngIf="isLoadingResults"></app-loader> |