koel/resources/assets/js/components/shared/album-item.vue
An Phan f43e72355c Add thumbnails/listing view mode (close #278)
This commit adds an option to change view mode (thumbnails/listing) for
artists and albums views.
2016-03-28 19:51:49 +08:00

89 lines
2.7 KiB
Vue

<template>
<article class="item" v-if="album.songs.length" draggable="true" @dragstart="dragStart">
<span class="cover" :style="{ backgroundImage: 'url(' + album.cover + ')' }">
<a class="control" @click.prevent="play">
<i class="fa fa-play"></i>
</a>
</span>
<footer>
<a class="name" @click.prevent="viewDetails">{{ album.name }}</a>
<span class="sep">by</span>
<a class="artist" @click.prevent="viewArtistDetails">{{ album.artist.name }}</a>
<p class="meta">
{{ album.songs.length }} {{ album.songs.length | pluralize 'song' }}
{{ album.fmtLength }}
{{ album.playCount }} {{ album.playCount | pluralize 'play' }}
</p>
</footer>
</article>
</template>
<script>
import _ from 'lodash';
import $ from 'jquery';
import playback from '../../services/playback';
import queueStore from '../../stores/queue';
export default {
props: ['album'],
methods: {
/**
* Play all songs in the current album, or queue them up if Ctrl/Cmd key is pressed.
*/
play(e) {
if (e.metaKey || e.ctrlKey) {
queueStore.queue(this.album.songs);
} else {
playback.playAllInAlbum(this.album);
}
},
/**
* Load the album details screen.
*/
viewDetails() {
this.$root.loadAlbum(this.album);
},
/**
* Load the artist details screen.
*/
viewArtistDetails() {
this.$root.loadArtist(this.album.artist);
},
/**
* Allow dragging the album (actually, its songs).
*/
dragStart(e) {
let songIds = _.pluck(this.album.songs, 'id');
e.dataTransfer.setData('text/plain', songIds);
e.dataTransfer.effectAllowed = 'move';
// Set a fancy drop image using our ghost element.
let $ghost = $('#dragGhost').text(`All ${songIds.length} song${songIds.length === 1 ? '' : 's'} in ${this.album.name}`);
e.dataTransfer.setDragImage($ghost[0], 0, 0);
},
},
};
</script>
<style lang="sass">
@import "../../../sass/partials/_vars.scss";
@import "../../../sass/partials/_mixins.scss";
@include artist-album-card();
.sep {
display: none;
color: $color2ndText;
.as-list & {
display: inline;
}
}
</style>