mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
67 lines
1.6 KiB
JavaScript
67 lines
1.6 KiB
JavaScript
|
import $ from 'jquery';
|
||
|
|
||
|
import queueStore from '../stores/queue';
|
||
|
import playlistStore from '../stores/playlist';
|
||
|
import favoriteStore from '../stores/favorite';
|
||
|
|
||
|
/**
|
||
|
* Includes the methods triggerable on a song (context) menu.
|
||
|
* Each component including this mixin must have a `songs` array as either data, prop, or computed.
|
||
|
* Note that for some components, some of the methods here may not be applicable, or overridden,
|
||
|
* for example close() and open().
|
||
|
*/
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
shown: false,
|
||
|
top: 0,
|
||
|
left: 0,
|
||
|
};
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
open() {},
|
||
|
|
||
|
close() {
|
||
|
// Close all submenus
|
||
|
$(this.$el).find('.submenu').hide();
|
||
|
|
||
|
this.shown = false;
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* Queue selected songs to bottom of queue.
|
||
|
*/
|
||
|
queueSongsToBottom() {
|
||
|
queueStore.queue(this.songs);
|
||
|
this.close();
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* Queue selected songs to top of queue.
|
||
|
*/
|
||
|
queueSongsToTop() {
|
||
|
queueStore.queue(this.songs, false, true);
|
||
|
this.close();
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* Add the selected songs into Favorite.
|
||
|
*/
|
||
|
addSongsToFavorite() {
|
||
|
favoriteStore.like(this.songs);
|
||
|
this.close();
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* Add the selected songs into the chosen playlist.
|
||
|
*
|
||
|
* @param {Object} playlist The playlist.
|
||
|
*/
|
||
|
addSongsToExistingPlaylist(playlist) {
|
||
|
playlistStore.addSongs(playlist, this.songs);
|
||
|
this.close();
|
||
|
},
|
||
|
},
|
||
|
};
|