瀏覽代碼

fix(AddToPlaylistDropdown): should only show user modifiable playlists

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 3 年之前
父節點
當前提交
a77608cf02
共有 2 個文件被更改,包括 5 次插入23 次删除
  1. 5 22
      frontend/src/components/AddToPlaylistDropdown.vue
  2. 0 1
      frontend/src/mixins/SortablePlaylists.vue

+ 5 - 22
frontend/src/components/AddToPlaylistDropdown.vue

@@ -71,7 +71,9 @@ export default {
 		}),
 		playlists: {
 			get() {
-				return this.$store.state.user.playlists.playlists;
+				return this.$store.state.user.playlists.playlists.filter(
+					playlist => playlist.isUserModifiable
+				);
 			},
 			set(playlists) {
 				this.$store.commit("user/playlists/setPlaylists", playlists);
@@ -125,33 +127,14 @@ export default {
 					false,
 					this.song.youtubeId,
 					playlist._id,
-					res => {
-						new Toast(res.message);
-
-						if (res.status === "success") {
-							this.playlists[playlistIndex].songs.push(this.song);
-						}
-					}
+					res => new Toast(res.message)
 				);
 			} else {
 				this.socket.dispatch(
 					"playlists.removeSongFromPlaylist",
 					this.song.youtubeId,
 					playlist._id,
-					res => {
-						new Toast(res.message);
-
-						if (res.status === "success") {
-							this.playlists[playlistIndex].songs.forEach(
-								(song, songIndex) => {
-									if (song.youtubeId === this.song.youtubeId)
-										this.playlists[
-											playlistIndex
-										].songs.splice(songIndex, 1);
-								}
-							);
-						}
-					}
+					res => new Toast(res.message)
 				);
 			}
 		},

+ 0 - 1
frontend/src/mixins/SortablePlaylists.vue

@@ -55,7 +55,6 @@ export default {
 		this.socket.on(
 			"event:playlist.song.added",
 			res => {
-				console.log("added");
 				this.playlists.forEach((playlist, index) => {
 					if (playlist._id === res.data.playlistId) {
 						this.playlists[index].songs.push(res.data.song);