blob: 007b0abe964fd3094e52580d8d625af548db4a94 [file] [log] [blame]
<!--
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: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in)
-->
<form [formGroup]="packagesForm" (ngSubmit)="createPackages()" autocomplete="off">
<div class="modal-header">
<h4 class="modal-title" *ngIf="params.page === 'vnf-package' || params.page === 'ns-package'"
id="modal-basic-title">{{'CREATEPACKAGE' | translate}}</h4>
<h4 class="modal-title" *ngIf="params.page === 'ns-config-template'" id="modal-basic-title">
{{'PAGE.NSCONFIGTEMPLATE.CREATENSCONFIGTEMPLATE' | translate}}</h4>
<h4 class="modal-title" *ngIf="params.page === 'ns-config-template-edit'" id="modal-basic-title">
{{'PAGE.NSCONFIGTEMPLATE.EDITNSCONFIGTEMPLATE' | translate}}</h4>
<h4 class="modal-title" *ngIf="params.page === 'oka-packages'" id="modal-basic-title">
{{'Create New OKA' | translate}}</h4>
<h4 class="modal-title" *ngIf="params.page === 'oka-packages-edit'" id="modal-basic-title">
{{'Edit OKA' | translate}}</h4>
<button class="button-xs" type="button" class="close" (click)="activeModal.close()">
<i class="fas fa-times-circle text-danger"></i>
</button>
</div>
<div class="modal-body">
<div class="form-group row mb-3">
<label class="col-sm-12 col-form-label mandatory-label"
[ngClass]="{'text-danger': packagesForm.invalid === true && submitted === true}">{{'MANDATORYCHECK' |
translate}}</label>
<label class="col-sm-6 col-form-label" *ngIf="!template && !oka">{{'PACKAGE' | translate}} {{'NAME' | translate}}*</label>
<label class="col-sm-6 col-form-label" *ngIf="!template && params.page === 'oka-packages'">{{'PACKAGE' | translate}} {{'NAME' | translate}}*</label>
<label class="col-sm-6 col-form-label" *ngIf="!template && params.page === 'oka-packages-edit'">{{'PACKAGE' | translate}} {{'NAME' | translate}}</label>
<label class="col-sm-6 col-form-label" *ngIf="template">{{'NAME' | translate}}*</label>
<div class="col-sm-6">
<input type="text" class="form-control" placeholder="{{'NAME' | translate}}" formControlName="name" id="name"
[ngClass]="{ 'is-invalid': submitted && f.name.errors }" required>
</div>
</div>
<div class="form-group row mb-3" *ngIf="oka">
<label class="col-sm-6 col-form-label" for="profile_type"
*ngIf="params.page === 'oka-packages'">{{'PAGE.K8S.PROFILETYPE' | translate}}*</label>
<label class="col-sm-6 col-form-label" for="profile_type"
*ngIf="params.page === 'oka-packages-edit'">{{'PAGE.K8S.PROFILETYPE' | translate}}</label>
<div class="col-sm-6">
<ng-select placeholder="{{'SELECT' | translate}} {{'TYPE' | translate}}" [items]="profileSelect"
bindLabel="title" bindValue="value" formControlName="profile_type" id="profile_type"
[ngClass]="{ 'is-invalid': submitted && f.profile_type.errors }" required>
</ng-select>
</div>
</div>
<div class="form-group row mb-3" *ngIf="oka">
<label class="col-sm-6 col-form-label" for="description"
*ngIf="params.page === 'oka-packages'">{{'PAGE.K8S.DESCRIPTION' | translate}}*</label>
<label class="col-sm-6 col-form-label" for="description"
*ngIf="params.page === 'oka-packages-edit'">{{'PAGE.K8S.DESCRIPTION' | translate}}</label>
<div class="col-sm-6">
<textarea class="form-control" placeholder="{{'PAGE.K8S.DESCRIPTION' | translate}}" type="text"
formControlName="description" id="description" [ngClass]="{ 'is-invalid': submitted && f.description.errors }"
required></textarea>
</div>
</div>
<div class="form-group row mb-3" *ngIf="template">
<label class="col-sm-6 col-form-label">{{'NSD' | translate}} {{'NAME' | translate}}*</label>
<div class="col-sm-6">
<ng-select formControlName="nsdId" id="nsd" [items]="nsdDetails"
placeholder="{{'SELECT' | translate}} {{'NSDNAME' | translate}}" bindLabel="nsName" bindValue="nsName"
[ngClass]="{ 'is-invalid': submitted && f.nsdId.errors }">
</ng-select>
</div>
</div>
<div class="form-group row mb-3" *ngIf="template">
<label class="col-sm-6 col-form-label">{{'CONFIG' | translate}}*</label>
<div class="col-sm-6">
<textarea rows="10" cols="50" class="form-control" placeholder="{{'YAMLCONFIG' | translate}}"
formControlName="config" id="config"></textarea>
<div class="fileupload-text mt-1 mb-1">{{'FILEUPLOADLABEL' | translate}}</div>
<div class="custom-file">
<input type="file" #fileInputConfig class="fileupload custom-file-input"
(change)="configFile($event.target.files)" id="customConfigFile">
</div>
</div>
</div>
<div class="form-group row mb-3" *ngIf="oka">
<label class="col-sm-6 col-form-label" *ngIf="params.page === 'oka-packages'">{{'PACKAGE' | translate}}*</label>
<label class="col-sm-6 col-form-label" *ngIf="params.page === 'oka-packages-edit'">{{'PACKAGE' | translate}}</label>
<div class="col-sm-6">
<label for="fileInput" class="custom-file-upload" *ngIf="this.params.page === 'oka-packages-edit'">
<input type="file" #fileInput class="fileupload custom-file-input" formControlName="package"
(change)="onFileDropped($event.target.files)" id="customFile">
<span>{{ selectedFileName }}</span>
<i class="fas fa-upload"></i>
</label>
<div class="custom-file" *ngIf="this.params.page === 'oka-packages'">
<input type="file" #fileInput class="fileupload custom-file-input" formControlName="package"
(change)="onFileDropped($event.target.files)" id="customFile">
</div>
<small class="text-info">{{'PAGE.K8S.UPLOADCONFIGGZLABEL' | translate}}</small>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" (click)="activeModal.close()">{{'CANCEL' | translate}}</button>
<button
*ngIf="params.page === 'ns-config-template' || params.page === 'oka-packages' || params.page === 'vnf-package' || params.page === 'ns-package'"
type="submit" class="btn btn-primary">{{'CREATE' | translate}}</button>
<button *ngIf="params.page === 'ns-config-template-edit' || params.page === 'oka-packages-edit'" type="submit"
class="btn btn-primary">{{'Edit' | translate}}</button>
</div>
</form>
<app-loader [waitingMessage]="message" *ngIf="isLoadingResults"></app-loader>