Преглед на файлове

fix(ManageStation): every time the modal is opened, 'settings' tab should be the default

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan преди 4 години
родител
ревизия
9fe4a73675
променени са 3 файла, в които са добавени 19 реда и са изтрити 33 реда
  1. 3 6
      frontend/src/components/Queue.vue
  2. 1 0
      frontend/src/components/modals/ManageStation/index.vue
  3. 15 27
      frontend/src/store/modules/modals/manageStation.js

+ 3 - 6
frontend/src/components/Queue.vue

@@ -157,20 +157,17 @@ export default {
 	computed: {
 		queue: {
 			get() {
-				if (this.sector === "manageStation") {
+				if (this.sector === "manageStation")
 					return this.$store.state.modals.manageStation.songsList;
-				}
 				return this.$store.state.station.songsList;
 			},
 			set(queue) {
-				if (this.sector === "manageStation") {
+				if (this.sector === "manageStation")
 					this.$store.commit(
 						"modals/manageStation/updateSongsList",
 						queue
 					);
-				} else {
-					this.$store.commit("station/updateSongsList", queue);
-				}
+				else this.$store.commit("station/updateSongsList", queue);
 			}
 		},
 		dragOptions() {

+ 1 - 0
frontend/src/components/modals/ManageStation/index.vue

@@ -307,6 +307,7 @@ export default {
 	beforeDestroy() {
 		this.repositionSongInList([]);
 		this.clearStation();
+		this.showTab("settings");
 	},
 	methods: {
 		isOwner() {

+ 15 - 27
frontend/src/store/modules/modals/manageStation.js

@@ -14,33 +14,21 @@ export default {
 	},
 	getters: {},
 	actions: {
-		showTab: ({ commit }, tab) => {
-			commit("showTab", tab);
-		},
-		editStation: ({ commit }, station) => {
-			commit("editStation", station);
-		},
-		setIncludedPlaylists: ({ commit }, includedPlaylists) => {
-			commit("setIncludedPlaylists", includedPlaylists);
-		},
-		setExcludedPlaylists: ({ commit }, excludedPlaylists) => {
-			commit("setExcludedPlaylists", excludedPlaylists);
-		},
-		clearStation: ({ commit }) => {
-			commit("clearStation");
-		},
-		updateSongsList: ({ commit }, songsList) => {
-			commit("updateSongsList", songsList);
-		},
-		repositionSongInList: ({ commit }, song) => {
-			commit("repositionSongInList", song);
-		},
-		updateStationPaused: ({ commit }, stationPaused) => {
-			commit("updateStationPaused", stationPaused);
-		},
-		updateCurrentSong: ({ commit }, currentSong) => {
-			commit("updateCurrentSong", currentSong);
-		}
+		showTab: ({ commit }, tab) => commit("showTab", tab),
+		editStation: ({ commit }, station) => commit("editStation", station),
+		setIncludedPlaylists: ({ commit }, includedPlaylists) =>
+			commit("setIncludedPlaylists", includedPlaylists),
+		setExcludedPlaylists: ({ commit }, excludedPlaylists) =>
+			commit("setExcludedPlaylists", excludedPlaylists),
+		clearStation: ({ commit }) => commit("clearStation"),
+		updateSongsList: ({ commit }, songsList) =>
+			commit("updateSongsList", songsList),
+		repositionSongInList: ({ commit }, song) =>
+			commit("repositionSongInList", song),
+		updateStationPaused: ({ commit }, stationPaused) =>
+			commit("updateStationPaused", stationPaused),
+		updateCurrentSong: ({ commit }, currentSong) =>
+			commit("updateCurrentSong", currentSong)
 	},
 	mutations: {
 		showTab(state, tab) {