aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-GUI/src/main/webapp/operationhistory.html
blob: 8af0f8b7485203e0a9d33be016b2c5ab97b0b7aa (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
<!-- 
 * ============LICENSE_START=======================================================
 * Ran Simulator Controller
 * ================================================================================
 * Copyright (C) 2020 Wipro Limited.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */ 
 -->
<!DOCTYPE html>
<html>
<head>
<title>Cell Operations History</title>
<style>
th, td, p, input {
	font: 14px Verdana;
}

table, th, td {
	border: solid 1px #DDD;
	border-collapse: collapse;
	padding: 2px 3px;
	text-align: center;
}

th {
	font-weight: bold;
}

.odd {
	background-color: white;
}

.even {
	background-color: gray;
}
</style>
</head>
<body onload="getOperationLogs()">
	<center>
		<h3>Cell Operations History</h3>
	</center>
	<br>
	<p id="showData"></p>
	<input align=right type=button name=close value="Close"
		onclick="window.close();">
</body>

<script>
       function getOperationLogs() {
            var xmlhttp = new XMLHttpRequest();
            xmlhttp.onreadystatechange = function() {
                if (this.readyState == 4 && this.status == 200) {
                    var logs = JSON.parse(this.responseText);
                    var myJSON = JSON.stringify(logs);
                    //alert(myJSON);
                    drawTable(logs);
                }
            };
            xmlhttp.open("GET", "/ransim/api/GetOperationLog",
                true);
            xmlhttp.send();
        }

    function drawTable(data) {
        // EXTRACT VALUE FOR HTML HEADER. 
        var col = [];
        for (var i = 0; i < data.length; i++) {
            for (var key in data[i]) {
                if (col.indexOf(key) === -1) {
                    col.push(key);
                }
            }
        }

        // CREATE DYNAMIC TABLE.
        var table = document.createElement("table");

        // CREATE HTML TABLE HEADER ROW USING THE EXTRACTED HEADERS ABOVE.

        var tr = table.insertRow(-1);                   // TABLE ROW.

	//for (var i = 0; i < 4; i++) {
        for (var i = 0; i < col.length; i++) {
        
	    if (i == 0) continue;
            var th = document.createElement("th");      // TABLE HEADER.
            th.innerHTML = col[i].toUpperCase();
            tr.appendChild(th);
        }

        // ADD JSON DATA TO THE TABLE AS ROWS.
        for (var i = 0; i < data.length; i++) {

            tr = table.insertRow(-1);
	    //manipulate rows 
      	    if(i % 2 == 0){ 
              tr.className = "even"; 
            }else{ 
              tr.className = "odd"; 
      	    }       

	    //for (var j = 0; j < 4; j++) {
            for (var j = 0; j < col.length; j++) {
            
		if (j == 0) continue; 
                var tabCell = tr.insertCell(-1);
                if (j==1) {
		var d = new Date(data[i][col[j]] + 19800000);
                   tabCell.innerHTML = d;
                } else {
                   tabCell.innerHTML = data[i][col[j]];
                }
            }
        }
 // FINALLY ADD THE NEWLY CREATED TABLE WITH JSON DATA TO A CONTAINER.
        var divContainer = document.getElementById("showData");
        divContainer.innerHTML = "";
        divContainer.appendChild(table);
    }
</script>
</html>