moth/theme/scoreboard.html

142 lines
3.6 KiB
HTML
Raw Normal View History

2018-09-18 18:22:03 -06:00
<!DOCTYPE html>
<html>
<head>
2018-09-18 21:29:05 -06:00
<title>Scoreboard</title>
2018-09-18 18:22:03 -06:00
<link rel="stylesheet" href="basic.css">
<meta name="viewport" content="width=device-width">
2019-10-25 16:53:40 -06:00
<script src="moth-pwa.js" type="text/javascript"></script>
2018-09-18 18:22:03 -06:00
<script>
function update(state) {
2019-11-04 09:28:35 -07:00
let element = document.getElementById("scoreboard")
let teamnames = state["teams"]
let pointslog = state["points"]
let highscore = {}
let teams = {}
// Every machine that's displaying the scoreboard helpfully stores the last 20 values of
// points.json for us, in case of catastrophe. Thanks, y'all!
//
// We have been doing some letiation on this "everybody backs up the server state" trick since 2009.
// We have needed it 0 times.
2019-11-04 09:28:35 -07:00
let pointshistory = JSON.parse(localStorage.getItem("pointshistory")) || []
if (pointshistory.length >= 20){
2019-11-04 09:28:35 -07:00
pointshistory.shift()
}
2019-11-04 09:28:35 -07:00
pointshistory.push(pointslog)
localStorage.setItem("pointshistory", JSON.stringify(pointshistory))
// Dole out points
for (let i in pointslog) {
2019-11-04 09:28:35 -07:00
let entry = pointslog[i]
let timestamp = entry[0]
let teamhash = entry[1]
let category = entry[2]
let points = entry[3]
2019-11-04 09:28:35 -07:00
let team = teams[teamhash] || {__hash__: teamhash}
// Add points to team's points for that category
2019-11-04 09:28:35 -07:00
team[category] = (team[category] || 0) + points
// Record highest score in a category
2019-11-04 09:28:35 -07:00
highscore[category] = Math.max(highscore[category] || 0, team[category])
2019-11-04 09:28:35 -07:00
teams[teamhash] = team
}
// Sort by team score
function teamScore(t) {
2019-11-04 09:28:35 -07:00
let score = 0
for (let category in highscore) {
2019-11-04 09:28:35 -07:00
score += (t[category] || 0) / highscore[category]
}
2019-11-04 09:28:35 -07:00
return score
}
function teamCompare(a, b) {
2019-11-04 09:28:35 -07:00
return teamScore(a) - teamScore(b)
}
// Figure out how to order each team on the scoreboard
2019-11-04 09:28:35 -07:00
let winners = []
for (let i in teams) {
2019-11-04 09:28:35 -07:00
winners.push(teams[i])
}
2019-11-04 09:28:35 -07:00
winners.sort(teamCompare)
winners.reverse()
// Clear out the element we're about to populate
2019-11-04 09:28:35 -07:00
Array.from(element.childNodes).map(e => e.remove())
2019-11-04 09:28:35 -07:00
let maxWidth = 100 / Object.keys(highscore).length
for (let i in winners) {
2019-11-04 09:28:35 -07:00
let team = winners[i]
let row = document.createElement("div")
let ncat = 0
for (let category in highscore) {
2019-11-04 09:28:35 -07:00
let catHigh = highscore[category]
let catTeam = team[category] || 0
let catPct = catTeam / catHigh
let width = maxWidth * catPct
let bar = document.createElement("span")
bar.classList.add("category")
bar.classList.add("cat" + ncat)
bar.style.width = width + "%"
bar.textContent = category + ": " + catTeam
bar.title = bar.textContent
row.appendChild(bar)
ncat += 1
}
2019-11-04 09:28:35 -07:00
let te = document.createElement("span")
te.classList.add("teamname")
te.textContent = teamnames[team.__hash__]
row.appendChild(te)
2019-11-04 09:28:35 -07:00
element.appendChild(row)
}
}
function once() {
fetch("points.json")
.then(resp => {
2019-11-04 09:28:35 -07:00
return resp.json()
})
.then(obj => {
2019-11-04 09:28:35 -07:00
update(obj)
})
.catch(err => {
2019-11-04 09:28:35 -07:00
console.log(err)
})
2018-09-18 18:22:03 -06:00
}
function init() {
2019-11-04 09:28:35 -07:00
let base = window.location.href.replace("scoreboard.html", "")
document.querySelector("#location").textContent = base
2019-03-07 07:53:58 -07:00
2019-11-04 09:28:35 -07:00
setInterval(once, 60000)
once()
}
if (document.readyState === "loading") {
2019-11-04 09:28:35 -07:00
document.addEventListener("DOMContentLoaded", init)
} else {
2019-11-04 09:28:35 -07:00
init()
2018-09-18 18:22:03 -06:00
}
</script>
</head>
<body>
<h1 class="Success">Scoreboard</h1>
2019-03-07 07:53:58 -07:00
<h4 id="location"></h4>
2018-09-18 18:22:03 -06:00
<section>
<div id="scoreboard"></div>
</section>
<nav>
<ul>
2019-02-22 19:09:38 -07:00
<li><a href="index.html">Puzzles</a></li>
2018-09-18 18:22:03 -06:00
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
</body>
</html>