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

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 години
родител
ревизия
5aea7d9aff
променени са 3 файла, в които са добавени 10 реда и са изтрити 2 реда
  1. 5 0
      frontend/src/components/Queue.vue
  2. 5 0
      frontend/src/components/modals/EditPlaylist/index.vue
  3. 0 2
      frontend/src/mixins/SearchMusare.vue

+ 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 =