98 lines
5.7 KiB
JavaScript
98 lines
5.7 KiB
JavaScript
let wss = "ws://" + window.location.hostname + ":3001" // Build socketio endpoint from window.location
|
|
const socket = io(wss); // Connect to socketio server
|
|
|
|
socket.on('connected', (message) => { // Once client is connected to websocket
|
|
console.log("Connected");
|
|
initialUpdate() // Request important values to update admin frontend
|
|
});
|
|
|
|
socket.on('timerDurationLeft', (message) => {
|
|
console.log(message) // Log durationLeft in client console
|
|
document.getElementById("durationLeft").innerHTML = message; // Display durationLeft in corresponding html Element
|
|
});
|
|
|
|
socket.on('timerEnded', (message) => {
|
|
initialUpdate(); // Update admin frontend to set correct buttonstatus
|
|
});
|
|
|
|
function updateFrontend(values) {
|
|
values.duration = moment.duration(values.duration) // Create moment object from ISO 8601 string
|
|
values.durationLeft = moment.duration(values.durationLeft) // Create moment object from ISO 8601 string
|
|
document.getElementById("durationLeft").innerHTML = values.print // Display durationLeft as prettyfied string
|
|
|
|
if(values.isPaused) { // Set button state depending on timer status
|
|
document.getElementById("timerStartBtn").disabled = false
|
|
document.getElementById("timerPauseBtn").disabled = true
|
|
} else {
|
|
document.getElementById("timerStartBtn").disabled = true
|
|
document.getElementById("timerPauseBtn").disabled = false
|
|
}
|
|
}
|
|
|
|
async function initialUpdate() {
|
|
// Request monitor refresh for index frontend
|
|
async function refreshMonitor() {
|
|
const response = await fetch("/admin/refreshMonitor"); // Call API Endpoint /admin/timerStart
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete and parse json (which got received by backend)
|
|
console.log("Send request to refresh the monitor");
|
|
}
|
|
|
|
// Timerfunctions
|
|
async function timerStart() {
|
|
const response = await fetch("/admin/timerStart"); // Call API Endpoint /admin/timerStart
|
|
if(response.status == 200) {
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete and parse json (which got received by backend)
|
|
console.log(data); // Print received data
|
|
updateFrontend(data); // Update admin frontend with received values
|
|
} else {
|
|
//console.log("Error, Timer bereits abgelaufen: ", response.status);
|
|
const timerStartErrorToast = bootstrap.Toast.getOrCreateInstance(document.getElementById("timerStartErrorToast")); // Create toast instance byId timerStartErrorToast
|
|
timerStartErrorToast.show(); // Show error toast
|
|
}
|
|
}
|
|
|
|
// Request to pause the timer
|
|
async function timerPause() {
|
|
const response = await fetch("/admin/timerPause"); // Call API Endpoint /admin/timerStart
|
|
if(response.status == 200) {
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete and parse json (which got received by backend)
|
|
console.log(data); // Print received data
|
|
updateFrontend(data); // Update admin frontend with received values
|
|
} else {
|
|
//console.log("Error, Timer bereits pausiert: ", response.status);
|
|
const timerPauseErrorToast = bootstrap.Toast.getOrCreateInstance(document.getElementById("timerPauseErrorToast")); // Create toast instance byId timerStartErrorToast
|
|
timerPauseErrorToast.show(); // Show error toast
|
|
}
|
|
}
|
|
|
|
// Request to reset the timer with the specified time
|
|
async function timerReset() {
|
|
let newDuration = document.getElementById("timerSelectDuration").value;
|
|
const response = await fetch("/admin/timerReset", { // Call API Endpoint /admin/timerStart with selected new duration in seconds
|
|
method: 'POST',
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({duration: newDuration})
|
|
});
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete and parse json (which got received by backend)
|
|
console.log(data); // Print received data
|
|
updateTimerFrontend(data); // Update admin frontend with received values
|
|
}
|
|
|
|
// Request to increase or decrease the timer depending on passed value in seconds
|
|
async function timerIncDec(value) {
|
|
const response = await fetch("/admin/timerIncDec", { // Call API Endpoint /admin/timerIncDec with value in seconds to increase or decrease the timer
|
|
method: 'POST',
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({value: value})
|
|
});
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete and parse json (which got received by backend)
|
|
console.log(data); // Print received data
|
|
updateTimerFrontend(data); // Update admin frontend with received values
|
|
}
|
|
|
|
// Scoreboardfunctions
|
|
async function scoreSwitch() {
|
|
const response = await fetch("/admin/scoreSwitch"); // Call API Endpoint /admin/timerStart
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete and parse json (which got received by backend)
|
|
console.log(data); // Print received data
|
|
} |