From 8e84a0024cc66b7d600a3c0e99eb274f76ce583f Mon Sep 17 00:00:00 2001 From: gsd Date: Thu, 19 Oct 2023 22:22:54 +0300 Subject: [PATCH] profile view 2 --- src/api/PlayerApi.js | 5 +++-- src/components/Others/CustomSvg/SteamSvg.vue | 13 +++++++++++-- src/components/Others/ProfileViewer.vue | 6 ++++-- .../Components/ProfileContainer.vue | 13 +++++++++---- .../ServersView/Components/ServerCard.vue | 7 ++++++- .../ServersView/ServersView.vue | 18 ++++++++++++++---- 6 files changed, 47 insertions(+), 15 deletions(-) diff --git a/src/api/PlayerApi.js b/src/api/PlayerApi.js index ab607ff..f764819 100644 --- a/src/api/PlayerApi.js +++ b/src/api/PlayerApi.js @@ -7,7 +7,8 @@ export default class PlayerApi { ban: null, steamids: null, gametime: {}, - lastplay: {} + lastplay: {}, + play_on: null } discord = null; @@ -50,7 +51,7 @@ export default class PlayerApi { let t = []; for (const srv in player.lastplay) { for (const map_name in player.lastplay[srv]) { - t.push([map_name.replace("workshop/", "").split(".ugc")[0], new Date(player.lastplay[srv][map_name] * 1000).toLocaleDateString()]); + t.push([map_name.replace("workshop/", "").split(".ugc")[0], new Date(player.lastplay[srv][map_name] * 1000).toLocaleDateString(), srv]); } } diff --git a/src/components/Others/CustomSvg/SteamSvg.vue b/src/components/Others/CustomSvg/SteamSvg.vue index e4e1606..4f78554 100644 --- a/src/components/Others/CustomSvg/SteamSvg.vue +++ b/src/components/Others/CustomSvg/SteamSvg.vue @@ -1,6 +1,6 @@