diff --git a/src/api/GlobalApi.js b/src/api/GlobalApi.js index 219aa40..9ea6bbc 100644 --- a/src/api/GlobalApi.js +++ b/src/api/GlobalApi.js @@ -80,4 +80,31 @@ export default class GlobalApi { {"name":"Делай короче чё хочешь", "about":":troll_face:", "image":require('@/assets/images/rules/make_everyone.jpg')}] ]; } + + UNIX2FACTI_TIME(u_time) { + const divmod = (x, y) => [Math.floor(x / y), x % y]; + + let s = divmod(u_time, 60)[1]; + let m = divmod(u_time, 60)[0]; + let h = divmod(m, 60)[0]; + m = divmod(m, 60)[1]; + let d = divmod(h, 24)[0]; + let n = divmod(d, 7)[0]; + h = divmod(h, 24)[1]; + //бля простите я тупой + + if (!s & !m & !h & !d) { + return "не играл"; + } + + let time = `${h > 9 ? h : '0' + h}:${m > 9 ? m : '0' + m}:${s > 9 ? s : '0' + s}`; + + if (!d) { + return time; + } else if (d < 2) { + return `${h} ч\n`; + } else { + return `${h} ч\n(${n} н ${d} д ${h} ч`; + } + } } diff --git a/src/api/PlayerApi.js b/src/api/PlayerApi.js index 447becd..5548b70 100644 --- a/src/api/PlayerApi.js +++ b/src/api/PlayerApi.js @@ -3,7 +3,8 @@ import axios from "axios"; export default class PlayerApi { store = { permition: null, - steam_data: null + steam_data: null, + ban: null } discord = null; @@ -16,6 +17,16 @@ export default class PlayerApi { } } + async loadFull() { + return axios.get(`/api/profile/current`) + .then(response => { + if (response.status === 200) this.store = response.data; + }) + .catch(() => { + this.store = null; + }); + } + async loadThis(value) { return axios.get(`/api/profile/current?requests=${value}`) .then(response => { @@ -38,9 +49,7 @@ export default class PlayerApi { async load() { console.log(`[PlayerAPI] request info`); - if (!this.auth('steam')) return; - await this.loadThis('steam_data'); - + if (this.auth('steam')) await this.loadFull(); if (this.auth('discord')) await this.loadDiscord(); } } \ No newline at end of file diff --git a/src/components/Others/CustomSvg/DiscordSvg.vue b/src/components/Others/CustomSvg/DiscordSvg.vue index 1e7624b..90f27c0 100644 --- a/src/components/Others/CustomSvg/DiscordSvg.vue +++ b/src/components/Others/CustomSvg/DiscordSvg.vue @@ -1,9 +1,19 @@ \ No newline at end of file diff --git a/src/components/Others/CustomSvg/SteamSvg.vue b/src/components/Others/CustomSvg/SteamSvg.vue index 7c47a08..e4e1606 100644 --- a/src/components/Others/CustomSvg/SteamSvg.vue +++ b/src/components/Others/CustomSvg/SteamSvg.vue @@ -1,6 +1,6 @@