This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/view/pages/race/live-results.php

26 lines
504 B
PHP
Raw Normal View History

2022-03-21 11:28:18 +00:00
<h1>Live resultater</h1>
2022-03-23 13:03:33 +00:00
<br>
<table>
<tr>
<th>Some shit</th>
<th>Some shit</th>
</tr>
</table>
2022-03-21 11:28:18 +00:00
2022-03-23 09:08:36 +00:00
<script>
var source = new EventSource('stream.php');
2022-03-21 11:28:18 +00:00
2022-03-23 13:03:33 +00:00
source.addEventListener('message', function(e)
{
rows = JSON.parse(e.data);
console.log(rows);
// update table
root = document.getElementById("root");
rows.forEach(row => root.insertAdjacentHTML(
'beforebegin',
`<tr><td>${row.teamId}</td><td>${row.id}</td></tr>`
));
2022-03-23 09:08:36 +00:00
}, false);
2022-03-21 11:28:18 +00:00
</script>