From d33d8cf98a908efe089ef205a7988bdda5e2a9fc Mon Sep 17 00:00:00 2001 From: gsd Date: Sun, 5 Nov 2023 00:30:32 +0300 Subject: [PATCH] view messages dialog --- src/App.vue | 1 + src/api/GlobalApi.js | 10 ++ .../ActionDialogs/BanListDialog.vue | 2 +- src/components/ActionDialogs/FindPlayer.vue | 3 +- .../ActionDialogs/GametimeDialog.vue | 2 +- .../ActionDialogs/MessagesDialog.vue | 106 ++++++++++++++++++ src/components/Others/ServerSelect.vue | 24 ++++ .../Components/ProfileContainer.vue | 8 +- .../ServersView/Components/ServerFullInfo.vue | 7 +- src/css/menus.css | 4 + src/css/tables.css | 16 +++ 11 files changed, 176 insertions(+), 7 deletions(-) create mode 100644 src/components/ActionDialogs/MessagesDialog.vue create mode 100644 src/components/Others/ServerSelect.vue create mode 100644 src/css/tables.css diff --git a/src/App.vue b/src/App.vue index b2512ae..b053497 100644 --- a/src/App.vue +++ b/src/App.vue @@ -53,6 +53,7 @@ import "@/css/rounded.css"; import "@/css/text.css"; import "@/css/baseui.css"; import "@/css/menus.css"; +import "@/css/tables.css"; import TabsMenu from "@/components/TabsMenu.vue"; import LoaderPage from "@/components/Others/Loader/LoaderPage.vue"; diff --git a/src/api/GlobalApi.js b/src/api/GlobalApi.js index 2acc32d..9a12d9e 100644 --- a/src/api/GlobalApi.js +++ b/src/api/GlobalApi.js @@ -54,6 +54,16 @@ export default class GlobalApi { return "неизвестный"; } + getServers4Selector() { + let r = []; + for (const mode in this.stats['servers']) { + for (const srv in this.stats['servers'][mode]) { + r.push({"srv": this.stats['servers'][mode][srv]['key'], "name": this.stats['servers'][mode][srv]['name']}) + } + } + return r; + } + async fillThis(value) { console.log(`[API] load: ${value}`); this.load_stages.add(value); diff --git a/src/components/ActionDialogs/BanListDialog.vue b/src/components/ActionDialogs/BanListDialog.vue index d7a9328..a19b536 100644 --- a/src/components/ActionDialogs/BanListDialog.vue +++ b/src/components/ActionDialogs/BanListDialog.vue @@ -4,7 +4,7 @@
Быстрее иди играть чтоб оказаться тут!
- + {{ item.id }} {{ item.player_name }} diff --git a/src/components/ActionDialogs/FindPlayer.vue b/src/components/ActionDialogs/FindPlayer.vue index 3c31d82..f9274fd 100644 --- a/src/components/ActionDialogs/FindPlayer.vue +++ b/src/components/ActionDialogs/FindPlayer.vue @@ -62,7 +62,8 @@ export default { this.$refs.pv.getPlayer(); }) }, - showFPD(){ + showFPD(preset){ + if (preset !== undefined) this.player_string = preset; this.showFindPlayerDialog = true; }, closeFPD(){ diff --git a/src/components/ActionDialogs/GametimeDialog.vue b/src/components/ActionDialogs/GametimeDialog.vue index c5e1669..f97930d 100644 --- a/src/components/ActionDialogs/GametimeDialog.vue +++ b/src/components/ActionDialogs/GametimeDialog.vue @@ -3,7 +3,7 @@
- + {{ item.player_name }} {{ item.map }} diff --git a/src/components/ActionDialogs/MessagesDialog.vue b/src/components/ActionDialogs/MessagesDialog.vue new file mode 100644 index 0000000..12f3d8d --- /dev/null +++ b/src/components/ActionDialogs/MessagesDialog.vue @@ -0,0 +1,106 @@ + + + \ No newline at end of file diff --git a/src/components/Others/ServerSelect.vue b/src/components/Others/ServerSelect.vue new file mode 100644 index 0000000..26cf957 --- /dev/null +++ b/src/components/Others/ServerSelect.vue @@ -0,0 +1,24 @@ + + + \ 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 84c3c0d..d4368df 100644 --- a/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue +++ b/src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue @@ -82,7 +82,7 @@
-
+

IP : {{player_ip}}

@@ -90,7 +90,9 @@

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

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

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

-

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

+

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

+ +

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

Наиграно : {{usertime.total}}

@@ -111,10 +113,12 @@ 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"; +import MessagesDialog from "@/components/ActionDialogs/MessagesDialog.vue"; export default { name: "ProfileContainer", components: { + MessagesDialog, GametimeDialog, BanViewDialog, SnackLoader, ProfileViewer_Internal: () => import("@/components/Others/Loader/ProfileViewer.vue"), SteamSvg, DiscordSvg}, diff --git a/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue b/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue index 398debe..9c7c945 100644 --- a/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue +++ b/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue @@ -11,10 +11,11 @@
-
+

{{serverData['description']}}

+

Чат сервера


@@ -52,6 +53,7 @@
+
@@ -59,10 +61,11 @@ import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue"; import TerminalSvg from "@/components/Others/CustomSvg/TerminalSvg.vue"; import PlayerExtendedInfo from "@/components/TabsMenuElements/ServersView/Components/PlayerExtendedInfo.vue"; +import MessagesDialog from "@/components/ActionDialogs/MessagesDialog.vue"; export default { name: "ServerFullInfo", - components: {PlayerExtendedInfo, TerminalSvg, SteamSvg}, + components: {MessagesDialog, PlayerExtendedInfo, TerminalSvg, SteamSvg}, props: { serverData: Object, }, diff --git a/src/css/menus.css b/src/css/menus.css index 78acd56..d2a1c6c 100644 --- a/src/css/menus.css +++ b/src/css/menus.css @@ -6,4 +6,8 @@ .md-list-item-content { font-family: tf2secondary; color: #f5e5c1; +} + +.ssm { + max-width: 250px !important; } \ No newline at end of file diff --git a/src/css/tables.css b/src/css/tables.css new file mode 100644 index 0000000..fdbdbd7 --- /dev/null +++ b/src/css/tables.css @@ -0,0 +1,16 @@ +@media(width > 300px) { +} + +@media(width > 600px) { + .api-table { + max-width: 600px; min-width: 600px + } +} + +@media(width > 960px) { + .api-table { + max-width: 800px; min-width: 800px + } +} + +