From db7b6a27d6418817237a2c656923cbba21afc02e Mon Sep 17 00:00:00 2001 From: gsd Date: Sun, 21 Jan 2024 18:14:21 +0300 Subject: [PATCH] web socket servers v2.2 --- src/api/GlobalApi.js | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/src/api/GlobalApi.js b/src/api/GlobalApi.js index db5a93c..19f0b3e 100644 --- a/src/api/GlobalApi.js +++ b/src/api/GlobalApi.js @@ -56,7 +56,8 @@ export default class GlobalApi { console.log("[WS] Websocket servers connected") }; this.servers_ws.onmessage = (e) => { - this.update_server(JSON.parse(e.data)["servers"], false); + const incoming = JSON.parse(e.data); + this.update_server(incoming["servers"], incoming["state"] === 0); }; } } @@ -130,23 +131,6 @@ export default class GlobalApi { } } - async fillServers() { - this.load_stages.add("servers") - console.log(`[API] load: servers`); - return axios.get("/api/stats?filter=servers" + Random.getRndWebAppend()) - .then(response => response.data['servers']) - .then(response => { - this.update_server(response, true); - }) - .catch(err => { - console.log(`[API] cannot request servers, err: ${err}`); - throw new Error("BLYA SERVERS"); - }) - .finally(() => { - this.load_stages.remove("servers"); - }); - } - async load() { this.loading = true; document.title = `Загрузка - Факты 13`; @@ -154,7 +138,6 @@ export default class GlobalApi { this.fillThis('statistic'), //this.fillThis('uniq'), this.fillThis('donate'), - this.fillServers(), this.vip.getVipPrices(this.load_stages), this.vip.getVipStatistic(this.load_stages), this.admin.load(this.load_stages),