-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (58 loc) · 2.62 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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css">
<title>Mitarbeiter Stempelliste</title>
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container">
<a href="" class="navbar-brand">
<i class="fas fa-users"></i> Mitarbeiter Stempelliste
</a>
<span class="navbar-text">Aufruf der PROFFIX REST API auf einer öffentlichen Webseite</span>
</div>
</nav>
<div class="container">
<table class="table">
<thead>
<tr>
<th scope="col" style="width: 80px">Stempelstatus</th>
<th scope="col">Name</th>
</tr>
</thead>
<tbody id="tablebody">
<tr>
<td colspan="2" class="text-muted text-center"><i class="fas fa-circle-notch fa-spin"></i> Daten werden geladen...</td>
</tr>
</tbody>
</table>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
$(document).ready(function() {
// Mitarbeiterliste laden
$.getJSON("/api/Mitarbeiterliste", function(mitarbeiterliste) {
$("#tablebody").empty(); // Tabelle leeren
// Mitarbeiterliste in Tabelle abfüllen
if(mitarbeiterliste.forEach) {
mitarbeiterliste.forEach(function(value) {
if(value.MitarbeiterNr && value.Name) {
$("#tablebody").append('<tr><td id="manr' + value.MitarbeiterNr + '" class="text-center"><i class="fas fa-circle-notch fa-spin text-muted"></i></td><td>' + value.Name + '</td></tr>')
// Stempelstatus pro Mitarbeiter laden
$.getJSON("/api/MitarbeiterStempelstatus/" + value.MitarbeiterNr, function(status) {
if(status.Eingestempelt != undefined) {
$("#manr" + value.MitarbeiterNr).empty().html('<i class="fas fa-user-' + ((status.Eingestempelt) ? 'check text-success' : 'times text-danger') + '"></i>');
}
});
}
});
}
});
});
</script>
</body>
</html>