From 0171e8830e2fb99b26f1ed21344432d3c36bea56 Mon Sep 17 00:00:00 2001 From: gsd Date: Sat, 24 Feb 2024 14:40:13 +0300 Subject: [PATCH] slow load fix & new pay method --- .../Others/CustomSvg/DonationAlertsSvg.vue | 41 +++++++++++++++++++ .../Components/ProfileContainer.vue | 26 ++++++++++-- .../VipView/Components/VipBuyDialog.vue | 15 ++++++- 3 files changed, 76 insertions(+), 6 deletions(-) create mode 100644 src/components/Others/CustomSvg/DonationAlertsSvg.vue diff --git a/src/components/Others/CustomSvg/DonationAlertsSvg.vue b/src/components/Others/CustomSvg/DonationAlertsSvg.vue new file mode 100644 index 0000000..843e7a2 --- /dev/null +++ b/src/components/Others/CustomSvg/DonationAlertsSvg.vue @@ -0,0 +1,41 @@ + + + \ No newline at end of file diff --git a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue index dc1d57f..757a84f 100644 --- a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue +++ b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue @@ -87,10 +87,11 @@

IP : {{player_ip}}

Страна : {{this.player['play_on']['country']}}

-

Убийств : {{this.player['killfeed']['kills']}}

-

Помощи : {{this.player['killfeed']['assists']}}

-

Смертей : {{this.player['killfeed']['deads']}}

-

Суицидов : {{this.player['killfeed']['suicides']}}

+

К\Д : {{this.killfeed.loading?'Загрузка...':this.killfeed.loaded?Math.round(this.killfeed.store['kills'] / this.killfeed.store['deads']):"Показать"}}

+

Убийств : {{this.killfeed.store['kills']}}

+

Помощи : {{this.killfeed.store['assists']}}

+

Смертей : {{this.killfeed.store['deads']}}

+

Суицидов : {{this.killfeed.store['suicides']}}

Сообщений : {{this.player['messages']}}

@@ -154,6 +155,11 @@ export default { loading: false, loaded: false, store:[] + }, + killfeed: { + loading: false, + loaded: false, + store:null } }), methods: { @@ -238,6 +244,18 @@ export default { }) .catch(() => this.altaccount.loaded = false) .finally(() => this.altaccount.loading = false) + }, + loadKillFeed(){ + if (this.killfeed.store == null && this.killfeed.loading === false) { + this.killfeed.loading = true; + axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=killfeed` + Random.getRndWebAppend()) + .then(response => { + this.killfeed.store = response.data['killfeed']; + this.killfeed.loaded = true; + }) + .catch(() => this.killfeed.loaded = false) + .finally(() => this.killfeed.loading = false) + } } } } diff --git a/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue b/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue index 4ba6235..5bc22ea 100644 --- a/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue +++ b/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue @@ -34,6 +34,11 @@

{{price.item_price}}

В этом году купили {{getStat4('steam', price.period)}} раз

+
+ +

{{price.money_price + price.money_price * price.da_percent / 100}} рублей

+

В этом году купили {{getStat4('donationalerts', price.period)}} раз

+

{{price.item_price}}

@@ -63,10 +68,11 @@ import AuthWindow from "@/components/Others/Auth/AuthWindow.vue"; import FreeVipDialog from "@/components/TabsMenuElements/VipView/Components/FreeVipDialog.vue"; import Random from "@/api/Random"; import BuyMethodDisableDialog from "@/components/ActionDialogs/BuyMethodDisableDialog.vue"; +import DonationAlertsSvg from "@/components/Others/CustomSvg/DonationAlertsSvg.vue"; export default { name: 'VipBuyDialog', - components: {BuyMethodDisableDialog, FreeVipDialog, AuthWindow, FreeSvg, SteamSvg, QiwiSvg}, + components: {DonationAlertsSvg, BuyMethodDisableDialog, FreeVipDialog, AuthWindow, FreeSvg, SteamSvg, QiwiSvg}, data: () => ({ showBuyDialog: false }), @@ -86,6 +92,9 @@ export default { buyWithQiwi(cost) { window.open(`api/profile/current/buyvip?buy_type=qiwi&steam64=${this.$API.player.store.steamids.steam64}&cost=${cost}` + Random.getRndWebAppend(), "_blank") }, + buyWithDA() { + window.open("api/profile/current/buyvip?buy_type=donationalerts" + Random.getRndWebAppend(), "_blank"); + }, buyWithFree() { this.$refs.vfd.getFreeVIP(); }, @@ -94,7 +103,9 @@ export default { }, getStat4(service, period) { try { - return this.$API.stats['donate']['year']['statistic'][service][period]; + if (period in this.$API.stats['donate']['year']['statistic'][service]) + return this.$API.stats['donate']['year']['statistic'][service][period]; + else return 0; } catch (e) {return 0;} }, showBMDD() {