aboutsummaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/ccvpn-network/ccvpn-network.component.html
blob: 4fbe48759c6141653a8ba8c39aebd2790a679c34 (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
<!--
    Copyright (C) 2018 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">
  <!--图表-->
  <div class="tips">
    请根据以下操作,来配置您的网络
  </div>
  <button nz-button nzType="primary" style="margin-top: 2px;display: block" (click)="showForm()">Add Link</button>
  <div id="tpContainer" style="overflow: hidden;"></div>
  <!--弹出框-->
  <div class="creation" id="d3_form" *ngIf="isVisible==true">
    <span class="v_color"></span>
    <h3 class="w_font4">Set Attribtes</h3>
    <ul class="choose">
      <li>
        <span class="title-span"><span class="red-span">*</span>Link Name </span>
        <input nz-input [(ngModel)]="linkName" maxlength="20">
      </li>
    </ul>
    <h4>Left Port</h4>
    <ul class="choose">
      <li>
        <span class="title-span"><span class="red-span">*</span>Network </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>Node </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>Terminal Point </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>Right Port</h4>
    <label nz-checkbox [(ngModel)]="inputshow">Partner Network</label>
    <ul class="choose">
      <li>
        <span class="title-span"><span *ngIf="inputshow" class="red-span">*</span>Host Url</span>
        <input nz-input [(ngModel)]="cloudUrl" [disabled]='!inputshow' [attr.disabled] ='!inputshow?true:undefined'>
      </li>
      <li>
        <span class="title-span"><span class="red-span">*</span>Network </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>Node </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>Terminal Point </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()">OK</button>
    <button nz-button nzType="default" nzSize="small" style="width: 60px;" (click)="hideForm()">Cancel</button>
  </div>
  <div class="creation" id="delbox" *ngIf="delBoxisVisible==true">
    <span class="v_color"></span>
    <h3 class="w_font4">Set Attribtes</h3>
    <ul class="choose">
      <li>
        <span class="title-span">Link Name </span>
        <input nz-input [(ngModel)]="delLinkname" disabled="disabled">
      </li>
    </ul>
    <h4>Left Port</h4>
    <ul class="choose">
      <li>
        <span class="title-span">Network </span>
        <input nz-input [(ngModel)]="delNetwork1" disabled="disabled">
      </li>
      <li>
        <span class="title-span">Node </span>
        <input nz-input [(ngModel)]="delNode1" disabled="disabled">
      </li>
      <li>
        <span class="title-span">Terminal Point </span>
        <input nz-input [(ngModel)]="delTp1" disabled="disabled">
      </li>
    </ul>
    <h4>Right Port</h4>
    <ul class="choose">
      <li *ngIf="delcloud">
        <span class="title-span">Host Url</span>
        <input nz-input [(ngModel)]="delcloudUrl" disabled="disabled">
      </li>
      <li>
        <span class="title-span">Network </span>
        <input nz-input [(ngModel)]="delNetwork2" disabled="disabled">
      </li>
      <li>
      <span class="title-span">Node </span>
      <input nz-input [(ngModel)]="delNode2" disabled="disabled">
      </li>
      <li>
        <span class="title-span">Terminal Point </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">delete Link</button>
    <button nz-button nzType="primary" nzSize="small" class="del-button" style="width: 90px;" (click)="delCloudLink()" *ngIf="delcloud">delete Link</button>
    <button nz-button nzType="default" nzSize="small" class="del-button" style="width: 60px;" (click)="hideForm()">Cancel</button>
  </div>
</div>