68 lines
2.3 KiB
Handlebars
68 lines
2.3 KiB
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Traque -- {{name}} | Client conscrit</title>
|
|
|
|
<!-- LEAFLET INCLUDE -->
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.8.0/dist/leaflet.css"
|
|
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
|
|
crossorigin=""/>
|
|
<script src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js"
|
|
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
|
|
crossorigin=""></script>
|
|
|
|
<style type="text/css">
|
|
#map { height: 600px; }
|
|
#code-field {
|
|
position: fixed;
|
|
bottom: 0px;
|
|
z-index: 10000;
|
|
background-color: white;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
|
|
<script type="text/javascript" src="/utils.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div><br/>
|
|
|
|
<div id="code-field"><span id="nb-codes"></span><span id="codes"></span></div>
|
|
<div id="thanks">
|
|
<a href="https://dgnum.eu"><img src="/dgnum-logo.png" height=50px /></a><br/>
|
|
<span style="font-size: 0.8em">Merci à la <a href="https://dgnum.eu">Délégation Générale NUMérique de l'ENS</a>, qui héberge ce site.</span>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
id = "{{id}}";
|
|
name = "{{name}}";
|
|
dbg = {{dbg}};
|
|
|
|
setup_map();
|
|
setup_map_self();
|
|
{{#if gpslog}}setup_geoLoc();{{/if}}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// EVENT LISTENNING
|
|
|
|
function self_state_hook(state){
|
|
var code_buttons = "";
|
|
if(state.Conscrit.invisibility_codes > 0)
|
|
code_buttons += `<button onclick="fetch('/track/{{id}}/vanish', { method: 'PUT' })">
|
|
Activer l'invisibilité
|
|
</button>`;
|
|
if(state.Conscrit.blur_codes > 0)
|
|
code_buttons += `<button onclick="fetch('/track/{{id}}/blur', { method: 'PUT' })">
|
|
Brouillage
|
|
</button>`;
|
|
document.getElementById(`codes`).innerHTML = code_buttons;
|
|
document.getElementById(`nb-codes`).innerHTML = state.Conscrit.invisibility_codes +
|
|
" code(s) d'invisibilité ";
|
|
};
|
|
|
|
setup_evtlisten_common();
|
|
</script>
|
|
</body>
|
|
</html>
|