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-05 14:04:00 +00:00
|
|
|
<button class="add-to" @click.prevent="showingAddToMenu = !showingAddToMenu" v-if="state.songs.length > 1">
|
|
|
|
{{ showingAddToMenu ? '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-05 14:04:00 +00:00
|
|
|
<add-to-menu
|
|
|
|
:songs="songsToAddTo"
|
|
|
|
:showing.sync="showingAddToMenu"
|
|
|
|
:settings="{ canQueue: false }">
|
|
|
|
</add-to-menu>
|
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-05 14:04:00 +00:00
|
|
|
import addToMenu from '../../shared/add-to-menu.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-05 14:04:00 +00:00
|
|
|
components: { songList, addToMenu },
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
state: queueStore.state,
|
2016-01-05 14:04:00 +00:00
|
|
|
showingAddToMenu: 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
|
|
|
|
*/
|
2016-01-05 14:04:00 +00:00
|
|
|
songsToAddTo() {
|
2016-01-03 10:24:12 +00:00
|
|
|
return this.selectedSongs.length ? this.selectedSongs : queueStore.all();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
watch: {
|
|
|
|
/**
|
|
|
|
* Watch the number of songs currently queued.
|
2016-01-05 14:04:00 +00:00
|
|
|
* If we don't have any queuing song, the "Add To..." menu shouldn't be left open.
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
|
|
|
'state.songs': function () {
|
|
|
|
if (!queueStore.all().length) {
|
2016-01-05 14:04:00 +00:00
|
|
|
this.showingAddToMenu = 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>
|