Browse Source

fix(SongActions): when moving song to top/bottom of playlist, song actions should close

Signed-off-by: Jonathan Graham <theflametrooper@gmail.com>
Jonathan Graham 3 years ago
parent
commit
5aea7d9aff

+ 5 - 0
frontend/src/components/Queue.vue

@@ -30,6 +30,7 @@
 							'item-draggable': isAdminOnly() || isOwnerOnly()
 						}"
 						:disabled-actions="[]"
+						:ref="`song-item-${index}`"
 					>
 						<template
 							v-if="isAdminOnly() || isOwnerOnly()"
@@ -253,6 +254,8 @@ export default {
 			);
 		},
 		moveSongToTop(song, index) {
+			this.$refs[`song-item-${index}`].$refs.songActions.tippy.hide();
+
 			this.repositionSongInQueue({
 				moved: {
 					element: song,
@@ -262,6 +265,8 @@ export default {
 			});
 		},
 		moveSongToBottom(song, index) {
+			this.$refs[`song-item-${index}`].$refs.songActions.tippy.hide();
+
 			this.repositionSongInQueue({
 				moved: {
 					element: song,

+ 5 - 0
frontend/src/components/modals/EditPlaylist/index.vue

@@ -112,6 +112,7 @@
 											:class="{
 												'item-draggable': isEditable()
 											}"
+											:ref="`song-item-${index}`"
 										>
 											<template #actions>
 												<i
@@ -422,6 +423,8 @@ export default {
 			);
 		},
 		moveSongToTop(song, index) {
+			this.$refs[`song-item-${index}`].$refs.songActions.tippy.hide();
+
 			this.repositionSong({
 				moved: {
 					element: song,
@@ -431,6 +434,8 @@ export default {
 			});
 		},
 		moveSongToBottom(song, index) {
+			this.$refs[`song-item-${index}`].$refs.songActions.tippy.hide();
+
 			this.repositionSong({
 				moved: {
 					element: song,

+ 0 - 2
frontend/src/mixins/SearchMusare.vue

@@ -49,8 +49,6 @@ export default {
 							...this.musareSearch.results,
 							...songs
 						];
-						console.log(this.musareSearch.results);
-
 						this.musareSearch.page = page;
 						this.musareSearch.count = count;
 						this.musareSearch.resultsLeft =