Selaa lähdekoodia

fix: EditSongs didn't clear songs and would show even with no songs

Kristian Vos 3 vuotta sitten
vanhempi
commit
6cbf762b26

+ 9 - 2
frontend/src/components/modals/EditSongs.vue

@@ -202,6 +202,8 @@
 import { mapState, mapActions, mapGetters } from "vuex";
 import { defineAsyncComponent } from "vue";
 
+import Toast from "toasters";
+
 import SongItem from "@/components/SongItem.vue";
 
 export default {
@@ -275,7 +277,10 @@ export default {
 				});
 			});
 
-			this.editNextSong();
+			if (this.items.length === 0) {
+				this.closeThisModal();
+				new Toast("You can't edit 0 songs.");
+			} else this.editNextSong();
 		});
 
 		this.socket.on(`event:admin.song.updated`, res => {
@@ -298,6 +303,7 @@ export default {
 	},
 	beforeUnmount() {
 		this.socket.dispatch("apis.leaveRoom", "edit-songs");
+		this.resetSongs();
 	},
 	methods: {
 		pickSong(song) {
@@ -417,7 +423,8 @@ export default {
 		},
 		...mapActions("modals/confirm", ["updateConfirmMessage"]),
 		...mapActions("modalVisibility", ["openModal", "closeModal"]),
-		...mapActions("modals/editSong", ["editSong"])
+		...mapActions("modals/editSong", ["editSong"]),
+		...mapActions("modals/editSongs", ["resetSongs"])
 	}
 };
 </script>

+ 6 - 2
frontend/src/components/modals/ImportAlbum.vue

@@ -451,8 +451,12 @@ export default {
 				});
 			});
 
-			this.editSongs(this.songsToEdit);
-			this.openModal("editSongs");
+			if (this.songsToEdit.length === 0)
+				new Toast("You can't edit 0 songs.");
+			else {
+				this.editSongs(this.songsToEdit);
+				this.openModal("editSongs");
+			}
 		},
 		log(evt) {
 			window.console.log(evt);

+ 6 - 1
frontend/src/store/modules/modals/editSongs.js

@@ -8,7 +8,8 @@ export default {
 	},
 	getters: {},
 	actions: {
-		editSongs: ({ commit }, songs) => commit("editSongs", songs)
+		editSongs: ({ commit }, songs) => commit("editSongs", songs),
+		resetSongs: ({ commit }) => commit("resetSongs")
 	},
 	mutations: {
 		editSongs(state, songs) {
@@ -19,6 +20,10 @@ export default {
 					song.prefill ? song.prefill : {}
 				])
 			);
+		},
+		resetSongs(state) {
+			state.songIds = [];
+			state.songPrefillData = {};
 		}
 	}
 };