2016-01-15 07:27:25 +00:00
|
|
|
<template>
|
|
|
|
<section id="artistWrapper">
|
|
|
|
<h1 class="heading">
|
|
|
|
<span class="overview">
|
|
|
|
<img :src="artist.image" width="64" height="64" class="cover">
|
|
|
|
{{ artist.name }}
|
2016-02-19 07:20:34 +00:00
|
|
|
<i class="fa fa-angle-down toggler"
|
|
|
|
v-show="isPhone && !showingControls"
|
2016-01-15 07:27:25 +00:00
|
|
|
@click="showingControls = true"></i>
|
2016-02-19 07:20:34 +00:00
|
|
|
<i class="fa fa-angle-up toggler"
|
|
|
|
v-show="isPhone && showingControls"
|
2016-01-15 07:27:25 +00:00
|
|
|
@click.prevent="showingControls = false"></i>
|
|
|
|
|
|
|
|
<span class="meta" v-show="meta.songCount">
|
2016-01-15 10:05:54 +00:00
|
|
|
{{ artist.albums.length }} {{ artist.albums.length | pluralize 'album' }}
|
2016-01-15 07:27:25 +00:00
|
|
|
•
|
2016-01-15 10:05:54 +00:00
|
|
|
{{ meta.songCount }} {{ meta.songCount | pluralize 'song' }}
|
2016-02-19 07:20:34 +00:00
|
|
|
•
|
2016-01-15 07:27:25 +00:00
|
|
|
{{ meta.totalLength }}
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<div class="buttons" v-show="!isPhone || showingControls">
|
2016-02-21 11:04:57 +00:00
|
|
|
<button class="play-shuffle btn btn-orange" @click.prevent="shuffle" v-if="selectedSongs.length < 2">
|
2016-01-15 07:27:25 +00:00
|
|
|
<i class="fa fa-random"></i> All
|
|
|
|
</button>
|
2016-02-21 11:04:57 +00:00
|
|
|
<button class="play-shuffle btn btn-orange" @click.prevent="shuffleSelected" v-if="selectedSongs.length > 1">
|
2016-01-15 07:27:25 +00:00
|
|
|
<i class="fa fa-random"></i> Selected
|
|
|
|
</button>
|
2016-02-21 11:04:57 +00:00
|
|
|
<button class="btn btn-green" @click.prevent.stop="showingAddToMenu = !showingAddToMenu" v-if="selectedSongs.length">
|
2016-01-15 07:27:25 +00:00
|
|
|
{{ showingAddToMenu ? 'Cancel' : 'Add To…' }}
|
|
|
|
</button>
|
|
|
|
|
2016-01-16 18:11:24 +00:00
|
|
|
<add-to-menu :songs="selectedSongs" :showing="showingAddToMenu"><add-to-menu>
|
2016-01-15 07:27:25 +00:00
|
|
|
</div>
|
|
|
|
</h1>
|
|
|
|
|
2016-01-16 18:11:24 +00:00
|
|
|
<song-list :items="artist.songs" :selected-songs.sync="selectedSongs" type="artist"></song-list>
|
2016-01-15 07:27:25 +00:00
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import isMobile from 'ismobilejs';
|
|
|
|
|
|
|
|
import artistStore from '../../../stores/artist';
|
|
|
|
import playback from '../../../services/playback';
|
|
|
|
import hasSongList from '../../../mixins/has-song-list';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
mixins: [hasSongList],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
artist: artistStore.stub,
|
|
|
|
isPhone: isMobile.phone,
|
|
|
|
showingControls: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-03-05 09:01:12 +00:00
|
|
|
watch: {
|
|
|
|
/**
|
|
|
|
* Watch the artist's album count.
|
|
|
|
* If this is changed to 0, the user has edit the songs by this artist
|
|
|
|
* and move all of them to another artist (thus delete this artist entirely).
|
|
|
|
* We should then go back to the artist list.
|
|
|
|
*/
|
|
|
|
'artist.albums.length': function (newVal) {
|
|
|
|
if (!newVal) {
|
|
|
|
this.$root.loadMainView('artists');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2016-01-15 07:27:25 +00:00
|
|
|
events: {
|
|
|
|
/**
|
2016-01-15 08:13:23 +00:00
|
|
|
* Listen to 'main-content-view:load' event (triggered from $root currently)
|
|
|
|
* to load the requested artist into view if applicable.
|
|
|
|
*
|
2016-01-17 14:26:24 +00:00
|
|
|
* @param {String} view The view's name
|
2016-01-15 08:13:23 +00:00
|
|
|
* @param {Object} artist
|
2016-01-15 07:27:25 +00:00
|
|
|
*/
|
2016-01-15 08:13:23 +00:00
|
|
|
'main-content-view:load': function (view, artist) {
|
|
|
|
if (view === 'artist') {
|
|
|
|
artistStore.getSongsByArtist(artist);
|
|
|
|
this.artist = artist;
|
|
|
|
}
|
2016-01-15 07:27:25 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
/**
|
|
|
|
* Shuffle the songs by the current artist.
|
|
|
|
*/
|
|
|
|
shuffle() {
|
|
|
|
playback.queueAndPlay(this.artist.songs, true);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="sass" scoped>
|
2016-03-13 17:00:32 +00:00
|
|
|
@import "../../../../sass/partials/_vars.scss";
|
|
|
|
@import "../../../../sass/partials/_mixins.scss";
|
2016-01-15 07:27:25 +00:00
|
|
|
|
|
|
|
#artistWrapper {
|
|
|
|
button.play-shuffle {
|
|
|
|
i {
|
|
|
|
margin-right: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading {
|
|
|
|
.overview {
|
|
|
|
position: relative;
|
|
|
|
padding-left: 84px;
|
2016-01-15 08:26:02 +00:00
|
|
|
|
2016-03-17 09:46:24 +00:00
|
|
|
@media only screen and (max-width : 768px) {
|
2016-01-15 08:26:02 +00:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
2016-01-15 07:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.cover {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: -7px;
|
2016-01-15 08:26:02 +00:00
|
|
|
|
2016-03-17 09:46:24 +00:00
|
|
|
@media only screen and (max-width : 768px) {
|
2016-01-15 08:26:02 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2016-01-15 07:27:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|