|
|
@ -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; |
|
|
|