diff --git a/src/api/PlayerApi.js b/src/api/PlayerApi.js index f3f1b46..865ed4b 100644 --- a/src/api/PlayerApi.js +++ b/src/api/PlayerApi.js @@ -47,7 +47,7 @@ export default class PlayerApi { for (const map_name in gametime[srv]) { total_on_server[0] += gametime[srv][map_name]; } - t.push([api.getHumanServerName(srv), total_on_server[0]]); + t.push([api.getHumanServerName(srv), total_on_server[0], srv]); } return t; } diff --git a/src/components/ActionDialogs/BanListDialog.vue b/src/components/ActionDialogs/BanListDialog.vue index 89794a6..fe63567 100644 --- a/src/components/ActionDialogs/BanListDialog.vue +++ b/src/components/ActionDialogs/BanListDialog.vue @@ -1,30 +1,39 @@ \ No newline at end of file diff --git a/src/components/Others/Loader/LoadingDialog.vue b/src/components/Others/Loader/LoadingDialog.vue new file mode 100644 index 0000000..0e79c43 --- /dev/null +++ b/src/components/Others/Loader/LoadingDialog.vue @@ -0,0 +1,15 @@ + + + \ 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 8640cc8..2e3f034 100644 --- a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue +++ b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue @@ -28,16 +28,17 @@ Статистика по картам - {{g[0]}} - {{timeFormat(g[1])}} + {{g[0]}} - {{timeFormat(g[1])}}
Последние игры - {{l[0]}} - {{l[1]}} + {{l[0]}} - {{l[1]}} +
{{donates.loading?'Загрузка':'Покупки VIP'}} @@ -95,10 +96,12 @@ import axios from "axios"; import SnackLoader from "@/components/Others/Loader/SnackLoader.vue"; import Random from "@/api/Random"; import BanViewDialog from "@/components/ActionDialogs/BanViewDialog.vue"; +import GametimeDialog from "@/components/ActionDialogs/GametimeDialog.vue"; export default { name: "ProfileContainer", components: { + GametimeDialog, BanViewDialog, SnackLoader, ProfileViewer_Internal: () => import("@/components/Others/Loader/ProfileViewer.vue"), SteamSvg, DiscordSvg}, props: { diff --git a/src/css/baseui.css b/src/css/baseui.css index 7ad6ead..e9d69b4 100644 --- a/src/css/baseui.css +++ b/src/css/baseui.css @@ -1,3 +1,16 @@ .backfill { background: #3e3e3e; +} + +.pidoras { + background: + linear-gradient(rgba(255,0,0,1) 0%, rgba(255,154,0,1) 10%, rgba(208,222,33,1) 20%, rgba(79,220,74,1) 30%, rgba(63,218,216,1) 40%, rgba(47,201,226,1) 50%, rgba(28,127,238,1) 60%, rgba(95,21,242,1) 70%, rgba(186,12,248,1) 80%, rgba(251,7,217,1) 90%, rgba(255,0,0,1) 100%) + 0 0/100% 200%; + animation: pidoras_key 2s linear infinite; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +@keyframes pidoras_key { + to {background-position:0 -200%} } \ No newline at end of file