Browse Source

view fix

master
gsd 1 year ago
parent
commit
40fa739d52
  1. 23
      src/api/GlobalApi.js
  2. 7
      src/api/PlayerApi.js
  3. 5
      src/components/TabsMenuElements/BackendStatus/BackendStatus.vue

23
src/api/GlobalApi.js

@ -18,7 +18,8 @@ export default class GlobalApi {
"e":[],
"n":[]
},
'uniq': null
'uniq': null,
'builddate':0
}
loading = false;
failed = false;
@ -62,6 +63,23 @@ export default class GlobalApi {
})
}
async fillOther() {
console.log(`[API] load: other`);
this.load_stages.add("other");
return await axios.get(`/api/stats?filter=other`)
.then(response => response.data)
.then(response => {
this.stats["builddate"] = response["builddate"];
})
.catch(err => {
console.log(`[API] cannot request other, err: ${err}`);
throw new Error("BLYA");
}).finally(() => {
this.load_stages.remove("other");
})
}
async fillServers() {
this.load_stages.add("servers")
console.log(`[API] load: servers`);
@ -101,7 +119,8 @@ export default class GlobalApi {
this.admin.load(this.load_stages),
this.player.load(this.load_stages),
this.vip.getVipPrices(this.load_stages),
this.vip.getVipStatistic(this.load_stages)]
this.vip.getVipStatistic(this.load_stages),
this.fillOther()]
).then(() => {
console.log("[Loader] success end");
this.loading = false;

7
src/api/PlayerApi.js

@ -14,6 +14,8 @@ export default class PlayerApi {
discord = null;
success_auth = false;
auth(value) {
switch (value) {
case "steam": return document.cookie.indexOf("steam64_secured=") !== -1 && document.cookie.indexOf("steam64=") !== -1
@ -62,7 +64,10 @@ export default class PlayerApi {
async loadFull() {
return axios.get(`/api/profile/current`)
.then(response => {
if (response.status === 200) this.store = response.data;
if (response.status === 200) {
this.store = response.data;
this.success_auth = true;
}
})
.catch(() => {
this.store = null;

5
src/components/TabsMenuElements/BackendStatus/BackendStatus.vue

@ -7,8 +7,9 @@
</div>
<div class="md-layout md-alignment-bottom-center" style="margin-top: -1.5%">
<div class="md-layout-item md-size-60 md-small-size-100 md-alignment-bottom-center rounded-only">
<h5 style="padding: 0% 3%">Сборка от {{this.$API.builddate !== null ? new Date(this.$API.builddate).toLocaleString() : 'Dev Build'}}</h5>
<h5 v-if="$API.player.store === null" style="text-align: center; cursor: pointer; text-decoration-line: underline" v-on:click="openAW()">Ты можешь искать других игроков здесь, но сначала надо авторизоваться!</h5>
<h5 style="padding: 0% 3%">Сборка Frontend от {{this.$API.builddate !== null ? new Date(this.$API.builddate).toLocaleString() : 'Dev Build'}}</h5>
<h5 style="padding: 0% 3%">Сборка Backend от {{this.$API.stats["builddate"] !== null ? new Date(parseInt(this.$API.stats["builddate"])*1000).toLocaleString() : 'Dev Build'}}</h5>
<h5 v-if="this.$API.player.success_auth === false" style="text-align: center; cursor: pointer; text-decoration-line: underline" v-on:click="openAW()">Ты можешь искать других игроков здесь, но сначала надо авторизоваться!</h5>
<md-button v-else v-on:click="showFP()" style="color: #131213; font-family: tf2build; background: lightgreen">Найти игрока</md-button>
<FindPlayer ref="fp"/>
<AuthWindow ref="aw" />

Loading…
Cancel
Save