mirror of
https://github.com/MaciejkaG/statki.git
synced 2024-11-30 04:22:55 +01:00
Improved UI navigation
This commit is contained in:
parent
36b22037d4
commit
1ba265b9f5
@ -24,7 +24,6 @@ var nickname;
|
||||
var myProfile;
|
||||
|
||||
socket.emit("my profile", (profile) => {
|
||||
console.log(profile);
|
||||
// General profile data
|
||||
let options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
|
||||
$("#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);
|
||||
$("#winrate").html(`${profile.stats.winrate}%`);
|
||||
|
||||
// Match history
|
||||
var matchHistory = profile.matchHistory;
|
||||
var matchHistoryDOM = "";
|
||||
|
||||
@ -43,8 +43,6 @@ socket.emit("my profile", (profile) => {
|
||||
for (let i = 0; i < matchHistory.length; i++) {
|
||||
const match = matchHistory[i];
|
||||
|
||||
console.log();
|
||||
|
||||
let date = new Date(match.date).toLocaleDateString("pl-PL", options);
|
||||
|
||||
const minutes = Math.floor(match.duration / 60).toLocaleString('pl-PL', { minimumIntegerDigits: 2, useGrouping: false });
|
||||
|
@ -2,6 +2,7 @@ var activeView;
|
||||
var returnLock = false;
|
||||
|
||||
function switchView(viewContainerId, useReplaceState=false) {
|
||||
if (!returnLock) {
|
||||
$(`.container`).css({ opacity: 0, animation: "OutAnim 0.2s 1 ease" });
|
||||
setTimeout(() => {
|
||||
$(`.container`).css("display", "none");
|
||||
@ -16,6 +17,7 @@ function switchView(viewContainerId, useReplaceState=false) {
|
||||
|
||||
activeView = viewContainerId;
|
||||
}, 200);
|
||||
}
|
||||
}
|
||||
|
||||
function lockUI(doLock) {
|
||||
|
Loading…
Reference in New Issue
Block a user