mirror of
https://github.com/ssyyhhrr/stewardle.git
synced 2025-11-08 10:33:46 -05:00
254 lines
11 KiB
JavaScript
254 lines
11 KiB
JavaScript
function autocomplete(inp, arr) {
|
|
/*the autocomplete function takes two arguments,
|
|
the text field element and an array of possible autocompleted values:*/
|
|
var currentFocus;
|
|
/*execute a function when someone writes in the text field:*/
|
|
inp.addEventListener("input", function (e) {
|
|
var a, b, i, val = this.value;
|
|
/*close any already open lists of autocompleted values*/
|
|
closeAllLists();
|
|
if (!val) { return false; }
|
|
currentFocus = -1;
|
|
/*create a DIV element that will contain the items (values):*/
|
|
a = document.createElement("DIV");
|
|
a.setAttribute("id", this.id + "autocomplete-list");
|
|
a.setAttribute("class", "autocomplete-items");
|
|
/*append the DIV element as a child of the autocomplete container:*/
|
|
this.parentNode.appendChild(a);
|
|
/*for each item in the array...*/
|
|
for (i = 0; i < arr.length; i++) {
|
|
let s1 = arr[i].split(" ")[0]
|
|
let s2 = arr[i].split(" ")[1]
|
|
/*check if the item starts with the same letters as the text field value:*/
|
|
if (s1.substr(0, val.length).toUpperCase() == val.toUpperCase() || s2.substr(0, val.length).toUpperCase() == val.toUpperCase() || arr[i].substr(0, val.length).toUpperCase() == val.toUpperCase()) {
|
|
let first = s1.substr(0, val.length).toUpperCase() == val.toUpperCase()
|
|
let second = s2.substr(0, val.length).toUpperCase() == val.toUpperCase()
|
|
/*create a DIV element for each matching element:*/
|
|
b = document.createElement("DIV");
|
|
/*make the matching letters bold:*/
|
|
if (first) {
|
|
b.innerHTML = "<strong>" + s1.substr(0, val.length) + "</strong>" + s1.substr(val.length) + " " + s2;
|
|
} else if (second) {
|
|
b.innerHTML = s1 + " <strong>" + s2.substr(0, val.length) + "</strong>";
|
|
b.innerHTML += s2.substr(val.length);
|
|
} else {
|
|
b.innerHTML = "<strong>" + arr[i].substr(0, val.length) + "</strong>";
|
|
b.innerHTML += arr[i].substr(val.length);
|
|
}
|
|
/*insert a input field that will hold the current array item's value:*/
|
|
b.innerHTML += "<input type='hidden' value='" + arr[i] + "'>";
|
|
/*execute a function when someone clicks on the item value (DIV element):*/
|
|
b.addEventListener("click", function (e) {
|
|
/*insert the value for the autocomplete text field:*/
|
|
inp.value = this.getElementsByTagName("input")[0].value;
|
|
/*close the list of autocompleted values,
|
|
(or any other open lists of autocompleted values:*/
|
|
closeAllLists();
|
|
});
|
|
a.appendChild(b);
|
|
}
|
|
}
|
|
});
|
|
/*execute a function presses a key on the keyboard:*/
|
|
inp.addEventListener("keydown", function (e) {
|
|
var x = document.getElementById(this.id + "autocomplete-list");
|
|
if (x) x = x.getElementsByTagName("div");
|
|
if (e.keyCode == 40) {
|
|
/*If the arrow DOWN key is pressed,
|
|
increase the currentFocus variable:*/
|
|
currentFocus++;
|
|
/*and and make the current item more visible:*/
|
|
addActive(x);
|
|
} else if (e.keyCode == 38) { //up
|
|
/*If the arrow UP key is pressed,
|
|
decrease the currentFocus variable:*/
|
|
currentFocus--;
|
|
/*and and make the current item more visible:*/
|
|
addActive(x);
|
|
} else if (e.keyCode == 13) {
|
|
/*If the ENTER key is pressed, prevent the form from being submitted,*/
|
|
e.preventDefault();
|
|
if (currentFocus > -1) {
|
|
/*and simulate a click on the "active" item:*/
|
|
if (x) x[currentFocus].click();
|
|
}
|
|
}
|
|
});
|
|
function addActive(x) {
|
|
/*a function to classify an item as "active":*/
|
|
if (!x) return false;
|
|
/*start by removing the "active" class on all items:*/
|
|
removeActive(x);
|
|
if (currentFocus >= x.length) currentFocus = 0;
|
|
if (currentFocus < 0) currentFocus = (x.length - 1);
|
|
/*add class "autocomplete-active":*/
|
|
x[currentFocus].classList.add("autocomplete-active");
|
|
}
|
|
function removeActive(x) {
|
|
/*a function to remove the "active" class from all autocomplete items:*/
|
|
for (var i = 0; i < x.length; i++) {
|
|
x[i].classList.remove("autocomplete-active");
|
|
}
|
|
}
|
|
function closeAllLists(elmnt) {
|
|
/*close all autocomplete lists in the document,
|
|
except the one passed as an argument:*/
|
|
var x = document.getElementsByClassName("autocomplete-items");
|
|
for (var i = 0; i < x.length; i++) {
|
|
if (elmnt != x[i] && elmnt != inp) {
|
|
x[i].parentNode.removeChild(x[i]);
|
|
}
|
|
}
|
|
}
|
|
/*execute a function when someone clicks in the document:*/
|
|
document.addEventListener("click", function (e) {
|
|
closeAllLists(e.target);
|
|
});
|
|
}
|
|
|
|
let driversObj = {}
|
|
let drivers = []
|
|
|
|
fetch(`${window.location.href}/drivers.json`).then(res => {
|
|
res.json().then(result => {
|
|
driversObj = result
|
|
Object.entries(result).forEach(driver => {
|
|
drivers.push(driver[1].firstName + " " + driver[1].lastName)
|
|
})
|
|
autocomplete(document.getElementById("myInput"), drivers);
|
|
})
|
|
})
|
|
|
|
document.addEventListener("keyup", async function (event) {
|
|
if (event.keyCode === 13) {
|
|
let value = document.getElementById("myInput").value
|
|
if (value != "") {
|
|
let top = 0
|
|
let comparison = 0
|
|
let guess
|
|
drivers.forEach(driver => {
|
|
comparison = similarity(value, driver)
|
|
if (comparison > top) {
|
|
top = comparison
|
|
guess = driver
|
|
}
|
|
})
|
|
|
|
if (top > 0.5) {
|
|
document.getElementById("myInput").value = ""
|
|
let obj = {}
|
|
Object.entries(driversObj).forEach(driver => {
|
|
if (driver[1].firstName + " " + driver[1].lastName == guess) obj = driver[1]
|
|
})
|
|
let frames = Array.from(document.getElementsByClassName("frame")).filter(x => x.childNodes.length == 0)
|
|
frames[0].innerHTML = `<div class="guess text">${obj.code}</div>`
|
|
frames[1].innerHTML = `<img class="flag" src="./flags/${Object.values(obj)[0 + 3]}.svg">`
|
|
frames[2].innerHTML = `<img class="team" src="./logos/${Object.values(obj)[1 + 3]}.webp">`
|
|
for (let i = 2; i < 6; i++) {
|
|
frames[i + 1].innerHTML = `<div class="guess text"> ${Object.values(obj)[i + 3]}</div>`
|
|
}
|
|
let answer = await fetch(`${window.location.href}driver?driver=${obj.firstName + " " + obj.lastName}`)
|
|
let json = await answer.json()
|
|
let won = true
|
|
Object.values(json).forEach(async (answer, index) => {
|
|
if (answer != 1) won = false
|
|
setTimeout(() => {
|
|
if (answer == 0) frames[index + 1].classList.add("down")
|
|
else if (answer == 1) frames[index + 1].classList.add("correct")
|
|
else if (answer == 2) frames[index + 1].classList.add("up")
|
|
else if (answer == 3) frames[index + 1].classList.add("incorrect")
|
|
}, index * 250)
|
|
})
|
|
if (won || Array.from(document.getElementsByClassName("frame")).filter(x => x.childNodes.length == 0).length == 0) {
|
|
let data = await fetch(`${window.location.href}winner`)
|
|
let winner = await data.json()
|
|
let gg = document.getElementsByClassName("input")[0]
|
|
gg.classList.remove("input")
|
|
gg.classList.add("gg")
|
|
let greeting = won ? "Congratulations!" : "Bwoah."
|
|
gg.innerHTML = `<h2>${greeting}</h2><div class="p"><h5>The driver was</h5><h4> ${winner.winner}!</h4></div><div class="p timer"><h3>Next Stewardle</h3></div><div class="p"><h4 id="time">00:00:00:000</h4></div>`
|
|
// Set the date we're counting down to
|
|
let d = new Date()
|
|
var countDownDate = new Date(Date.UTC(d.getUTCFullYear(), d.getUTCMonth(), d.getUTCDate() + 1, 0, 0, 0));
|
|
|
|
// Update the count down every 1 second
|
|
var x = setInterval(function () {
|
|
|
|
// Get today's date and time
|
|
var now = new Date().getTime();
|
|
|
|
// Find the distance between now and the count down date
|
|
var distance = countDownDate - now;
|
|
|
|
// Time calculations for days, hours, minutes and seconds
|
|
const millisecond = 1
|
|
const second = 1000
|
|
const minute = second * 60
|
|
const hour = minute * 60
|
|
const day = hour * 24;
|
|
let hours = Math.trunc((distance % day) / hour)
|
|
let minutes = Math.trunc((distance % hour) / minute)
|
|
let seconds = Math.trunc((distance % minute) / second)
|
|
let milliseconds = secondsLeft = Math.trunc((distance % second) / millisecond)
|
|
|
|
// Display the result in the element with id="demo"
|
|
document.getElementById("time").innerHTML = ("0" + hours).slice(-2) + ":"
|
|
+ ("0" + minutes).slice(-2) + ":" + ("0" + seconds).slice(-2) + ":" + ("00" + milliseconds).slice(-3);
|
|
|
|
// If the count down is finished, write some text
|
|
if (distance < 0) {
|
|
clearInterval(x);
|
|
document.getElementById("time").innerHTML = "EXPIRED";
|
|
}
|
|
}, 1);
|
|
}
|
|
}
|
|
else {
|
|
let element = document.getElementById("myInput")
|
|
element.style.removeProperty("animation")
|
|
setTimeout(() => element.style.animation = "shake .5s", 100)
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
function similarity(s1, s2) {
|
|
var longer = s1;
|
|
var shorter = s2;
|
|
if (s1.length < s2.length) {
|
|
longer = s2;
|
|
shorter = s1;
|
|
}
|
|
var longerLength = longer.length;
|
|
if (longerLength == 0) {
|
|
return 1.0;
|
|
}
|
|
return (longerLength - editDistance(longer, shorter)) / parseFloat(longerLength);
|
|
}
|
|
|
|
function editDistance(s1, s2) {
|
|
s1 = s1.toLowerCase();
|
|
s2 = s2.toLowerCase();
|
|
|
|
var costs = new Array();
|
|
for (var i = 0; i <= s1.length; i++) {
|
|
var lastValue = i;
|
|
for (var j = 0; j <= s2.length; j++) {
|
|
if (i == 0)
|
|
costs[j] = j;
|
|
else {
|
|
if (j > 0) {
|
|
var newValue = costs[j - 1];
|
|
if (s1.charAt(i - 1) != s2.charAt(j - 1))
|
|
newValue = Math.min(Math.min(newValue, lastValue),
|
|
costs[j]) + 1;
|
|
costs[j - 1] = lastValue;
|
|
lastValue = newValue;
|
|
}
|
|
}
|
|
}
|
|
if (i > 0)
|
|
costs[s2.length] = lastValue;
|
|
}
|
|
return costs[s2.length];
|
|
} |