diff --git a/src/components/ActionDialogs/AdminInfoDialog.vue b/src/components/ActionDialogs/AdminInfoDialog.vue
new file mode 100644
index 0000000..5a74377
--- /dev/null
+++ b/src/components/ActionDialogs/AdminInfoDialog.vue
@@ -0,0 +1,39 @@
+
+
+
+
+
+
Способы связи с этим админом
+
Написать в ВК
+
Написать в стим
+
Написать в Discord
+
Закрыть
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/ActionDialogs/BanViewDialog.vue b/src/components/ActionDialogs/BanViewDialog.vue
new file mode 100644
index 0000000..db579e4
--- /dev/null
+++ b/src/components/ActionDialogs/BanViewDialog.vue
@@ -0,0 +1,69 @@
+
+
+
+
+
Бан номер #{{ban['id']}}
+
+
Статус бана:
+ {{ban['active'] === true?'забанен':'разбанен'}}
+
+
Длительность: {{ban['ban_length']===0?'навсегда':`${ban['ban_length']} минут`}}
+
Причина: {{ban['ban_reason']}}
+
IP: {{this.player_ip}}
+
+
+
Дата бана: {{(new Date(ban['timestamp'])).toLocaleString()}}
+
Забанил: {{ban['banned_by']}}
+
Написать
+
+
+
Дата разбана: {{(new Date(ban['unbanned_timestamp']).toLocaleString())}}
+
Разбанил: {{ban['unbanned_by_id'] === null||ban['unbanned_by_id'] === 'STEAM_0:0:0'?'со временем':'модератор'}}
+
Написать
+
+
+
Закрыть
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/ActionDialogs/DiscordLink.vue b/src/components/ActionDialogs/DiscordLink.vue
new file mode 100644
index 0000000..1d190ea
--- /dev/null
+++ b/src/components/ActionDialogs/DiscordLink.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
Никнейм в дискорде: {{this.nickname}}
+
Ид в дискорде: {{this.id}}
+
Перейти на сервер
+
Закрыть
+
+
+
+
+
+
\ 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 fa2dfeb..8640cc8 100644
--- a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue
+++ b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue
@@ -7,12 +7,7 @@
Статус Бана:
Забанен
-
Причина бана: {{player['ban']['ban_reason']}}
-
Выдал бан: {{player['ban']['banned_by']}}
-
-
Дата окончания бана: {{new Date(player['ban']['ban_utime'] * 1000 + player['ban']['ban_length'] * 60 * 1000).toLocaleString()}}
-
Бан навсегда
+
О бане...
Статус VIP :
@@ -58,9 +53,10 @@
История Банов
- #{{b['id']}} | {{new Date(b['ban_utime'] * 1000).toLocaleDateString()}} | {{b['ban_length']===0?'Навсегда':`${b['ban_length']} минут`}}
+ #{{b['id']}} | {{new Date(b['ban_utime'] * 1000).toLocaleDateString()}} | {{b['ban_length']===0?'Навсегда':`${b['ban_length']} минут`}}
+
{{altaccount.loading?'Загрузка':'Альт.аккаунты'}}
@@ -98,10 +94,13 @@ import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue";
import axios from "axios";
import SnackLoader from "@/components/Others/Loader/SnackLoader.vue";
import Random from "@/api/Random";
+import BanViewDialog from "@/components/ActionDialogs/BanViewDialog.vue";
export default {
name: "ProfileContainer",
- components: {SnackLoader, ProfileViewer_Internal: () => import("@/components/Others/Loader/ProfileViewer.vue"), SteamSvg, DiscordSvg},
+ components: {
+ BanViewDialog,
+ SnackLoader, ProfileViewer_Internal: () => import("@/components/Others/Loader/ProfileViewer.vue"), SteamSvg, DiscordSvg},
props: {
player: Object,
f_size: {