mirror of
https://github.com/koel/koel
synced 2024-12-22 18:43:21 +00:00
40 lines
1.1 KiB
Vue
40 lines
1.1 KiB
Vue
<template>
|
||
<article class="item" v-if="album.songs.length">
|
||
<span class="cover" :style="{ backgroundImage: 'url(' + album.cover + ')' }">
|
||
<a class="control" @click.prevent="play">
|
||
<i class="fa fa-play"></i>
|
||
</a>
|
||
</span>
|
||
<footer>
|
||
<p class="name">{{ album.name }}</p>
|
||
<p class="artist">{{ album.artist.name }}</p>
|
||
<p class="meta">
|
||
{{ album.songs.length }} song{{ album.songs.length == 1 ? '' : 's' }}
|
||
–
|
||
{{ album.fmtLength }}
|
||
</p>
|
||
</footer>
|
||
</article>
|
||
</template>
|
||
|
||
<script>
|
||
import playback from '../../services/playback';
|
||
|
||
export default {
|
||
props: ['album'],
|
||
|
||
methods: {
|
||
/**
|
||
* Play all songs in the current album.
|
||
*/
|
||
play() {
|
||
playback.queueAndPlay(this.album.songs);
|
||
},
|
||
},
|
||
};
|
||
</script>
|
||
|
||
<style lang="sass">
|
||
@import "resources/assets/sass/partials/_vars.scss";
|
||
@import "resources/assets/sass/partials/_mixins.scss";
|
||
</style>
|