aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/vnfs/build-artifacts/template-holder/param-name-value/param-name-value.component.html
blob: 55ea90f04c2e9b3ff50ed2d7c84ec8cef5108c11 (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
<!--
============LICENSE_START==========================================
===================================================================
Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
===================================================================
Copyright (C) 2018 IBM.
===================================================================

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.

============LICENSE_END============================================
-->

<simple-notifications [options]="options"></simple-notifications>
<ngx-spinner bdColor="rgba(51,51,51,0.8)"
  size="large"
  color="orange"
  loadingText="Uploading param file..."
  type="ball-scale-multiple"></ngx-spinner>
<ng-progress [positionUsing]="'marginLeft'" [minimum]="0.15" [maximum]="1" [speed]="200" [showSpinner]="false" [direction]="'leftToRightIncreased'" [color]="'#6ab344'" [trickleSpeed]="250" [thick]="true" [ease]="'linear'"></ng-progress>

<tabs>
    <tab [tabTitle]="'Template Configuration'">
        <div>
            <app-golden-configuration [(configMappingEditorContent)]="configMappingEditorContent" [isMappingComp]="true" #mappingComponent>
            </app-golden-configuration>
        </div>
    </tab>
    <tab [tabTitle]="'Param Values'">
        <div class="form-group">
            <div [hidden]="true">
                <button type="button" id="modalButton" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" (click)="modal.open()">Open me!
                </button>
            </div>
            <div>
                <modal #modal>
                    <modal-header [show-close]="true">
                        <h4 class="modal-title">{{title}}</h4>
                    </modal-header>
                    <modal-body>
                        {{message}}
                    </modal-body>
                    <modal-footer>
                        <button type="button" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" data-dismiss="modal">Close
                        </button>
                    </modal-footer>
                </modal>
            </div>
            <div class="card" style="    margin-bottom: 23px;">
                <img class="card-img-top" data-src="holder.js/100%x180/" alt="">
                <div class="card-block" style="border-top: 5px solid #6ab344;border-top-right-radius: 7px;border-top-left-radius: 7px;">
                    <div class="row" style="padding: 15px 25px">
                        <div class="col-lg-3 col-sm-6 col-md-3 col-xs-12">
                            <label>Action</label>
                            <input class="form-control" type="text" disabled value="{{action}}" />
                        </div>
                        <div class="col-lg-3 col-sm-6 col-md-3 col-xs-12">
                            <label>Vnf Type</label><input class="form-control" type="text" disabled value="{{vnfType}}" />
                        </div>
                        <div class="col-lg-3 col-sm-6 col-md-3 col-xs-12" *ngIf="vnfcType">
                            <label>Vnfc Type</label>  <label style="font-size:12px;">(NFC Function)</label>
                            <input class="form-control" type="text" disabled value="{{vnfcType}}" />
                        </div>
                        <div class="col-lg-3 col-sm-6 col-md-3 col-xs-12" *ngIf="!vnfcType">
                
                        </div>
                        <div class="col-lg-3 col-sm-6 col-md-3 col-xs-12">
                            <label>Protocol</label><input class="form-control" type="text" disabled value="{{protocol}}" />
                        </div>
                        <div *ngIf="(action === 'ConfigScaleOut')" class="col-lg-3 col-sm-6 col-md-3 col-xs-12">
                            <label>Template Identifier</label><input class="form-control" type="text" disabled value="{{identifier}}" />
                        </div>
                    </div>
                </div>
            </div>

            <div class="col-12">
                <div class="input-group">
                    <input id="inputFile2" class="file" #myInput type='file' (change)='fileChange(myInput)'>
                    <input type="text" class="input-lg" [(ngModel)]="myfileName" disabled placeholder="Upload Param file from PC" style="width:80%">
                    <button (click)="browseOption($event)" [disabled]="!enableMappingBrowse" class="browse mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary input-lg">
                        Upload Param file
                    </button>
                </div>
            </div>

            <input type="file" id="filesparam" style="visibility:hidden;" class="form-control-file" (change)="fileParamChange(myInputParam)" #myInputParam placeholder="Upload file..." />
            <div class="row" style="margin-bottom: 20px;">
                <div class="col-md-12 text-right">
                    <button type="button" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" (click)="retrieveNameValueFromAppc()">Retrieve Name/Value from APPC
                </button>
                    <button type="button" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" (click)="syncParam()">Synchronize with name values
                </button>
                </div>
            </div>
        </div>
        <hr>
        <!--Commenting out 1712 changes here-->
        <!--<div class="col-md-12" [hidden]="!showMappingDownloadDiv"><label>Download Name/Value pair as : </label>
 <select class="form-control col-md-3" [(ngModel)]="mapppingDownloadType" (ngModelChange)="onDownloadParameter()"> 
                <option value="">Select</option> 
                <option value="Json">JSON</option> 
                <option value="Xls">XLS</option> 
            </select>
</div>-->

        <div class="col-md-12"></div>
        <div><label for="textAreaGeneratedTemplate">
            <div class="mdl-card__title-text">Param Name Value List</div>
            <div><font size="1">(Please click anywhere on the editor to see the synced name value pairs)</font></div>
        </label>
            <!-- <ace-editor [(text)]="this.artifactRequest.paramsContent" [theme]="'chrome'" [mode]="'velocity'" (textChanged)="onParamChanges($event)" [options]="{maxLines: 'Infinity', fontSize: '13pt'}"
                style="min-height: 500px; width: fit-content;"></ace-editor> -->
            <ace-editor [(text)]="this.artifactRequest.paramsContent" #templateeditor [theme]="'chrome'" [mode]="'velocity'" (textChanged)="onParamChanges($event)" [options]="{maxLines: '100', fontSize: '13pt' }" style="min-height: 200px; width: 100%"></ace-editor>
        </div>

    </tab>
</tabs>