koel/resources/assets/js/components/main-wrapper/main-content/queue.vue

149 lines
4.5 KiB
Vue
Raw Normal View History

2015-12-13 04:42:28 +00:00
<template>
<div id="queueWrapper">
<h1 class="heading">
<span title="That's a freaking lot of U's and E's">Current Queue
<i class="fa fa-chevron-down toggler"
v-show="isPhone && !showingControls"
@click="showingControls = true"></i>
<i class="fa fa-chevron-up toggler"
v-show="isPhone && showingControls"
@click.prevent="showingControls = false"></i>
</span>
<div class="buttons" v-show="!isPhone || showingControls">
2015-12-14 04:25:42 +00:00
<button
class="play-shuffle"
@click.prevent="shuffle"
v-if="state.songs.length > 1 && selectedSongs.length < 2"
>
2015-12-13 04:42:28 +00:00
<i class="fa fa-random"></i> All
</button>
2015-12-14 04:25:42 +00:00
<button class="play-shuffle" @click.prevent="shuffleSelected" v-if="selectedSongs.length > 1">
<i class="fa fa-random"></i> Selected
</button>
2016-01-03 10:24:12 +00:00
<button class="save"
@click.prevent="showAddToPlaylistDialog = !showAddToPlaylistDialog"
v-if="state.songs.length > 1"
>
{{ showAddToPlaylistDialog ? 'Cancel' : 'Add To…' }}
2015-12-13 04:42:28 +00:00
</button>
<button class="clear" @click.prevent="clear" v-if="state.songs.length">Clear</button>
2016-01-03 10:24:12 +00:00
<add-to-playlist
:songs="songsToAddToPlaylist"
:showing.sync="showAddToPlaylistDialog">
</add-to-playlist>
2015-12-13 04:42:28 +00:00
</div>
</h1>
2015-12-14 04:25:42 +00:00
<song-list :items="state.songs" :selected-songs.sync="selectedSongs" type="queue"></song-list>
2015-12-13 04:42:28 +00:00
</div>
</template>
<script>
import _ from 'lodash';
import isMobile from 'ismobilejs';
import songList from '../../shared/song-list.vue';
2016-01-03 10:24:12 +00:00
import addToPlaylist from '../../shared/add-to-playlist.vue';
2015-12-13 04:42:28 +00:00
import playlistStore from '../../../stores/playlist';
import queueStore from '../../../stores/queue';
import playback from '../../../services/playback';
2015-12-14 04:25:42 +00:00
import shuffleSelectedMixin from '../../../mixins/shuffle-selected';
2015-12-13 04:42:28 +00:00
export default {
2015-12-14 04:25:42 +00:00
mixins: [shuffleSelectedMixin],
2016-01-03 10:24:12 +00:00
components: { songList, addToPlaylist },
2015-12-13 04:42:28 +00:00
data() {
return {
state: queueStore.state,
2016-01-03 10:24:12 +00:00
showAddToPlaylistDialog: false,
2015-12-13 04:42:28 +00:00
playlistName: '',
isPhone: isMobile.phone,
showingControls: false,
};
},
2016-01-03 10:24:12 +00:00
computed: {
/**
* If no songs are selected, we provide all queued songs as a tribute to playlist god.
*
* @return {Array} The songs to add into a (new) playlist
*/
songsToAddToPlaylist() {
return this.selectedSongs.length ? this.selectedSongs : queueStore.all();
},
},
2015-12-13 04:42:28 +00:00
watch: {
/**
* Watch the number of songs currently queued.
* If we don't have any queuing song, the "Save to Playlist" form shouldn't be open.
*/
'state.songs': function () {
if (!queueStore.all().length) {
2016-01-03 10:24:12 +00:00
this.showAddToPlaylist = false;
2015-12-13 04:42:28 +00:00
}
},
},
methods: {
/**
* Shuffle the current queue.
*/
shuffle() {
playback.queueAndPlay(queueStore.shuffle());
},
/**
* Clear the queue.
*/
clear() {
queueStore.clear();
},
},
};
</script>
<style lang="sass">
@import "resources/assets/sass/partials/_vars.scss";
@import "resources/assets/sass/partials/_mixins.scss";
#queueWrapper {
.none {
color: $color2ndText;
margin-top: 16px;
}
button.play-shuffle {
i {
margin-right: 0 !important;
}
}
button.clear {
2016-01-03 10:24:12 +00:00
background-color: $colorRed !important;
2015-12-13 04:42:28 +00:00
&:hover {
2016-01-03 10:24:12 +00:00
background-color: darken($colorRed, 10%) !important;
2015-12-13 04:42:28 +00:00
}
}
button.save {
background-color: $colorGreen !important;
&:hover {
background-color: darken($colorGreen, 10%) !important;
}
}
@media only screen
and (max-device-width : 667px)
and (orientation : portrait) {
}
}
</style>