diff --git a/assets/javascript/index.js b/assets/javascript/index.js index a4735e9..3be2db3 100644 --- a/assets/javascript/index.js +++ b/assets/javascript/index.js @@ -5,13 +5,15 @@ const nnRuler = "cool_tellow"; const nnCoRuler = "ColoradoCrusade"; const electionDate = "2025-6-30"; +const splashes = ["Totally not rigged!!!"]; + const memberList = ["Omtegu", "pupik923", "cool_tellow", "JoeTheDauntless", "black_frieza", "Jinx64_", "eldiego", "Gero06", "Spencer1019", "mrcreeperg4", "TiredToonz", "idan1503", "Wormzy333", "ColoradoCrusade", "spenten", "Geogaddiiii", "Austcd30", "MyNameIsRasheed", "MrSteam84", "TwoGoodFiveme", "ara2009", "Ransterr", "ItzFriez6312", "ArzoAblaze", "jssjsjjssj", "toiletteeth", "B8arn", "FredDerp", "Georgequank", "hunterg2i", "KarmaIsDepressed", "Mini", "ChilliChillt", "ServerLite", "proper_cat", "Master__Kief", "ItzBiblcle", "MrAss_asd", "Burningskull562", "se2p", "mindlord", "ItIsYeFish", "pivozavr2004", "latcyy", "LuckKir", "oggghrkwneh", "MiHoub", "David", "lkarch", "MegaByteX", "ScaryCowCow4", "Glanthrial", "Deskfan45", "nielubiecie321", "BoomFox_Official", "DrDews", "DrNubXP", "hagluciak19", "SavageUser", "Fireballiceball", "JakeRedstone", "kaiookk1", "My_ChairSlipped", "j63k", "jurckurc", "workingontrying", "KevinDurantgoat", "Creeperpaste", "Islando_Commando", "Migzotic", "Teasoup", "F8fnir", "JorgenMister", "isnikoda", "TrustedHawk1855", "Revivey", "BleonIlazi", "AgentTammy", "Losangelesquest", "jeorm", "CrafterSteve98", "ilikemacandcheez", "NotRawZach", "herrydicc", "Hendway", "Pugino", "TeeDoesStuff", "TomAndBon", "SJET_Inc", "Urogalo", "arrochista", "JakePaulcraft", "WetBed43", "grammarissue", "pappoy76", "BurgerMan_27", "ilhanerdem2015", "BashurverseMC", "Batteryacids", "freddyw", "Acid0verl0ad", "CerealBoiz", "Q_QIndustries", "minerkat2011", "Capital3", "Assult_penguin", "NexSol", "DrWild", "nnnnn", "Jerry_juju", "hanxing", "Juasonxd", "Mikey_herobrine", "FluffyFoxFae", "Karmatical0", "ItsMxt", "Yen45", "Olat", "FredMCGamer", "capitanatomico", "DanielRobert15", "Hefeng_Song", "Leozero_", "MyGmail", "SkyNotBlue", "eldiegoat", "huntermkk", "ItsVollx", "sonictank1", "Miyazaki", "Beanzo0", "VolxyzMC", "tvoreal", "sushi_king86", "KAMILE33", "pascal_machet", "barton1357TF2", "Yungyoungin1", "kleeorg", "SnailRibs", "yourstruly71", "Csorroflegma", "ahhhhhhhh1587", "Lofeee", "mmakart", "adebuilder", "Jetteriter", "mud4dum", "Jesper2011", "GREENAPPLE", "guinea_pig_doody", "CreeperX200", "AudemusJura", "cutekttn", "bartur4", "Feruxia", "Kurzov", "MONKEYMAN346776", "breadcool", "Zaku1626", "keyboardan", "tetunnel", "ItTommy22Toad", "FulgencioBatista", "inoxisane", "q0iat", "Levinder", "aidenjamesmcl"]; function getCookie(cookieName) { - var name = cookieName + "="; - var decodedCookie = decodeURIComponent(document.cookie); - var splitCookies = decodedCookie.split(';'); - for(var i = 0; i < splitCookies.length; i++) { + let name = cookieName + "="; + let decodedCookie = decodeURIComponent(document.cookie); + let splitCookies = decodedCookie.split(';'); + for(let i = 0; i < splitCookies.length; i++) { let cookie = splitCookies[i]; while (cookie.charAt(0) == ' ') { cookie = cookie.substring(1); @@ -32,18 +34,17 @@ function calculateCountdown(endingDate) { } function switchSection(sectionName, button) { - var i, navButton; - for (i = 0; i < sectionList.length; i++) { + for (let i = 0; i < sectionList.length; i++) { sectionList[i].style.display = "none"; } - navButton = document.getElementsByClassName("navButton"); + let navButton = document.getElementsByClassName("navButton"); for (i = 0; i < navButton.length; i++) { navButton[i].style.backgroundColor = "black"; navButton[i].style.color = "white"; } - document.title = button.innerHTML; + document.title = button.innerText; document.cookie = "section=" + sectionName; document.getElementById(sectionName).style.display = "block"; @@ -71,12 +72,19 @@ function loadRulersAndElectionCountdown() { } } +function randomizeSplash() { + let randomSplash = splashes[Math.floor(Math.random() * splashes.length)]; + console.log("Splash randomized to \"" + randomSplash +"\""); + + document.getElementById("splash").innerText = randomSplash; +} + function loadMemberList() { for (let member = 0; member < memberList.length; member++) { - const memberListItem = document.createElement("p"); - memberListItem.innerHTML = memberList[member]; + let memberListItem = document.createElement("p"); + memberListItem.innerText = memberList[member]; - document.getElementById("memberCount").innerHTML = "Member List: " + memberList.length + document.getElementById("memberCount").innerText = "Member List: " + memberList.length; document.getElementById("memberList").appendChild(memberListItem); } } @@ -86,13 +94,14 @@ function onPageLoad() { console.log("URL parameter found, forcing section to \"" + url.searchParams.get("section") + "\""); document.getElementById(url.searchParams.get("section") + "Button").click(); } else if (getCookie("section") === "") { - console.log("A wild user appears! Defaulting to first section, \"" + sectionList[0].id + "\"") + console.log("A wild user appears! Defaulting to first section, \"" + sectionList[0].id + "\""); document.getElementById(sectionList[0].id + "Button").click(); } else { console.log("Section cookie found, restoring section to \"" + getCookie("section") + "\""); document.getElementById(getCookie("section") + "Button").click(); } - loadRulersAndElectionCountdown() - loadMemberList() + loadRulersAndElectionCountdown(); + randomizeSplash(); + loadMemberList(); } diff --git a/index.html b/index.html index 8ffc48e..7a13ad6 100755 --- a/index.html +++ b/index.html @@ -33,7 +33,7 @@
Steve