2009scape-website/services/m=hiscore/helpers.js

138 lines
4.6 KiB
JavaScript
Raw Normal View History

2020-12-09 16:52:03 +01:00
var hiscores = hiscores || {};
hiscores.sName = [
2020-12-09 16:40:53 +01:00
"Attack",
"Defence",
"Strength",
"Constitution",
"Ranged",
"Prayer",
"Magic",
"Cooking",
"Woodcutting",
"Fletching",
"Fishing",
"Firemaking",
"Crafting",
"Smithing",
"Mining",
"Herblore",
"Agility",
"Thieving",
"Slayer",
"Farming",
"Runecrafting",
"Hunter",
"Construction",
"Summoning"
]
2020-12-09 17:13:31 +01:00
hiscores.page = 0;
hiscores.currentSkillId = "";
2020-12-10 14:23:40 +01:00
hiscores.apiURL = "http://api.2009scape.org:3000";
2020-12-09 17:13:31 +01:00
hiscores.tableData = [];
hiscores.defaultTableData = [];
2020-12-09 16:52:03 +01:00
hiscores.linkLeftTabSkillNames = () => {
hiscores.sName.forEach((skill, index) => {
2020-12-09 16:40:53 +01:00
row = document.getElementsByClassName(` ${skill} ico`)[0].addEventListener("click", function (e) {
hiscores.page = 0;
2020-12-09 16:52:03 +01:00
hiscores.loadSkillTable(index);
2020-12-09 16:40:53 +01:00
});
});
2020-12-09 16:52:03 +01:00
}
hiscores.initializePageArrows = () => {
document.getElementById("button-up").addEventListener("click", function (e) {
e.preventDefault();
if (hiscores.page > 0) {
hiscores.page--;
}
2020-12-10 15:48:43 +01:00
let pageRemovedWindowLocation = window.location.search.split(/\?page=\d*/).join('');
2020-12-10 14:23:40 +01:00
window.location.replace(`./hiscores.html${pageRemovedWindowLocation}?page=${hiscores.page}`);
2020-12-09 16:52:03 +01:00
});
document.getElementById("button-down").addEventListener("click", function (e) {
e.preventDefault();
hiscores.page++;
2020-12-10 15:48:43 +01:00
let pageRemovedWindowLocation = window.location.search.split(/\?page=\d*/).join('');
2020-12-10 14:23:40 +01:00
window.location.replace(`./hiscores.html${pageRemovedWindowLocation}?page=${hiscores.page}`);
2020-12-09 16:52:03 +01:00
});
}
hiscores.initalizeRightsideButtons = () => {
document.getElementById("search_button").addEventListener("click", function (e) {
e.preventDefault();
window.location.replace(`./hiscores.html?player=${document.getElementById('search_name').value}`);
2020-12-09 16:52:03 +01:00
});
document.getElementById("search_rank_submit").addEventListener("click", function (e) {
e.preventDefault();
if (document.getElementById('search_rank').value) {
hiscores.loadUserTable(hiscores.defaultTableData[document.getElementById('search_rank').value - 1].username)
hiscores.setHeadSkillText(hiscores.defaultTableData[document.getElementById('search_rank').value - 1].username + "'s ");
2020-12-09 16:52:03 +01:00
}
else {
hiscores.loadDefaultHSTable();
}
});
2020-12-10 15:48:43 +01:00
document.getElementById("filter_submit").addEventListener("click", function (e) {
e.preventDefault();
hiscores.page++;
let pageRemovedFiltersLocation = window.location.search.split(/\?iron=[A-z]+|\?ultiron=[A-z]+|\?hciron=[A-z]+|\?maxXP=\d+/).join('');
const ironparam = `?iron=${document.getElementById('check_iron').checked}`;
const ultironparam = `?ultiron=${document.getElementById('check_ultiron').checked}`;
const hcironparam = `?hciron=${document.getElementById('check_hciron').checked}`;
const maxXP = `?maxXP=${document.getElementById("maxXP").value}`;
window.location.replace(`./hiscores.html${pageRemovedFiltersLocation}${ironparam}${ultironparam}${hcironparam}${maxXP}`);
});
2020-12-09 17:13:31 +01:00
}
hiscores.formatName = (name, ironStatus = 0, xpRate = 10, aposS = false,) => {
2020-12-09 17:13:31 +01:00
name = name.replaceAll("_", " ");
name = name.replace(/(^\w|\s\w)/g, match => match.toUpperCase()); // Capitalize first letter of each word
if (aposS) {
if (!name.endsWith('s')) {
name += "'s";
} else {
name += "'";
}
}
name = hiscores.getIronIcon(ironStatus) + name;
if (xpRate != 10) {
return name + ` <span style="color: rgba(${Math.max(0, 50 - Math.pow(xpRate, 1.7) * 10)}, 0, 0, 0.4);">${xpRate > 10 ? Math.round(xpRate) : xpRate}x</span>`;
}
return name;
2020-12-09 17:13:31 +01:00
}
2020-12-09 22:12:19 +01:00
hiscores.setHeadSkillIcon = (icon) => {
if (icon.includes(".")) {
document.getElementById("scores_head_icon").src = icon;
} else {
document.getElementById("scores_head_icon").src = `../../site/img/hiscores/skill_icon_${icon.toLowerCase()}1eccb.gif`;
}
2020-12-09 17:13:31 +01:00
}
hiscores.setHeadSkillText = (text) => {
document.getElementById("scores_head_skill").innerHTML = text;
2020-12-09 23:20:08 +01:00
}
hiscores.getIronIcon = (ironStatus) => {
switch (ironStatus) {
case "1":
case 1:
return `<img src="../../site/img/osrsimg/ironman.png" style="height: 11px"> `;
case "2":
case 2:
return `<img src="../../site/img/osrsimg/hcim.png" style="height: 11px"> `;
case "3":
case 3:
return `<img src="../../site/img/osrsimg/ultimateironman.png" style="height: 11px"> `;
default:
return "";
}
}