Improved UI navigation

This commit is contained in:
MaciejkaG 2024-03-24 22:00:05 +01:00
parent 36b22037d4
commit 1ba265b9f5
2 changed files with 16 additions and 16 deletions

View File

@ -24,7 +24,6 @@ var nickname;
var myProfile; var myProfile;
socket.emit("my profile", (profile) => { socket.emit("my profile", (profile) => {
console.log(profile);
// General profile data // General profile data
let options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }; let options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
$("#playerSince").html(new Date(profile.profile.account_creation).toLocaleDateString("pl-PL", options)); $("#playerSince").html(new Date(profile.profile.account_creation).toLocaleDateString("pl-PL", options));
@ -35,6 +34,7 @@ socket.emit("my profile", (profile) => {
$("#totalPlayed").html(profile.stats.alltime_matches); $("#totalPlayed").html(profile.stats.alltime_matches);
$("#winrate").html(`${profile.stats.winrate}%`); $("#winrate").html(`${profile.stats.winrate}%`);
// Match history
var matchHistory = profile.matchHistory; var matchHistory = profile.matchHistory;
var matchHistoryDOM = ""; var matchHistoryDOM = "";
@ -43,8 +43,6 @@ socket.emit("my profile", (profile) => {
for (let i = 0; i < matchHistory.length; i++) { for (let i = 0; i < matchHistory.length; i++) {
const match = matchHistory[i]; const match = matchHistory[i];
console.log();
let date = new Date(match.date).toLocaleDateString("pl-PL", options); let date = new Date(match.date).toLocaleDateString("pl-PL", options);
const minutes = Math.floor(match.duration / 60).toLocaleString('pl-PL', { minimumIntegerDigits: 2, useGrouping: false }); const minutes = Math.floor(match.duration / 60).toLocaleString('pl-PL', { minimumIntegerDigits: 2, useGrouping: false });

View File

@ -2,6 +2,7 @@ var activeView;
var returnLock = false; var returnLock = false;
function switchView(viewContainerId, useReplaceState=false) { function switchView(viewContainerId, useReplaceState=false) {
if (!returnLock) {
$(`.container`).css({ opacity: 0, animation: "OutAnim 0.2s 1 ease" }); $(`.container`).css({ opacity: 0, animation: "OutAnim 0.2s 1 ease" });
setTimeout(() => { setTimeout(() => {
$(`.container`).css("display", "none"); $(`.container`).css("display", "none");
@ -16,6 +17,7 @@ function switchView(viewContainerId, useReplaceState=false) {
activeView = viewContainerId; activeView = viewContainerId;
}, 200); }, 200);
}
} }
function lockUI(doLock) { function lockUI(doLock) {