From f977ff0952beaf9b57c510c44630e2c7e25ef0ad Mon Sep 17 00:00:00 2001 From: gsd Date: Sun, 26 May 2024 21:19:27 +0300 Subject: [PATCH] connect troubles dialog --- src/components/ActionDialogs/FindPlayer.vue | 2 +- .../{ => Information}/DeleteMeDialog.vue | 0 .../Information/TroublesDialog.vue | 46 +++++++++++++++++++ .../SubComponents/ConnectErrors.vue | 27 +++++++++++ .../MainView/Components/WhyNot.vue | 4 +- 5 files changed, 77 insertions(+), 2 deletions(-) rename src/components/ActionDialogs/{ => Information}/DeleteMeDialog.vue (100%) create mode 100644 src/components/ActionDialogs/Information/TroublesDialog.vue create mode 100644 src/components/TabsMenuElements/MainView/Components/SubComponents/ConnectErrors.vue diff --git a/src/components/ActionDialogs/FindPlayer.vue b/src/components/ActionDialogs/FindPlayer.vue index 18778c5..abf4cae 100644 --- a/src/components/ActionDialogs/FindPlayer.vue +++ b/src/components/ActionDialogs/FindPlayer.vue @@ -22,7 +22,7 @@ import ProfileViewer from "@/components/Others/Loader/ProfileViewer.vue"; import axios from "axios"; import Random from "@/api/Random"; -import DeleteMeDialog from "@/components/ActionDialogs/DeleteMeDialog.vue"; +import DeleteMeDialog from "@/components/ActionDialogs/Information/DeleteMeDialog.vue"; export default { name: "FindPlayer", diff --git a/src/components/ActionDialogs/DeleteMeDialog.vue b/src/components/ActionDialogs/Information/DeleteMeDialog.vue similarity index 100% rename from src/components/ActionDialogs/DeleteMeDialog.vue rename to src/components/ActionDialogs/Information/DeleteMeDialog.vue diff --git a/src/components/ActionDialogs/Information/TroublesDialog.vue b/src/components/ActionDialogs/Information/TroublesDialog.vue new file mode 100644 index 0000000..8d93b68 --- /dev/null +++ b/src/components/ActionDialogs/Information/TroublesDialog.vue @@ -0,0 +1,46 @@ + + + + + \ No newline at end of file diff --git a/src/components/TabsMenuElements/MainView/Components/SubComponents/ConnectErrors.vue b/src/components/TabsMenuElements/MainView/Components/SubComponents/ConnectErrors.vue new file mode 100644 index 0000000..62f284a --- /dev/null +++ b/src/components/TabsMenuElements/MainView/Components/SubComponents/ConnectErrors.vue @@ -0,0 +1,27 @@ + + + \ No newline at end of file diff --git a/src/components/TabsMenuElements/MainView/Components/WhyNot.vue b/src/components/TabsMenuElements/MainView/Components/WhyNot.vue index 9c3c51c..f0352c3 100644 --- a/src/components/TabsMenuElements/MainView/Components/WhyNot.vue +++ b/src/components/TabsMenuElements/MainView/Components/WhyNot.vue @@ -7,6 +7,7 @@
+
@@ -18,9 +19,10 @@ import CurrentPlayers from "@/components/TabsMenuElements/MainView/Components/SubComponents/CurrentPlayers.vue"; import ConnectButton from "@/components/TabsMenuElements/MainView/Components/SubComponents/ConnectButton.vue"; import WhyNotText from "@/components/TabsMenuElements/MainView/Components/WhyNotText.vue"; +import ConnectErrors from "@/components/TabsMenuElements/MainView/Components/SubComponents/ConnectErrors.vue"; export default { name: "WhyNot", - components: {WhyNotText, ConnectButton, CurrentPlayers} + components: {ConnectErrors, WhyNotText, ConnectButton, CurrentPlayers} } \ No newline at end of file