summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/pages/microservice-onboarding/microservice-add-details/microservice-add-details.component.html
blob: 4ec8ae3d7bd222388f5a2886232f6521d454b94b (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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!--
  ============LICENSE_START==========================================
  ONAP Portal
  ===================================================================
  Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  ===================================================================
 
  Unless otherwise specified, all software contained herein is licensed
  under the Apache License, Version 2.0 (the "License");
  you may not use this software 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.
 
  Unless otherwise specified, all documentation contained herein is licensed
  under the Creative Commons License, Attribution 4.0 Intl. (the "License");
  you may not use this documentation except in compliance with the License.
  You may obtain a copy of the License at
 
              https://creativecommons.org/licenses/by/4.0/
 
  Unless required by applicable law or agreed to in writing, documentation
  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.
 
  ============LICENSE_END============================================
 
  
  -->
  
<div class="container">
  <form name="form" (ngSubmit)="f.form.valid && saveChanges()" #f="ngForm" novalidate autocomplete="off">

    <!--Modal Headers-->
    <div class="modal-header">
      <h4 class="modal-title">Microservice Onboarding</h4>
      <button type="button" class="close" aria-label="Close" (click)="activeModal.dismiss('Cross')">
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  
    <!--Modal Body goes here-->
    <div class="modal-body">
      <div id="microservices" class="microservice-add-details-model">
        <div class="microservice-properties-main">
            <div class="item required">
              <div class="item-label">Microservice Name</div>
              <input id="microservice-details-input-name" class="table-search-field"
                type="text" name="name" #name="ngModel" ng-pattern="/^[\w -]*$/" maxlength="100"
                [(ngModel)]="ms.name"
                ng-change="microserviceAddDetails.updateServiceName()"
                [ngClass]="{'is-invalid': f.submitted && name.invalid}" required />

                <div class="error-container" *ngIf="f.submitted && name.invalid">
                    <div class="error-container">
                      <small id="microservices-details-input-name-required" class="err-message">
                        Microservice Name is required
                      </small>
                    </div>
                </div>    
            </div>

            
            <div class="item required">
                <div class="item-label">Microservice Description</div>
                  <textarea b2b-reset b2b-reset-textarea id="widgets-details-input-desc"
                    name="desc" [(ngModel)]="ms.desc" #desc="ngModel" class="microservice-desc"
                    ng-change="microserviceAddDetails.updateDesc()"
                    [ngClass]="{'is-invalid': f.submitted && desc.invalid}" required>
                  </textarea>

                  <div class="error-container" *ngIf="f.submitted && desc.invalid">
                      <div class="error-container">
                        <small id="microservices-details-input-desc-required" class="err-message">
                          Microservice Description is required
                        </small>
                      </div>
                  </div>    
            </div>

            <div class="item required">
                <div class="service-select">					
                  <mat-form-field>
                    <mat-label>Applications Name</mat-label>
                    <mat-select name="microservice-details-application-select"
                       [(ngModel)]="ms.appId" #appId="ngModel" [(value)]="selected"
                       [ngClass]="{'is-invalid': f.submitted && appId.invalid}" required>
                      <mat-option *ngFor="let d of applicationList" [value]="d.value" >{{d.title}}</mat-option>
                    </mat-select>
                  </mat-form-field>
                </div>

                <div class="error-container" *ngIf="f.submitted && appId.invalid">
                    <div class="error-container">
                      <small id="microservices-details-input-appid-required" class="err-message">
                          Please select microservice Application
                      </small>
                    </div>
                </div>       
            </div>

            <div class="item required">
              <div class="item-label">Microservice Endpoint URL</div>
              <input id="microservice-details-input-endpoint-url"
                [(ngModel)]="ms.url" #url="ngModel" ng-change="microserviceAddDetails.updateURL()" type="text"
                name="url" maxlength="200" [ngClass]="{'is-invalid': f.submitted && url.invalid}" required />

                <div class="error-container" *ngIf="f.submitted && url.invalid">
                    <div class="error-container">
                      <small id="microservices-details-input-url-required" class="err-message">
                        Microservice Endpoint URL is required
                      </small>
                    </div>
                </div>    
            </div>

            <div class="item">
              <div class="service-select">					
                  <mat-form-field>
                    <mat-label>Security Type</mat-label>
                    <mat-select name="microservice-details-input-security-type" [(ngModel)]="ms.securityType" [(value)]="selected">
                      <mat-option *ngFor="let d of availableSecurityTypes" [value]="d.name" >{{d.name}}</mat-option>
                    </mat-select>
                  </mat-form-field>
              </div>			
            </div>

            <div class="item" *ngIf="ms.securityType == 'Basic Authentication'">
              <div class="item-label">Username</div>
              <input id="microservice-details-input-username" class="table-search-field"
                type="text" name="username" maxlength="100"
                [(ngModel)]="ms.username" />
            </div>

            <div class="item" *ngIf="ms.securityType == 'Basic Authentication'">
              <div class="item-label">Password</div>
              <input id="microservice-details-input-password" class="table-search-field"
                type="password" name="password" maxlength="100"
                [(ngModel)]="ms.password" />
            </div>

            <div class="item" *ngIf="isEditMode">
                <div class="left-test-item">
                  <div class="item-label">Test Microservice</div>
                </div>
                <div class="right-test-item">
                  <div id="microservice-details-test-button" class="test-button"
                    (click)="testServiceURL()">Test</div>
                </div>
            </div>
                    
            <div class="item" *ngIf="isEditMode">
                <div class="item-label">JSON output</div>
                <textarea id="microservice-details-input-json" class="json-field"
                  name="json"></textarea>
            </div>

            <div class="add-para-item">
                <div class="item-label add-label-left">Add User Parameter</div>
                <div class="icon-primary-accordion-plus" (click)="addParameter()">
                    <i class="icon ion-ios-add-circle-outline"></i>
                </div>
            </div>

            <div class="item">
              <div class="param-label-item-left"
                *ngIf="ms.parameterList.length > 0">
                Parameter Key
              </div>
              <div class="para-label-item-right"
                *ngIf="ms.parameterList.length > 0">
                Parameter Default Value
              </div>

              <div id="microservice-details-user-paramters" *ngFor="let parameter of ms.parameterList; let i=index">
                <div class="param-item-left">
                        <input id="microservice-details-input-user-parameter-key"
                          class="table-search-field" type="text" name="param-key" maxlength="200"
                          [(ngModel)]="parameter.para_key" />
                        <input id="microservice-details-input-user-parameter-value"
                          class="table-search-fields" type="text" name="param-value"
                          maxlength="200" [(ngModel)]="parameter.para_value" />
                </div>

                <div (click)="removeParamItem(parameter)">
                    <i class="icon ion-ios-remove-circle-outline"></i>
                </div>
              </div>

              <div class="microservice-property">	
                  <mat-checkbox  name="active" type="checkbox" [(ngModel)]="ms.active"
                    id="microservices-checkbox-app-is-enabled" [checked]="ms.active">
                    Active
                  </mat-checkbox>
              </div>
            </div>
          </div>
      </div> 
    </div>
    <!--Modal Footer goes Here-->
    <div class="modal-footer">
      <button type="submit" class="btn btn-primary">Save</button> &nbsp;
      <button type="button" class="btn btn-primary" (click)="activeModal.close('Close')">Cancel</button>
    </div>
  </form>
</div>