koel/resources/assets/js/components/main-wrapper/extra/artist-info.vue

84 lines
2.4 KiB
Vue
Raw Normal View History

<template>
<article v-if="song" id="artistInfo">
<h1>
2016-01-16 18:11:24 +00:00
<span>{{ song.album.artist.name }}</span>
<a class="shuffle" @click.prevent="shuffleAll"><i class="fa fa-random"></i></a>
</h1>
<div v-if="song.album.artist.info">
<img v-if="song.album.artist.info.image" :src="song.album.artist.info.image"
title="They see me posin, they hatin"
class="cool-guys-posing cover">
<div class="bio" v-if="song.album.artist.info.bio.summary">
<div class="summary" v-show="!showingFullBio">{{{ song.album.artist.info.bio.summary }}}</div>
<div class="full" v-show="showingFullBio">{{{ song.album.artist.info.bio.full }}}</div>
<button class="more" v-show="!showingFullBio" @click.prevent="showingFullBio = !showingFullBio">
Full Bio
</button>
</div>
<p class="none" v-else>This artist has no Last.fm biography yet.</p>
<footer>Data &copy; <a target="_blank" href="{{{ song.album.artist.info.url }}}">Last.fm</a></footer>
</div>
<p class="none" v-else>Nothing can be found. This artist is a mystery.</p>
</article>
</template>
<script>
import playback from '../../../services/playback';
export default {
replace: false,
data() {
return {
song: null,
showingFullBio: false,
};
},
methods: {
2016-01-07 09:03:38 +00:00
/**
* Reset the component's current state (song, artist info etc.).
*/
resetState() {
this.song = null;
this.showingFullBio = false;
},
2016-01-07 09:03:38 +00:00
/**
* Shuffle all songs performed by the current song's artist.
*/
shuffleAll() {
playback.playAllByArtist(this.song.album.artist);
},
},
events: {
'song:info-loaded': function (song) {
this.song = song;
},
},
}
</script>
<style lang="sass">
@import "resources/assets/sass/partials/_vars.scss";
@import "resources/assets/sass/partials/_mixins.scss";
#artistInfo {
img.cool-guys-posing {
width: 100%;
height: auto;
}
.bio {
margin-top: 16px;
}
}
</style>