aboutsummaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/ccvpn-network/ccvpn-network.component.html
blob: 1a1a2a46c9d92338c71aa31921667d9b23d336e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!--
    Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.

    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.
-->
<div class="model">
  <!--chart-->
  <button nz-button nzType="primary" *ngIf="!nonetwork" style="margin-top: 2px;display: inline-block" (click)="showForm()"
          [disabled]='isVisible' [attr.disabled] ='isVisible?true:undefined'>
    {{"i18nTextDefine_CreateLink" | translate}}
  </button>
  <h2 *ngIf="!nonetwork" [ngClass]="{'title-modelshow':isVisible == true}">
    Please configure network links for registered devices and partner system.
  </h2>
  <div id="tpContainer" style="overflow: hidden;">
    <div *ngIf="nonetwork" style="padding: 20px">
      <h2>
        There is not any terminal device can be used for configuration
      </h2>
      <br>
      <h2>
        please register external network into ONAP.
      </h2>
    </div>
    <div class="no-network" *ngIf="nonetwork">
      <img src="assets/images/no-network-available.png" alt="No network available">
      <p>No network available</p>
    </div>
  </div>
  <!--Popup-->
  <div class="creation" id="d3_form" *ngIf="isVisible==true">
    <span class="v_color"></span>
    <h3 class="w_font4"> {{"i18nTextDefine_SetAttribtes" | translate}} </h3>
    <ul class="choose">
      <li>
        <span class="title-span"><span class="red-span">*</span> {{"i18nTextDefine_LinkName" | translate}} </span>
        <input nz-input [(ngModel)]="linkName" maxlength="20">
      </li>
    </ul>
    <h4> {{"i18nTextDefine_LeftPort" | translate}} </h4>
    <ul class="choose">
      <li>
        <span class="title-span"><span class="red-span">*</span> {{"i18nTextDefine_Network" | translate}} </span>
        <nz-select [(ngModel)]="networkVal1" nzShowSearch nzAllowClear (ngModelChange)="network1Change($event)">
          <nz-option *ngFor="let option of networkOption" [nzLabel]="option.network" [nzValue]="option.network"></nz-option>
        </nz-select>
      </li>
      <li>
       <span class="title-span"> <span class="red-span">*</span> {{"i18nTextDefine_Node" | translate}} </span>
        <nz-select  [(ngModel)]="selectedNode1" nzShowSearch nzAllowClear (ngModelChange)="node1Change($event)">
          <nz-option *ngFor="let node of nodeOption1[networkVal1]" [nzValue]="node" [nzLabel]="node"></nz-option>
        </nz-select>
      </li>
      <li>
        <span class="title-span"><span class="red-span">*</span> {{"i18nTextDefine_TerminalPoint" | translate}} </span>
        <!-- <input  nz-input id="city-one" value=""> -->
        <nz-select [(ngModel)]="selecteTpName1" nzShowSearch nzAllowClear>
          <nz-option *ngFor="let tp of tpOption1" [nzValue]="tp" [nzLabel]="tp"></nz-option>
        </nz-select>
      </li>
    </ul>
    <h4> {{"i18nTextDefine_RightPort" | translate}} </h4>
    <label nz-checkbox [(ngModel)]="inputshow"> {{"i18nTextDefine_PartnerNetwork" | translate}} </label>
    <ul class="choose">
      <li>
        <span class="title-span"><span *ngIf="inputshow" class="red-span">*</span> {{"i18nTextDefine_HostUrl" | translate}} </span>
        <input nz-input [(ngModel)]="cloudUrl" [disabled]='!inputshow' [attr.disabled] ='!inputshow?true:undefined'>
      </li>
      <li>
        <span class="title-span"><span class="red-span">*</span> {{"i18nTextDefine_Network" | translate}} </span>
        <input  nz-input *ngIf="inputshow" [(ngModel)]="cloudNetwork">
        <nz-select *ngIf="!inputshow" [(ngModel)]="networkVal2" nzShowSearch nzAllowClear (ngModelChange)="network2Change($event)">
          <nz-option *ngFor="let option of networkOption" [nzLabel]="option.network" [nzValue]="option.network"> </nz-option>
        </nz-select>
      </li>
      <li>
        <span class="title-span"><span class="red-span">*</span> {{"i18nTextDefine_Node" | translate}} </span>
        <input  nz-input *ngIf="inputshow" [(ngModel)]="cloudNode">
        <nz-select *ngIf="!inputshow" [(ngModel)]="selectedNode2" nzShowSearch nzAllowClear (ngModelChange)="node2Change($event)">
          <nz-option *ngFor="let node of nodeOption1[networkVal2]" [nzValue]="node" [nzLabel]="node"></nz-option>
        </nz-select>
      </li>
      <li>
        <span class="title-span"><span class="red-span">*</span> {{"i18nTextDefine_TerminalPoint" | translate}} </span>
        <input  nz-input *ngIf="inputshow" [(ngModel)]="cloudTp">
        <nz-select *ngIf="!inputshow" [(ngModel)]="selecteTpName2" nzShowSearch nzAllowClear>
          <nz-option *ngFor="let tp of tpOption2" [nzValue]="tp" [nzLabel]="tp"></nz-option>
        </nz-select>
      </li>
    </ul>
    <button nz-button nzType="primary" nzSize="small" style="width: 60px;" (click)="submitForm()"> {{"i18nTextDefine_modelOk" | translate}} </button>
    <button nz-button nzType="default" nzSize="small" style="width: 60px;" (click)="hideForm()"> {{"i18nTextDefine_Cancel" | translate}} </button>
  </div>
  <div class="creation" id="delbox" *ngIf="delBoxisVisible==true">
    <span class="v_color"></span>
    <ul class="choose">
      <li>
        <span class="title-span"> {{"i18nTextDefine_LinkName" | translate}} </span>
        <input nz-input [(ngModel)]="delLinkname" disabled="disabled">
      </li>
    </ul>
    <h4> {{"i18nTextDefine_LeftPort" | translate}} </h4>
    <ul class="choose">
      <li>
        <span class="title-span"> {{"i18nTextDefine_Network" | translate}} </span>
        <input nz-input [(ngModel)]="delNetwork1" disabled="disabled">
      </li>
      <li>
        <span class="title-span"> {{"i18nTextDefine_Node" | translate}} </span>
        <input nz-input [(ngModel)]="delNode1" disabled="disabled">
      </li>
      <li>
        <span class="title-span"> {{"i18nTextDefine_TerminalPoint" | translate}} </span>
        <input nz-input [(ngModel)]="delTp1" disabled="disabled">
      </li>
    </ul>
    <h4> {{"i18nTextDefine_RightPort" | translate}} </h4>
    <ul class="choose">
      <li *ngIf="delcloud">
        <span class="title-span"> {{"i18nTextDefine_HostUrl" | translate}} </span>
        <input nz-input [(ngModel)]="delcloudUrl" disabled="disabled">
      </li>
      <li>
        <span class="title-span"> {{"i18nTextDefine_Network" | translate}} </span>
        <input nz-input [(ngModel)]="delNetwork2" disabled="disabled">
      </li>
      <li>
      <span class="title-span"> {{"i18nTextDefine_Node" | translate}} </span>
      <input nz-input [(ngModel)]="delNode2" disabled="disabled">
      </li>
      <li>
        <span class="title-span"> {{"i18nTextDefine_TerminalPoint" | translate}} </span>
        <input nz-input [(ngModel)]="delTp2" disabled="disabled">
      </li>
    </ul>
    <button nz-button nzType="primary" nzSize="small" class="del-button" style="width: 90px;" (click)="delLink()" *ngIf="!delcloud"> {{"i18nTextDefine_DeleteLink" | translate}} </button>
    <button nz-button nzType="primary" nzSize="small" class="del-button" style="width: 90px;" (click)="delCloudLink()" *ngIf="delcloud"> {{"i18nTextDefine_deleteLink" | translate}} </button>
    <button nz-button nzType="default" nzSize="small" class="del-button" style="width: 60px;" (click)="hideForm()"> {{"i18nTextDefine_Cancel" | translate}} </button>
  </div>
</div>