Add Reuired and Optional checkbox to mapping table
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / packages / package-creation / template-mapping / templ-mapp-creation / templ-mapp-creation.component.html
1 <div class="row template-mapping-action">
2     <div class="col">
3         <h6 [hidden]="edit" class="create-title">Create Template</h6>
4         <button (click)="openListView()" [hidden]="!edit" class="btn btn-outline-secondary"><i
5                 class="fa fa-chevron-left mr-2"></i>Template List</button>
6     </div>
7     <div class="col text-right">
8         <button data-toggle="modal" [hidden]="!edit" data-target="#templateDeletionModal2"
9             class="btn btn-outline-danger" title="Delete Template">Delete</button>
10         <button (click)="cancel()" [hidden]="fileName?.length <=0 || edit"
11             class="btn btn-outline-secondary">Clear</button>
12         <button tourAnchor="tm-templateFinish" (click)="saveToStore()" [disabled]="fileName?.length <=0"
13             title="Submit template and close" class="btn btn-primary">Finish</button>
14     </div>
15 </div>
16 <div class="card creat-card">
17     <div class="single-line-model">
18         <label class="label-name">Name
19             <span _ngcontent-uew-c3="">*</span>
20         </label>
21
22         <div class="label-input">
23             <input tourAnchor="tm-templateName" type="input" [disabled]="edit" [(ngModel)]="fileName"
24                 placeholder="Template name" name="templateName" autofocus [autofocus]="true">
25         </div>
26     </div>
27 </div>
28
29 <div class="template-mapping-accordion">
30     <div class="accordion" id="accordion">
31         <div class="card">
32             <div class="card-header" id="headingOne">
33                 <h5 class="mb-0 d-flex justify-content-between">
34                     <button class="btn btn-link" data-toggle="collapse" data-target="#collapseOne" id="templateTab"
35                         aria-expanded="true" aria-controls="collapseOne">
36                         1. Template <span class="accordian-title">{{currentTemplate?.fileName?.split('/')[1]}}</span>
37                     </button>
38
39                 </h5>
40             </div>
41
42             <div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
43                 <div class="card-body">
44                     <div tourAnchor="tm-templateType" class="single-line">
45                         <label class="label-name">Template Type</label>
46                         <div class="label-input">
47                             <label name="trst" (click)="allowedExt=['.vtl'];templateExt='vtl'">
48                                 <input class="form-check-input" [(ngModel)]="templateExt" type="radio"
49                                     name="exampleRadios" id="exampleRadios1" value=vtl>
50                                 <span>
51                                     Velocity
52                                 </span>
53                             </label>
54                             <label name="trst" (click)="allowedExt=['.j2','.jinja2'];templateExt='j2'">
55                                 <input class="form-check-input" [(ngModel)]="templateExt" type="radio"
56                                     name="exampleRadios" id="exampleRadios1" value=j2>
57
58                                 <span>
59                                     Jinja
60                                 </span>
61                             </label>
62                             <label tourAnchor="tm-templateContent" name="trst"
63                                 (click)="allowedExt=['.kt'];templateExt='kt'">
64                                 <input class="form-check-input" [(ngModel)]="templateExt" type="radio"
65                                     name="exampleRadios" id="exampleRadios1" value=kt>
66
67                                 <span>
68                                     Kotlin
69                                 </span>
70                             </label>
71                         </div>
72                     </div>
73                     <div class="create-template-import">Use the editor to add parameters or you can also
74                         <a href="#" data-toggle="modal" data-target="#templateModal"><b>Import
75                                 File</b></a>. <br /> <span class="templateNote"><i class="icon-info"
76                                 aria-hidden="true"></i> When you import new file, the new attributes will replace
77                             current attributes.</span></div>
78                     <div class="editor-container mb-4">
79                         <app-source-editor [lang]="'velocity'" (textChange)="textChanges($event,templateInfo.fileName)"
80                             [(text)]="templateFileContent">
81                         </app-source-editor>
82                     </div>
83                 </div>
84             </div>
85         </div>
86         <div class="card">
87             <div class="card-header" id="headingTwo">
88                 <h5 class="mb-0">
89                     <button tourAnchor="tm-mappingContent" class="btn btn-link collapsed" id="mappingTab"
90                         data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false"
91                         aria-controls="collapseTwo">
92                         2. Manage Mapping <span
93                             class="accordian-title">{{currentMapping?.fileName?.split('/')[1]}}</span>
94                     </button>
95                 </h5>
96             </div>
97             <div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
98                 <div class="card-body">
99                     <p class="text-center"><b>Select a source to load config parameters</b></p>
100                     <div class="text-center">
101                         <button [disabled]="!(variables?.length>0 && templateFileContent?.trim()?.length > 0)"
102                             (click)="getMappingTableFromTemplate($event)" class="mapping-source-load" [ngClass]="variables?.length>0 && templateFileContent?.trim()?.length > 0
103                             ?'hover-enable':'hover-disable'">
104                             <i class="icon-use-attributes"></i>
105                             <br />
106                             <span>Use Current Template Instance</span>
107                         </button>
108                         <a href="#" (click)="allowedExt=['.csv','.xml']" data-toggle="modal"
109                             data-target="#templateModal" class="mapping-source-load">
110                             <i class="icon-upload-attributes"></i>
111                             <br />
112                             <div>Upload Attributes List</div>
113                             <div class="source-load-note">CSV or XML files</div>
114                         </a>
115                         <!-- <a href="#" class="mapping-source-load">
116                             <i class="icon-import-cds"></i>
117                         <br/>
118                             <span>Import from SDC Model</span>
119                         </a> -->
120                     </div>
121
122                     <div class="table-container">
123
124
125                     </div>
126
127                 </div>
128
129                 <div id="mapping-table" [hidden]="resourceDictionaryRes?.length == 0" class="mapping-table mx-4 my-2">
130                     <div class="btn-group mapping-editBar" role="group">
131                         <div class="custom-control custom-checkbox" tooltip="Select All" placement="bottom">
132                             <input type="checkbox" (click)="selectAllProps()" class="custom-control-input"
133                                 id="customCheck1"
134                                 [checked]="resourceDictionaryRes.length>0&&resourceDictionaryRes.length === this.selectedProps.size">
135                             <label class="custom-control-label" for="customCheck1"></label>
136                         </div>
137                         <button [disabled]="selectedProps.size <=0" type="button" class="btn" (click)="reMap()"
138                             tooltip="Re-mapping" placement="bottom"><i class="icon-autoMap"></i></button>
139                         <button [disabled]="selectedProps.size <=0" type="button" class="btn" (click)="removeProps()"
140                             tooltip="Remove" placement="bottom"><i class="icon-delete-sm"></i></button>
141                         <div style="line-height: 35px;font-size: 10px;">
142                             <span>{{selectedProps.size}} selected </span>
143                             <span>({{resourceDictionaryRes.length}} attributes in total)</span>
144                         </div>
145                     </div>
146                     <table datatable [dtOptions]="initDtOptions" [dtTrigger]="dtTrigger" class="row-border hover">
147                         <thead>
148                             <tr>
149                                 <th></th>
150                                 <th>Required</th>
151                                 <th>Parameter Name</th>
152                                 <th>Dictionary Name</th>
153                                 <th>Dictionary Source</th>
154                                 <th>Dependancies</th>
155                                 <th>Default</th>
156                                 <th>Data Type</th>
157                                 <th>Entry Schema</th>
158                             </tr>
159                         </thead>
160                         <tbody>
161                             <tr *ngFor="let dict of resourceDictionaryRes">
162                                 <td>
163                                     <div class="custom-control custom-checkbox" tooltip="Select" placement="bottom">
164                                         <input type="checkbox" class="custom-control-input"
165                                             id="customCheck-{{dict.name}}" [checked]="selectedProps.has(dict.name)"
166                                             (click)="selectProp(dict.name)">
167                                         <label class="custom-control-label" for="customCheck-{{dict.name}}"></label>
168                                     </div>
169                                     <!-- <input type="checkbox" [checked]="selectedProps.has(dict.name)"
170                                         (click)="selectProp(dict.name)"></td> -->
171                                 </td>
172                                 <td>
173                                     <div class="custom-control custom-checkbox reuiredInput">
174                                         <input type="checkbox" class="custom-control-input"
175                                             id="customCheck-{{dict.name}}" [checked]="selectedProps.has(dict.name)"
176                                             (click)="selectProp(dict.name)">
177                                         <label class="custom-control-label" for="customCheck-{{dict.name}}"></label>
178                                     </div>
179                                     
180                                     <img *ngIf="dict.definition?.property?.required"
181                                         src="/assets/img/icon-required-yes.svg">
182                                     <img *ngIf="!dict.definition?.property?.required"
183                                         src="/assets/img/icon-required-no.svg">
184                                 </td>
185                                 <td>{{ dict.name }}</td>
186                                 <td>{{ dict.name }}</td>
187                                 <td>
188                                     <select class="custom-select" (click)="selectSource(dict,$event)">
189                                         <option *ngFor="let val of dict.definition.sources | keyvalue">
190                                             {{initMap(dict.name,val)}}
191                                         </option>
192
193                                     </select>
194                                 </td>
195                                 <td>
196                                     <!-- <select class="custom-select">
197                                         <option *ngFor="let val of getKeys(dependancies)">
198                                             {{ getValue(dict.name)}}</option>
199
200                                     </select> -->
201                                     <input type="text" class="form-control" [ngModel]="getValue(dict.name)">
202                                     <!-- {{ dict.definition.sources }} -->
203                                 </td>
204                                 <td>{{ dict.definition?.property?.default }}</td>
205                                 <td>{{ dict.definition?.property?.type }}</td>
206                                 <td>{{ dict.definition?.property['entry_schema'] }}</td>
207                             </tr>
208                         </tbody>
209                     </table>
210                 </div>
211
212                 <div id="mapping-table-res" [hidden]="mappingRes?.length == 0" class="mapping-table mx-4 my-2">
213                     <!-- <div class="btn-group mapping-editBar" role="group">
214                         <div class="custom-control custom-checkbox" tooltip="Select All" placement="bottom">
215                             <input type="checkbox" (click)="selectAllProps()" class="custom-control-input"
216                                 id="customCheck2"
217                                 [checked]="resourceDictionaryRes.length>0&&resourceDictionaryRes.length === this.selectedProps.size">
218                             <label class="custom-control-label" for="customCheck2"></label>
219                         </div>
220                         <button [disabled]="selectedProps.size <=0" type="button" class="btn" (click)="reMap()"
221                             tooltip="Re-mapping" placement="bottom"><i class="icon-autoMap"></i></button>
222                         <button [disabled]="selectedProps.size <=0" type="button" class="btn" (click)="removeProps()"
223                             tooltip="Remove" placement="bottom"><i class="icon-delete-sm"></i></button>
224                     </div> -->
225                     <table datatable [dtOptions]="dtOptions" [dtTrigger]="resTableDtTrigger" class="row-border hover">
226                         <thead>
227                             <tr>
228                                 <!-- <th></th> -->
229                                 <th>Required</th>
230                                 <th>Parameter Name</th>
231                                 <th>Dictionary Name</th>
232                                 <th>Dictionary Source</th>
233                                 <th>Dependancies</th>
234                                 <th>Default</th>
235                                 <th>Data Type</th>
236                                 <th>Entry Schema</th>
237                             </tr>
238                         </thead>
239                         <tbody>
240                             <tr *ngFor="let dict of mappingRes">
241                                 <!-- <td>
242                                     <div class="custom-control custom-checkbox" tooltip="Select" placement="bottom">
243                                         <input type="checkbox" class="custom-control-input"
244                                             id="customCheck2-{{dict.name}}" [checked]="selectedProps.has(dict.name)"
245                                             (click)="selectProp(dict.name)">
246                                         <label class="custom-control-label" for="customCheck2-{{dict.name}}"></label>
247                                     </div>
248                                 </td> -->
249                                 <td>
250                                     <img *ngIf="dict.definition?.property?.required"
251                                         src="/assets/img/icon-required-yes.svg">
252                                     <img *ngIf="!dict.definition?.property?.required"
253                                         src="/assets/img/icon-required-no.svg">
254                                 </td>
255                                 <td>{{ dict['name'] }}</td>
256                                 <td>{{ dict['name'] }}</td>
257                                 <td>
258                                     <input type="text" class="form-control" [value]="dict['dictionary-source']"
259                                         disabled>
260
261                                 </td>
262                                 <td>
263                                     <input type="text" class="form-control" [value]="dict['dependencies']" disabled>
264                                     <!-- {{ dict.definition.sources }} -->
265                                 </td>
266                                 <td>{{ dict['property']['default'] }}</td>
267                                 <td>{{ dict['property']['type'] }}</td>
268                                 <td>{{ dict['property']['entry_schema'] }}</td>
269                             </tr>
270                         </tbody>
271                     </table>
272                 </div>
273
274
275             </div>
276
277
278         </div>
279
280     </div>
281 </div>
282
283
284 <div class="modal fade" id="templateModal" tabindex="-1" role="dialog" aria-labelledby="templateModalLabel"
285     aria-hidden="true">
286     <div class="modal-dialog" role="document">
287         <div class="modal-content">
288             <div class="modal-header">
289                 <h5 class="modal-title" id="templateModalLabel">Import File</h5>
290                 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
291                     <img src="assets/img/icon-close.svg" />
292                 </button>
293             </div>
294             <div class="modal-body">
295                 <ngx-file-drop [multiple]="false" [accept]="allowedExt" dropZoneLabel="Drop files here"
296                     (onFileDrop)="dropped($event)" (onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)">
297                     <ng-template ngx-file-drop-content-tmp let-openFileSelector="openFileSelector">
298                         <div class="folder-upload">
299                             <img src="assets/img/folder-upload.svg" />
300                         </div>
301                         <div class="folder-upload-text">
302                             Drag & Drop file
303                         </div>
304                         <div class="folder-upload-text">or
305                             <button type="button" class="btn btn-sm btn-primary" (click)="openFileSelector()">Browse
306                                 Files
307                             </button>
308                         </div>
309                         <div class="folder-upload-type">Allowed file type:
310                             {{allowedExt}}
311                         </div>
312                     </ng-template>
313                 </ngx-file-drop>
314                 <div class="upload-table">
315                     <table class="table">
316                         <thead>
317                             <tr *ngFor="let item of uploadedFiles; let i=index">
318                                 <th width="40"><img src="assets/img/icon-file-code.svg" /></th>
319                                 <th>{{ item.name }}</th>
320                                 <th (click)="removeFile(i)" width="40" class="text-right"><img
321                                         src="assets/img/icon-remove-file.svg" class="btn-modal-remove-file" /></th>
322                             </tr>
323                         </thead>
324                     </table>
325                 </div>
326             </div>
327
328             <div class="modal-footer">
329                 <button type="button" class="btn btn-sm btn-secondary btn-cancel" data-dismiss="modal"
330                     (click)="resetTheUploadedFiles()">Cancel
331                 </button>
332
333                 <button data-dismiss="modal" (click)="uploadFile()" class="btn btn-sm btn-primary" type="button">
334                     Import
335                 </button>
336             </div>
337         </div>
338     </div>
339 </div>
340
341 <!-- Delete Modal -->
342 <div class="modal fade" id="templateDeletionModal2" tabindex="-1" role="dialog"
343     aria-labelledby="templateDeletionModal2Label" aria-hidden="true">
344     <div class="modal-dialog" role="document">
345         <div class="modal-content">
346             <div class="modal-header">
347                 <h5 class="modal-title" id="templateDeletionModal2Label">Delete Script</h5>
348                 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
349                     <img src="assets/img/icon-close.svg" />
350                 </button>
351             </div>
352             <div class="modal-body">
353                 <p>Are you sure you want to delete Template file
354                     <span>{{fileToDelete}}</span>?</p>
355             </div>
356             <div class="modal-footer">
357                 <button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
358                 <button type="button" (click)="confirmDelete()" data-dismiss="modal"
359                     class="btn btn-primary">Delete</button>
360             </div>
361         </div>
362     </div>
363 </div>