Browse Source

fix: edit modal should close when station successfully removed

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 5 years ago
parent
commit
2da4d7ca93
1 changed files with 10 additions and 4 deletions
  1. 10 4
      frontend/components/Admin/EditStation.vue

+ 10 - 4
frontend/components/Admin/EditStation.vue

@@ -150,9 +150,9 @@
 </template>
 
 <script>
-import { mapState } from "vuex";
-
+import { mapState, mapActions } from "vuex";
 import { Toast } from "vue-roaster";
+
 import Modal from "../Modals/Modal.vue";
 import io from "../../io";
 import validation from "../../validation";
@@ -455,9 +455,15 @@ export default {
 		},
 		deleteStation() {
 			this.socket.emit("stations.remove", this.editing._id, res => {
-				Toast.methods.addToast(res.message, 8000);
+				if (res.status === "success")
+					this.closeModal({
+						sector: "station",
+						modal: "editStation"
+					});
+				return Toast.methods.addToast(res.message, 8000);
 			});
-		}
+		},
+		...mapActions("modals", ["closeModal"])
 	},
 	components: { Modal }
 };