mirror of
https://github.com/koel/koel
synced 2024-12-23 11:03:05 +00:00
148 lines
4.6 KiB
Vue
148 lines
4.6 KiB
Vue
<template>
|
|
<section id="albumWrapper">
|
|
<h1 class="heading">
|
|
<span class="overview">
|
|
<img :src="album.cover" width="64" height="64" class="cover">
|
|
{{ album.name }}
|
|
<i class="fa fa-angle-down toggler"
|
|
v-show="isPhone && !showingControls"
|
|
@click="showingControls = true"></i>
|
|
<i class="fa fa-angle-up toggler"
|
|
v-show="isPhone && showingControls"
|
|
@click.prevent="showingControls = false"></i>
|
|
|
|
<span class="meta" v-show="meta.songCount">
|
|
by <a class="artist" @click.prevent="viewArtistDetails">{{ album.artist.name }}</a>
|
|
•
|
|
{{ meta.songCount }} {{ meta.songCount | pluralize 'song' }}
|
|
•
|
|
{{ meta.totalLength }}
|
|
</span>
|
|
</span>
|
|
|
|
<div class="buttons" v-show="!isPhone || showingControls">
|
|
<button class="play-shuffle btn btn-orange" @click.prevent="shuffle" v-if="selectedSongs.length < 2">
|
|
<i class="fa fa-random"></i> All
|
|
</button>
|
|
<button class="play-shuffle btn btn-orange" @click.prevent="shuffleSelected" v-if="selectedSongs.length > 1">
|
|
<i class="fa fa-random"></i> Selected
|
|
</button>
|
|
<button class="btn btn-green" @click.prevent.stop="showingAddToMenu = !showingAddToMenu" v-if="selectedSongs.length">
|
|
{{ showingAddToMenu ? 'Cancel' : 'Add To…' }}
|
|
</button>
|
|
|
|
<add-to-menu :songs="selectedSongs" :showing="showingAddToMenu"></add-to-menu>
|
|
</div>
|
|
</h1>
|
|
|
|
<song-list :items="album.songs" :selected-songs.sync="selectedSongs" type="album"></song-list>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import isMobile from 'ismobilejs';
|
|
|
|
import albumStore from '../../../stores/album';
|
|
import playback from '../../../services/playback';
|
|
import hasSongList from '../../../mixins/has-song-list';
|
|
|
|
export default {
|
|
mixins: [hasSongList],
|
|
|
|
data() {
|
|
return {
|
|
album: albumStore.stub,
|
|
isPhone: isMobile.phone,
|
|
showingControls: false,
|
|
};
|
|
},
|
|
|
|
watch: {
|
|
/**
|
|
* Watch the album's song count.
|
|
* If this is changed to 0, the user has edit the songs in this album
|
|
* and move all of them into another album.
|
|
* We should then go back to the album list.
|
|
*/
|
|
'album.songs.length': function (newVal) {
|
|
if (!newVal) {
|
|
this.$root.loadMainView('albums');
|
|
}
|
|
},
|
|
},
|
|
|
|
events: {
|
|
/**
|
|
* Listen to 'main-content-view:load' event (triggered from $root currently)
|
|
* to load the requested album into view if applicable.
|
|
*
|
|
* @param {String} view The view name
|
|
* @param {Object} album The album object
|
|
*/
|
|
'main-content-view:load': function (view, album) {
|
|
if (view === 'album') {
|
|
this.album = album;
|
|
}
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
/**
|
|
* Shuffle the songs in the current album.
|
|
*/
|
|
shuffle() {
|
|
playback.queueAndPlay(this.album.songs, true);
|
|
},
|
|
|
|
/**
|
|
* Load the artist details screen.
|
|
*/
|
|
viewArtistDetails() {
|
|
this.$root.loadArtist(this.album.artist);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass" scoped>
|
|
@import "../../../../sass/partials/_vars.scss";
|
|
@import "../../../../sass/partials/_mixins.scss";
|
|
|
|
#albumWrapper {
|
|
button.play-shuffle {
|
|
i {
|
|
margin-right: 0 !important;
|
|
}
|
|
}
|
|
|
|
.heading {
|
|
.overview {
|
|
position: relative;
|
|
padding-left: 84px;
|
|
|
|
@media only screen and (max-width : 768px) {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
.cover {
|
|
position: absolute;
|
|
left: 0;
|
|
top: -7px;
|
|
|
|
@media only screen and (max-width : 768px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
a.artist {
|
|
color: $colorMainText;
|
|
display: inline;
|
|
|
|
&:hover {
|
|
color: $colorHighlight;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|