-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
253 lines (226 loc) · 8.92 KB
/
index.html
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>VoteManagerManager</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.container-fluid {
max-height: 100%;
}
#right iframe {
width: 100%;
height: 100%;
}
textarea {
width: 100%;
}
</style>
</head>
<body>
<div class="container-fluid">
<h1>VoteManagerManager
<button class="btn btn-warning mb-2" id="update">Update</button>
</h1>
<div class="row">
<div class="col-6">
<label for="yellowUrls">Yellow urls</label>
<textarea id="yellowUrls">http://localhost:4567/status</textarea>
</div>
<div class="col-6">
<label for="pinkUrls">Pink urls</label>
<textarea id="pinkUrls">http://192.168.1.12:4567/status</textarea>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="col-12 pb-3 pt-3" id="ergebnisseYellow"></div>
</div>
<div class="col-6">
<div class="col-12 pb-3 pt-3" id="ergebnissePink"></div>
</div>
</div>
<div class="row">
<div class="col-6" id="issuesYellow"></div>
<div class="col-6" id="issuesPink"></div>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/classes.js"></script>
<script type="text/javascript">
$.all = function (promises) {
if (!Array.isArray(promises)) {
throw new Error("$.all() must be passed an array of promises");
}
return $.when.apply($, promises).then(function () {
// if single argument was expanded into multiple arguments, then put it back into an array
// for consistency
if (promises.length === 1 && arguments.length > 1) {
// put arguments into an array
return [Array.prototype.slice.call(arguments, 0)];
} else {
return Array.prototype.slice.call(arguments, 0);
}
})
};
function updateStatus(yellowWahl, pinkWahl) {
$('#ergebnisseYellow').empty();
$('#ergebnissePink').empty();
$('#issuesYellow').empty();
$('#issuesPink').empty();
for (let urne of yellowWahl.urnen) {
let yellowErgebnis = yellowWahl.getErgebnisForUrne(urne);
let pinkErgebnis = pinkWahl.getErgebnisForUrne(urne);
const comparisonResult = compareErgebnis(yellowErgebnis, pinkErgebnis, yellowWahl);
$('#ergebnisseYellow').append(`<span class='badge badge-${comparisonResult.colour}'>${urne.nummer}${comparisonResult.indicator}</span> `);
$('#ergebnissePink').append(`<span class='badge badge-${comparisonResult.colour}'>${urne.nummer}${comparisonResult.indicator}</span> `);
if (comparisonResult.complaints.length > 0) {
$('#issuesYellow').append('<div class="col-12">' +
cardErgebnis(urne, yellowErgebnis, pinkErgebnis, yellowWahl) +
'</div>');
$('#issuesPink').append('<div class="col-12">' +
cardErgebnis(urne, pinkErgebnis, yellowErgebnis, pinkWahl) +
'</div>');
}
}
$('.card-header').click(function () {
$(this).parent().find('.card-body').toggle();
});
}
function cardErgebnis(urne, ergebnis, other, wahl) {
let color = 'secondary';
let cardBody = '';
if (ergebnis !== null && other === null) {
color = 'primary';
}
if (ergebnis !== null && other !== null) {
let compareResult = compareErgebnis(ergebnis, other, wahl);
color = compareResult.colour;
cardBody = getCardBody(compareResult);
}
return '<div class="card bg-' + color + ' mb-3">\n' +
' <div class="card-header"><span class="badge badge-dark">' + urne.nummer + '</span> ' + urne.name + '</div>\n' +
cardBody +
'</div>';
}
function getCardBody(compareResult) {
if (compareResult.complaints.length === 0) {
return '';
} else {
return ' <div class="card-body">\n' +
' <pre>' + compareResult.complaints.join('\n') + '</pre>\n' +
' </div>';
}
}
function compareErgebnis(ergebnis, other, wahl) {
let result = {colour: 'success', complaints: [], indicator: ' ✓'};
if(ergebnis === null || other === null){
result.colour = 'secondary';
result.indicator = '';
return result;
}
if (ergebnis.stimmenGesamt !== other.stimmenGesamt) {
result.complaints.push("stimmenGesamt: " + ergebnis.stimmenGesamt);
}
if (ergebnis.stimmenGueltig !== other.stimmenGueltig) {
result.complaints.push("stimmenGueltig: " + ergebnis.stimmenGueltig);
}
if (ergebnis.stimmenUngueltig !== other.stimmenUngueltig) {
result.complaints.push("stimmenUngueltig: " + ergebnis.stimmenUngueltig);
}
if (ergebnis.stimmenEnthaltung !== other.stimmenEnthaltung) {
result.complaints.push("StimmenEnthaltung: " + ergebnis.stimmenEnthaltung);
}
ergebnis.sortListenergebnisse(wahl);
for (let listenergebnis of ergebnis.listenergebnisse) {
listenergebnis.sortKandidatenergebnisse(wahl);
}
other.sortListenergebnisse(wahl);
for (let listenergebnis of other.listenergebnisse) {
listenergebnis.sortKandidatenergebnisse(wahl);
}
for (let i = 0; i < ergebnis.listenergebnisse.length; i++) {
compareListenergebnis(ergebnis.listenergebnisse[i], other.listenergebnisse[i], result, wahl);
}
if (result.complaints.length !== 0) {
result.colour = 'warning';
result.indicator = ' ⨯'
}
return result;
}
function compareListenergebnis(listenergebnis, other, result, wahl) {
if (listenergebnis.gesamtstimmen !== other.gesamtstimmen) {
result.complaints.push(listenergebnis.liste + ' : Gesamtstimmen : ' + listenergebnis.gesamtstimmen);
}
if (listenergebnis.listenstimmen !== other.listenstimmen) {
result.complaints.push(listenergebnis.liste + ' : Listenstimmen : ' + listenergebnis.listenstimmen);
}
for (let i = 0; i < listenergebnis.kandidatenergebnisse.length; i++) {
let kandidat = listenergebnis.kandidatenergebnisse[i];
let otherKandidat = other.kandidatenergebnisse[i];
if (kandidat.stimmen !== otherKandidat.stimmen) {
let realKandidat = wahl.getKandidat(kandidat.kandidat, listenergebnis.liste);
result.complaints.push(listenergebnis.liste + ' : ' + realKandidat.nummer + ' - ' + kandidat.kandidat + ' : ' + kandidat.stimmen);
}
}
}
function mergeWahlen(wahlen) {
console.log('Merging wahlen: ', JSON.parse(JSON.stringify(wahlen)));
if (wahlen.length < 1) {
return null;
}
let wahl = wahlen[0];
for (let i = 1; i < wahlen.length; i++) {
wahl.merge(wahlen[i]);
}
console.log('Merged Wahl: ', wahl);
return wahl;
}
$(function () {
$('#test').click(function () {
console.log("LUL");
$.get('http://localhost:4567/status', function (data) {
console.log(data);
});
});
$('#update').click(function () {
let yellowUrls = getUrls('#yellowUrls');
let pinkUrls = getUrls('#pinkUrls');
let urls = yellowUrls.concat(pinkUrls);
let promises = urls.map(function (url) {
return $.get(url);
});
$.all(promises).then(function (results) {
let yellowWahlen = [];
let pinkWahlen = [];
for (let i = 0; i < yellowUrls.length; i++) {
yellowWahlen.push(Wahl.fromXml(results[i][0]));
}
console.log(yellowWahlen);
for (let i = yellowUrls.length; i < yellowUrls.length + pinkUrls.length; i++) {
pinkWahlen.push(Wahl.fromXml(results[i][0]));
}
console.log(pinkWahlen);
let yellowWahl = mergeWahlen(yellowWahlen);
console.log(yellowWahl);
let pinkWahl = mergeWahlen(pinkWahlen);
console.log(pinkWahl);
updateStatus(yellowWahl, pinkWahl);
});
});
});
function getUrls(id) {
let items = $(id).val().split('\n');
for (let i = 0; i < items.length; i++) {
items[i] = items[i].trim();
}
return items;
}
</script>
</body>
</html>