From 4e923e57ee8c544d9ae96866b973a248218f9bc8 Mon Sep 17 00:00:00 2001 From: gsd Date: Sat, 21 Oct 2023 21:58:10 +0300 Subject: [PATCH] chunk loading --- src/App.vue | 2 +- src/api/PlayerApi.js | 36 ++++--- src/api/Stages.js | 1 + src/components/Others/ProfileViewer.vue | 3 +- .../Components/ProfileContainer.vue | 97 +++++++++++++++---- .../Components/PlayerExtendedInfo.vue | 2 +- .../ServersView/Components/ServerFullInfo.vue | 4 +- 7 files changed, 108 insertions(+), 37 deletions(-) diff --git a/src/App.vue b/src/App.vue index 91028e4..88a175c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -209,7 +209,7 @@ a { .md-menu-content-container { color: black; - background-color: #e0eddd; + background-color: #ffffff; border: 3px solid black; } diff --git a/src/api/PlayerApi.js b/src/api/PlayerApi.js index bd65669..ace3151 100644 --- a/src/api/PlayerApi.js +++ b/src/api/PlayerApi.js @@ -1,5 +1,7 @@ import axios from "axios"; +export const PLAYER_REQUESTS = "steam_data,lastplay,permition,ban,attached_discord"; + export default class PlayerApi { store = { permition: null, @@ -9,7 +11,8 @@ export default class PlayerApi { gametime: {}, lastplay: {}, play_on: null, - donates: [] + donates: [], + attached_discords:[] } discord = null; @@ -24,25 +27,25 @@ export default class PlayerApi { } } - getGametimeTotal(player) { - if (player === undefined) player = this.store; + getGametimeTotal(gametime) { + if (gametime === undefined) gametime = this.store['gametime']; let t = 0; - for (const srv in player.gametime) { - for (const map_name in player.gametime[srv]) { - t += player.gametime[srv][map_name]; + for (const srv in gametime) { + for (const map_name in gametime[srv]) { + t += gametime[srv][map_name]; } } return t; } - getGametime(api, player) { - if (player === undefined) player = this.store; + getGametime(api, gametime) { + if (gametime === undefined) gametime = this.store['gametime']; let t = []; let total_on_server = [0]; - for (const srv in player.gametime) { + for (const srv in gametime) { total_on_server = [0]; - for (const map_name in player.gametime[srv]) { - total_on_server[0] += player.gametime[srv][map_name]; + for (const map_name in gametime[srv]) { + total_on_server[0] += gametime[srv][map_name]; } t.push([api.getHumanServerName(srv), total_on_server[0]]); } @@ -62,7 +65,7 @@ export default class PlayerApi { } async loadFull() { - return axios.get(`/api/profile/current`) + return axios.get(`/api/profile/current?requests=auth`) .then(response => { if (response.status === 200) { this.store = response.data; @@ -77,10 +80,13 @@ export default class PlayerApi { async loadThis(value) { return axios.get(`/api/profile/current?requests=${value}`) .then(response => { - if (response.status === 200) this.store[value] = response.data[value]; + if (response.status === 200) { + this.store = response.data; + this.success_auth = true; + } }) .catch(() => { - this.store[value] = null; + this.store = null; }); } @@ -97,7 +103,7 @@ export default class PlayerApi { async load(stages) { console.log(`[PlayerAPI] request info`); stages.add("profile"); - if (this.auth('steam')) await this.loadFull(); + if (this.auth('steam')) await this.loadThis(PLAYER_REQUESTS); if (this.auth('discord')) await this.loadDiscord(); stages.remove("profile"); } diff --git a/src/api/Stages.js b/src/api/Stages.js index 50c7835..c4bf6e1 100644 --- a/src/api/Stages.js +++ b/src/api/Stages.js @@ -17,6 +17,7 @@ export default class Stages { case 'statistic': return 'молимся за здравия всех...'; case 'vip prices': return 'курс рубля к лаймовой краске...'; case 'vip statistic': return 'переводим деньги на СВО...'; + case 'profile': return 'виталик ищет тебя...'; default: return s; } } diff --git a/src/components/Others/ProfileViewer.vue b/src/components/Others/ProfileViewer.vue index be10ac5..4938257 100644 --- a/src/components/Others/ProfileViewer.vue +++ b/src/components/Others/ProfileViewer.vue @@ -12,6 +12,7 @@