302 lines
16 KiB
JavaScript
302 lines
16 KiB
JavaScript
let wss = "ws://" + window.location.hostname + ":3001" // Build socketio endpoint from window.location
|
|
const socket = io(wss); // Connect to socketio server
|
|
|
|
// ######################################################################################################################################################
|
|
// Websockets event handler
|
|
// ######################################################################################################################################################
|
|
|
|
socket.on('connected', (message) => { // Once client is connected to websocket
|
|
console.log("Connected");
|
|
});
|
|
|
|
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
|
|
});
|
|
|
|
socket.on('score', (message) => {
|
|
console.log(message); // Log score in client console
|
|
document.getElementById("score").innerHTML = message; // Display score in corresponding html Element
|
|
});
|
|
|
|
// ######################################################################################################################################################
|
|
// General functions
|
|
// ######################################################################################################################################################
|
|
|
|
// Update DOM timer elements from passed values
|
|
function updateTimerFrontend(values) {
|
|
console.log(values); // Print received data
|
|
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;
|
|
}
|
|
}
|
|
|
|
// Update DOM score elements from passed values
|
|
function updateScoreFrontend(values) {
|
|
console.log(values); // Print received data
|
|
document.getElementById("scoreSwitchEnable").checked = values.enabled; // Set switch status to received score enabled value
|
|
document.getElementById("score").innerHTML = values.print; // Set score on admin interface
|
|
|
|
// Input current Team values into form inputs
|
|
document.getElementById("teamAname").value = values.teamA.name;
|
|
document.getElementById("teamAname2").value = values.teamA.name2;
|
|
document.getElementById("teamAisSpielgemeinschaft").checked = values.teamA.isSpielgemeinschaft;
|
|
|
|
document.getElementById("teamBname").value = values.teamB.name;
|
|
document.getElementById("teamBname2").value = values.teamB.name2;
|
|
document.getElementById("teamBisSpielgemeinschaft").checked = values.teamB.isSpielgemeinschaft;
|
|
}
|
|
|
|
// Update DOM for all db contents with the passed values
|
|
function updateDbFrontend(values) {
|
|
console.log(values);
|
|
|
|
let teamAnameDropdown = document.getElementById("teamAnameDropdown"); // Dropdown for TeamA name
|
|
let teamAname2Dropdown = document.getElementById("teamAname2Dropdown"); // Dropdown for TeamA name2
|
|
let teamBnameDropdown = document.getElementById("teamBnameDropdown"); // Dropdown for TeamB name
|
|
let teamBname2Dropdown = document.getElementById("teamBname2Dropdown"); // Dropdown for TeamB name2
|
|
|
|
// Clear innerHTML of dropdowns
|
|
teamAnameDropdown.innerHTML = "";
|
|
teamAname2Dropdown.innerHTML = "";
|
|
teamBnameDropdown.innerHTML = "";
|
|
teamBname2Dropdown.innerHTML = "";
|
|
|
|
let selectDelete = document.getElementById("dbTeamToDelete"); // Select for team deletion from db
|
|
selectDelete.innerHTML = "" // Clears all existing options from select
|
|
|
|
// <li><a class="dropdown-item" onclick="scoreInsertChosenName">Action</a></li>
|
|
|
|
for(team of values.teams) {
|
|
// Create custom Dropdowns with different function arguments for team configuration
|
|
var li = document.createElement("li");
|
|
li.innerHTML = `<a class="dropdown-item" onclick="scoreInsertChosenName('teamAname','` + team +`')"> `+ team +`</a>`;
|
|
teamAnameDropdown.appendChild(li);
|
|
var li = document.createElement("li");
|
|
li.innerHTML = `<a class="dropdown-item" onclick="scoreInsertChosenName('teamAname2','` + team +`')"> `+ team +`</a>`;
|
|
teamAname2Dropdown.appendChild(li);
|
|
var li = document.createElement("li");
|
|
li.innerHTML = `<a class="dropdown-item" onclick="scoreInsertChosenName('teamBname','` + team +`')"> `+ team +`</a>`;
|
|
teamBnameDropdown.appendChild(li);
|
|
var li = document.createElement("li");
|
|
li.innerHTML = `<a class="dropdown-item" onclick="scoreInsertChosenName('teamBname2','` + team +`')"> `+ team +`</a>`;
|
|
teamBname2Dropdown.appendChild(li);
|
|
|
|
// Create select options for deletion in debugwindow
|
|
let opt = document.createElement("option");
|
|
opt.value = team;
|
|
opt.innerHTML = team;
|
|
selectDelete.appendChild(opt);
|
|
}
|
|
}
|
|
|
|
// Inserts the passed name into the passed name text input
|
|
async function scoreInsertChosenName(field, name) {
|
|
switch(field) {
|
|
case 'teamAname':
|
|
document.getElementById("teamAname").value = name;
|
|
break;
|
|
case 'teamAname2':
|
|
document.getElementById("teamAname2").value = name;
|
|
break;
|
|
case 'teamBname':
|
|
document.getElementById("teamBname").value = name;
|
|
break;
|
|
case 'teamBname2':
|
|
document.getElementById("teamBname2").value = name;
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Initial update gets called whenever page has been loaded
|
|
async function initialUpdate() {
|
|
timerGetValues(); // Request new values for timer
|
|
scoreGetValues(); // Request new values for score
|
|
dbGetValues(); // Request new values for db contents
|
|
}
|
|
|
|
// Request monitor refresh for index frontend
|
|
async function refreshMonitor() {
|
|
const response = await fetch("/admin/refreshMonitor"); // Call API Endpoint /admin/timerStart
|
|
}
|
|
|
|
async function openBrowser() {
|
|
const response = await fetch("/admin/openBrowser"); // Call API Endpoint /admin/openBrowser
|
|
}
|
|
|
|
async function killBrowser() {
|
|
const response = await fetch("/admin/killBrowser"); // Call API Endpoint /admin/killBrowser
|
|
}
|
|
|
|
// ######################################################################################################################################################
|
|
// Timerfunctions
|
|
// ######################################################################################################################################################
|
|
|
|
// Request important timer values
|
|
async function timerGetValues() {
|
|
const response = await fetch("/admin/timerGetValues"); // Call API Endpoint /admin/timerGetValues
|
|
const data = await response.json(); // Wait for asynchronous transfer to complete
|
|
updateTimerFrontend(data); // Update admin frontend
|
|
}
|
|
|
|
// Request to start the timer
|
|
async function timerStart() {
|
|
const response = await fetch("/admin/timerStart"); // Call API Endpoint /admin/timerStart
|
|
if(response.status == 200) { // If request successfull
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete
|
|
updateTimerFrontend(data); // Update admin frontend
|
|
} else { // Timer already finished
|
|
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
|
|
updateTimerFrontend(data); // Update admin frontend
|
|
} else { // Timer already paused
|
|
const timerPauseErrorToast = bootstrap.Toast.getOrCreateInstance(document.getElementById("timerPauseErrorToast")); // Create toast instance byId timerPauseErrorToast
|
|
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
|
|
updateTimerFrontend(data); // Update admin frontend
|
|
}
|
|
|
|
// 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
|
|
updateTimerFrontend(data); // Update admin frontend
|
|
}
|
|
|
|
// ######################################################################################################################################################
|
|
// Scoreboardfunctions
|
|
// ######################################################################################################################################################
|
|
|
|
// Request important values for score
|
|
async function scoreGetValues() {
|
|
const response = await fetch("/admin/scoreGetValues"); // Call API Endpoint /admin/scoreGetValues
|
|
const data = await response.json(); // Wait for asynchronous transfer to complete
|
|
updateScoreFrontend(data); // Update admin frontend
|
|
}
|
|
|
|
// Toggle index page to also show scoreboard
|
|
async function scoreToggle() {
|
|
const response = await fetch("/admin/scoreToggle"); // Call API Endpoint /admin/scoreToggle
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete
|
|
updateScoreFrontend(data); // Update admin frontend
|
|
refreshMonitor(); // Refresh main monitor to display new frontend
|
|
}
|
|
|
|
// Alter the score of passed team in the specified direction
|
|
async function scoreAlterScore(team, dir) {
|
|
const response = await fetch("/admin/scoreAlterScore", { // Call API Endpoint /admin/scoreAlterScore with the teamname to alter the score in the specified direction
|
|
method: 'POST',
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({team: team, dir: dir})
|
|
});
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete
|
|
updateScoreFrontend(data); // Update admin frontend
|
|
}
|
|
|
|
// Switch sides
|
|
async function scoreToggleSideswitch() {
|
|
const response = await fetch("/admin/scoreToggleSideswitch");// Call API Endpoint /admin/scoreSwitch
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete
|
|
updateScoreFrontend(data); // Update admin frontend
|
|
}
|
|
|
|
// Clear score
|
|
async function scoreClearScore() {
|
|
const response = await fetch("/admin/scoreClearScore"); // Call API Endpoint /admin/scoreClearScore
|
|
const data = await response.json(); // Wait for asynchronous transfer to complete
|
|
updateScoreFrontend(data); // Update admin frontend
|
|
}
|
|
|
|
// Configure Teams
|
|
async function scoreConfigTeams() {
|
|
teamA = {
|
|
name: document.getElementById("teamAname").value,
|
|
name2: document.getElementById("teamAname2").value,
|
|
isSpielgemeinschaft: document.getElementById("teamAisSpielgemeinschaft").checked
|
|
};
|
|
teamB = {
|
|
name: document.getElementById("teamBname").value,
|
|
name2: document.getElementById("teamBname2").value,
|
|
isSpielgemeinschaft: document.getElementById("teamBisSpielgemeinschaft").checked
|
|
}
|
|
console.log(teamA, teamB)
|
|
|
|
const response = await fetch("/admin/scoreConfigTeams", { // Call API Endpoint /admin/scoreAlterScore with the teamname to alter the score in the specified direction
|
|
method: 'POST',
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({teamA: teamA, teamB: teamB})
|
|
});
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete
|
|
updateScoreFrontend(data); // Update admin frontend
|
|
refreshMonitor();
|
|
}
|
|
|
|
// ######################################################################################################################################################
|
|
// DB functions
|
|
// ######################################################################################################################################################
|
|
|
|
// Request important values for db contents
|
|
async function dbGetValues() {
|
|
const response = await fetch("/admin/dbGetValues"); // Call API Endpoint /admin/dbGetValues
|
|
const data = await response.json(); // Wait for asynchronous transfer to complete
|
|
updateDbFrontend(data); // Update admin frontend
|
|
}
|
|
|
|
// Add team to DB
|
|
async function dbAddTeam() {
|
|
const response = await fetch("/admin/dbAddTeam", { // Call API Endpoint /admin/scoreAlterScore with the teamname to alter the score in the specified direction
|
|
method: 'POST',
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({teamName: document.getElementById("dbTeamToAdd").value})
|
|
});
|
|
document.getElementById("dbTeamToAdd").value = ""; // Empty the text field after sending
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete
|
|
updateDbFrontend(data);
|
|
}
|
|
|
|
// Delete team from DB
|
|
async function dbDeleteTeam() {
|
|
let teamName = document.getElementById("dbTeamToDelete").value;
|
|
const response = await fetch("/admin/dbDeleteTeam", { // Call API Endpoint /admin/scoreAlterScore with the teamname to alter the score in the specified direction
|
|
method: 'POST',
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({teamName: teamName})
|
|
});
|
|
const data = await response.json(); // Wait for asyncronous transfer to complete
|
|
updateDbFrontend(data);
|
|
} |