mirror of
https://github.com/koel/koel
synced 2024-12-23 19:13:06 +00:00
66 lines
1.8 KiB
Vue
66 lines
1.8 KiB
Vue
|
<template>
|
||
|
<section id="songsWrapper">
|
||
|
<h1 class="heading">
|
||
|
<span>All Songs
|
||
|
<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">
|
||
|
<button class="play-shuffle" @click.prevent="shuffle" v-if="state.songs.length">
|
||
|
<i class="fa fa-random"></i> All
|
||
|
</button>
|
||
|
</div>
|
||
|
</h1>
|
||
|
|
||
|
<song-list :items="state.songs"></song-list>
|
||
|
</section>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import isMobile from 'ismobilejs';
|
||
|
|
||
|
import songList from '../../shared/song-list.vue';
|
||
|
import songStore from '../../../stores/song';
|
||
|
import playback from '../../../services/playback';
|
||
|
|
||
|
export default {
|
||
|
components: { songList },
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
state: songStore.state,
|
||
|
isPhone: isMobile.phone,
|
||
|
showingControls: false,
|
||
|
};
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
/**
|
||
|
* Shuffle all songs.
|
||
|
*/
|
||
|
shuffle() {
|
||
|
// A null here tells the method to shuffle all songs, which is what we want.
|
||
|
playback.queueAndPlay(null, true);
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="sass">
|
||
|
@import "resources/assets/sass/partials/_vars.scss";
|
||
|
@import "resources/assets/sass/partials/_mixins.scss";
|
||
|
|
||
|
#songsWrapper {
|
||
|
.none {
|
||
|
color: $color2ndText;
|
||
|
margin-top: 16px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
|