aboutsummaryrefslogtreecommitdiffstats
path: root/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/underlayvpn.html
blob: 6d8b545e9dc8d008670b25012ca8587418917ea8 (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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!--

    Copyright 2016, Huawei Technologies Co., Ltd.

    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.

-->

<!DOCTYPE html>
<html>
<head>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <link href="css/bootstrap.min.css" rel="stylesheet"/>
        <link href="css/jquery.dataTables.min.css" rel="stylesheet"/>
        <link href="css/VMMain.css" rel="stylesheet"/>
        <link href="css/bootstrap-table.min.css" rel="stylesheet"/>
        <script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
        <script type="text/javascript" src="js/bootstrap.min.js"></script>
        <script type="text/javascript" src="js/brs.js"></script>
        <script type="text/javascript" src="js/underlay.js"></script>
        <script type="text/javascript" src="js/bootstrap-table.min.js"></script>
        <script type="text/javascript" src="js/bootstrap-table-filter-control.min.js"></script>
        <style>
            .dropdown-menu {
                min-width: 10px;
            }
            .btn {
                padding: 4px;
            }

    .fixed-table-container tbody td .th-inner,
    .fixed-table-container thead th .th-inner {
        line-height: 4px;
    }
    .fixed-table-pagination .pagination-info {
        display: none !important;
    }
    .table tbody tr:hover td,
    .table tbody tr.odd:hover td {
        background-color: #e6fbe0 !important;
    }
    .delete-btn {
        background: url(delete.png) no-repeat !important;
        width: 16px;
        height: 16px;
        border: none;
    }
    table tr.openoTable_row_selected td {
        background: #e8f8fe!important;
        border-bottom: 1px solid #e8e8e8!important;
    }
    .container-fluid {
        padding-left: 10px;
        padding-right: 0px;
    }

    .clearfix {
            display: none;
        }
       .page-list{
            float:none !important;
            display:inline-block !important;
            margin-right: 10px;
          vertical-align: middle;
           margin-bottom: 25px;

        }
         .pull-left{
        float:none !important;
          display:inline-block !important;
       }

       .pull-right{
        float:none !important;
         display:inline-block !important;
       }

       .fixed-table-pagination{
        height:20px;
        float:right;
       }
        </style>
        <script type="text/javascript">
            $(document).ready(function () {


                var jsondata = loadUnderlayData();
                $('#tbl_overlay').bootstrapTable({
                    //Assigning data to table
                    data: jsondata
                });
                $('#underlayTpDataTable').bootstrapTable({
                    //Assigning data to table
                    data: {}
                });
                $('.table tbody tr').click(function () {
                    $(this).addClass('openoTable_row_selected').siblings().removeClass('openoTable_row_selected');
                });

                $('#sai').on('sort.bs.table', function () {


                }).on('click-row.bs.table', function () {


                    $('.table tbody tr').click(function() {

                        $(this).addClass('openoTable_row_selected').siblings().removeClass('openoTable_row_selected');
                    });

                });

                var serviceId = getQueryStringValue("serviceId");
                console.log("underlayvpn - serviceId : " + serviceId);

            });

            function getQueryStringValue (key) {
                var params = new URLSearchParams(window.location.search.slice(1));
                return params.get(key);
            }

            function operateFormatter(value, row, index) {
                return [
                    '<img class="siteDeleteImg" src="images/delete.png" href="javascript:void(0)" style="cursor: pointer" name="title" title="Delete" />'
                ].join('');
            }
            window.operateEvents = {
                'click .siteDeleteImg': function(e, value, row, index) {
                    // TO DO ajex call for delete
                    console.log(value, row, index);
                }
            };
            /* function nameFormatter(value, row) {
             jsonForTP = row.json.data;
             var name=JSON.stringify(row.json.data);
             var temp = "<a class='underlayNameLink' onclick='getMethod(this)' name='"+ name + "' data-events='operateEventsU'>" + value + "</a>";
             return temp;
             }*/
            function getMethod(obj) {
                //Update the lower table here
                $('#underlayTpDataTable').bootstrapTable(
                        //Assigning data to table
                        "append", JSON.parse(obj.name)
                );
            }
        </script>

</head>

<body id="open_base_vpn_cotentBody" class="cotentBody ng-scope">
    <div class="container-fluid ms-controller">
        <h3>Underlay VPN</h3>
      <!--   <div class="row-fluid" data-name="table_zone">
            <div id='ict_virtualApplication_table_div'>
                <div>
                    <div class="top">
                        <table class="table table-striped" id="tbl_overlay" data-pagination="true" data-page-size="5" data-pagination-first-text="First" data-pagination-pre-text="Previous" data-pagination-next-text="Next" data-pagination-last-text="Last">
                            <thead id="sunderlayTable_thead" class="openo-table-thead" style="background:#ECECEC">
                                <tr class="active">

                                    <th class="openo-table-state-default openo-table-th openo-table-disable-element  leftHeaderAlign" data-formatter="nameFormatter" data-field="underlayName" data-sortable="true">
                                        <div class="openo-table-th-border"></div>
                                        <div class="DataTables_sort_wrapper openo-ellipsis ">
                                            <span id="underlayName_sorticon" class="openo-table-th-sorticon overflow_elip openoTable_sortable leftHeaderAlign  openo-table-disable-element ">Name
                    </span>
                                        </div>
                                    </th>
                                    <th class="openo-table-state-default openo-table-th openo-table-disable-element  leftHeaderAlign" data-field="underlayTenantName" data-sortable="true">
                                        <div class="openo-table-th-border"></div>
                                        <div class="DataTables_sort_wrapper openo-ellipsis ">
                                            <span id="underlayTenantName_sorticon" class="openo-table-th-sorticon overflow_elip  leftHeaderAlign  openo-table-disable-element ">State
                            </span>
                                        </div>
                                    </th>
                                    <th class="openo-table-state-default openo-table-th openo-table-disable-element  leftHeaderAlign" data-field="underlayType" data-sortable="true">
                                        <div class="openo-table-th-border"></div>
                                        <div class="DataTables_sort_wrapper openo-ellipsis ">
                                            <span id="underlayType_sorticon" class="openo-table-th-sorticon overflow_elip  leftHeaderAlign  openo-table-disable-element ">Description
                    </span>
                                        </div>
                                    </th>
                                    <th class="openo-table-state-default openo-table-th openo-table-disable-element  leftHeaderAlign" data-field="underlayDescription" align="center" data-formatter="operateFormatter" data-events="operateEvents">
                                        <div class="openo-table-th-border"></div>
                                        <div class="DataTables_sort_wrapper openo-ellipsis ">
                                            <span id="underlayDescription_sorticon" class="openo-table-th-sorticon overflow_elip  leftHeaderAlign  openo-table-disable-element ">Action
                          </span>
                                        </div>
                                    </th>

                                </tr>
                            </thead>
                            <tbody>

                                <tr>
                                    <td>a_data </td>
                                    <td>data </td>
                                    <td>Sample1 </td>
                                    <td>
                                        <button class="table-btn delete-btn"></button>
                                    </td>
                                </tr>

                                <tr>
                                    <td>b_data </td>
                                    <td>new sample </td>
                                    <td>modified </td>
                                    <td>
                                        <button class="table-btn delete-btn"></button>
                                    </td>
                                </tr>

                                <tr>
                                    <td>data </td>
                                    <td>updated </td>
                                    <td>Sample </td>
                                    <td>
                                        <button class="table-btn delete-btn"></button>
                                    </td>
                                </tr>

                                <tr>
                                    <td>alarm </td>
                                    <td>deleted </td>
                                    <td>Sample </td>
                                    <td>
                                        <button class="table-btn delete-btn"></button>
                                    </td>
                                </tr>
                            </tbody>

                        </table>
                    </div>
                </div>
            </div>
        </div>
 -->

    <div class="row-fluid" data-name="table_zone">
        <div id='ict_virtualApplication_table_div'>
            <div>
                <div class="top">
                    <table class="table-striped table " id="sai" data-pagination="true" data-pagination-first-text="First"
                           data-pagination-pre-text="Previous" data-pagination-next-text="Next" data-pagination-last-text="Last"
                           data-filter-control="true">
                        <thead style="background:#ECECEC">
                        <tr>
                            <th data-field="name" data-sortable="true" data-filter-control="input">Name</th>
                            <th data-field="state" data-sortable="true" data-filter-control="input">State</th>
                            <th data-field="desc" data-sortable="true" data-filter-control="input">Description</th>
                            <th data-field="action" data-sortable="">Action</th>
                        </tr>
                        </thead>
                    </table>
                </div>
            </div>
        </div>
    </div>

    <div id="tpDiv">
        <iframe src="UnderLay_TP.html" style="width:100%;height:450px;" name="targetframe" allowTransparency="true" scrolling="no" frameborder="0">
        </iframe>
    </div>
    <div id="filterTpLogicalType_select_popupcontainer" class="openo openo-select-popup-container openo-hide"
         style="width: 155px; max-height: 130px; left: 628px; top: 104px; z-index: 1761;">
        <div class="openo-select-item openo-ellipsis  " id="filterTpLogicalType_openo-select-id_0"><label
                class="openo-ellipsis openo-select-blank-item" style="width: 100%; display: block; height: 20px;"></label>
        </div>
        <div class="openo-select-item openo-ellipsis  " id="filterTpLogicalType_openo-select-id_1"><label
                class="openo-ellipsis " style="width: 100%; display: block; height: 20px;">ETH</label></div>
        <div class="openo-select-item openo-ellipsis  " id="filterTpLogicalType_openo-select-id_2"><label
                class="openo-ellipsis " style="width: 100%; display: block; height: 20px;" title="POS">POS</label></div>
        <div class="openo-select-item openo-ellipsis  " id="filterTpLogicalType_openo-select-id_3"><label
                class="openo-ellipsis " style="width: 100%; display: block; height: 20px;">Trunk</label></div>
        <div class="openo-select-item openo-ellipsis  " id="filterTpLogicalType_openo-select-id_4"><label
                class="openo-ellipsis " style="width: 100%; display: block; height: 20px;">Loopback</label></div>
    </div>
</body>
</html>