2016-02-07 04:23:12 +00:00
|
|
|
|
<template>
|
|
|
|
|
<section id="homeWrapper">
|
|
|
|
|
<h1 class="heading">
|
|
|
|
|
<span>{{ greeting }}</span>
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
<div class="main-scroll-wrap">
|
2016-02-14 07:18:40 +00:00
|
|
|
|
<div class="top-sections">
|
|
|
|
|
<section v-if="topSongs.length">
|
|
|
|
|
<h1>Most Played Songs</h1>
|
2016-02-07 04:23:12 +00:00
|
|
|
|
|
2016-02-14 07:18:40 +00:00
|
|
|
|
<ol class="top-song-list">
|
|
|
|
|
<li v-for="song in topSongs"
|
|
|
|
|
:class="{ playing: song.playbackState === 'playing' || song.playbackState === 'paused' }"
|
|
|
|
|
@dblclick.prevent="play(song)"
|
|
|
|
|
>
|
|
|
|
|
<span class="cover" :style="{ backgroundImage: 'url(' + song.album.cover + ')' }">
|
|
|
|
|
<a class="control" @click.prevent="triggerPlay(song)">
|
|
|
|
|
<i class="fa fa-play" v-show="song.playbackState !== 'playing'"></i>
|
|
|
|
|
<i class="fa fa-pause" v-else></i>
|
|
|
|
|
</a>
|
|
|
|
|
</span>
|
|
|
|
|
<span class="details">
|
|
|
|
|
<span :style="{ width: song.playCount * 100 / topSongs[0].playCount + '%' }"
|
|
|
|
|
class="play-count"></span>
|
|
|
|
|
{{ song.title }}
|
|
|
|
|
<span class="by">{{ song.album.artist.name }} –
|
|
|
|
|
{{ song.playCount }} {{ song.playCount | pluralize 'play' }}</span>
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
</ol>
|
|
|
|
|
</section>
|
2016-02-07 04:23:12 +00:00
|
|
|
|
|
2016-02-14 07:18:40 +00:00
|
|
|
|
<section class="recent">
|
|
|
|
|
<h1>Recently Played</h1>
|
|
|
|
|
|
|
|
|
|
<ol class="recent-song-list" v-show="recentSongs.length">
|
|
|
|
|
<li v-for="song in recentSongs"
|
|
|
|
|
:class="{ playing: song.playbackState === 'playing' || song.playbackState === 'paused' }"
|
|
|
|
|
@dblclick.prevent="play(song)"
|
|
|
|
|
>
|
|
|
|
|
<span class="cover" :style="{ backgroundImage: 'url(' + song.album.cover + ')' }">
|
|
|
|
|
<a class="control" @click.prevent="triggerPlay(song)">
|
|
|
|
|
<i class="fa fa-play" v-show="song.playbackState !== 'playing'"></i>
|
|
|
|
|
<i class="fa fa-pause" v-else></i>
|
|
|
|
|
</a>
|
|
|
|
|
</span>
|
|
|
|
|
<span class="details">
|
|
|
|
|
{{ song.title }}
|
|
|
|
|
<span class="by">{{ song.album.artist.name }}</span>
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
|
|
<p class="none" v-show="!recentSongs.length">
|
|
|
|
|
Your most-recent songs in this session will be displayed here.<br />
|
|
|
|
|
Start listening!
|
|
|
|
|
</p>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
2016-02-07 04:23:12 +00:00
|
|
|
|
|
2016-02-08 12:21:24 +00:00
|
|
|
|
<section class="top-artists" v-if="topArtists.length">
|
2016-02-07 04:23:12 +00:00
|
|
|
|
<h1>Top Artists</h1>
|
|
|
|
|
|
|
|
|
|
<div class="wrapper">
|
|
|
|
|
<artist-item v-for="artist in topArtists" :artist="artist"></artist-item>
|
|
|
|
|
<span class="item"></span>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
2016-02-08 12:21:24 +00:00
|
|
|
|
<section class="top-albums" v-if="topAlbums.length">
|
2016-02-07 04:23:12 +00:00
|
|
|
|
<h1>Top Albums</h1>
|
|
|
|
|
|
|
|
|
|
<div class="wrapper">
|
|
|
|
|
<album-item v-for="album in topAlbums" :album="album"></album-item>
|
|
|
|
|
<span class="item"></span>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
|
|
|
|
import playback from '../../../services/playback';
|
|
|
|
|
import songStore from '../../../stores/song';
|
|
|
|
|
import albumStore from '../../../stores/album';
|
|
|
|
|
import artistStore from '../../../stores/artist';
|
|
|
|
|
import userStore from '../../../stores/user';
|
2016-02-14 07:18:40 +00:00
|
|
|
|
import queueStore from '../../../stores/queue';
|
2016-02-07 04:23:12 +00:00
|
|
|
|
|
|
|
|
|
import albumItem from '../../shared/album-item.vue';
|
|
|
|
|
import artistItem from '../../shared/artist-item.vue';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: { albumItem, artistItem },
|
|
|
|
|
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
greetings: [
|
|
|
|
|
'Oh hai!',
|
|
|
|
|
'Hey, %s!',
|
|
|
|
|
'Howdy, %s!',
|
|
|
|
|
'Yo!',
|
|
|
|
|
'How’s it going, %s?',
|
|
|
|
|
'Sup, %s?',
|
|
|
|
|
'How’s life, %s?',
|
|
|
|
|
'How’s your day, %s?',
|
|
|
|
|
'How have you been, %s?',
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
|
greeting() {
|
|
|
|
|
return _.sample(this.greetings).replace('%s', userStore.current().name);
|
|
|
|
|
},
|
|
|
|
|
|
2016-02-14 07:18:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* The most recently played songs.
|
|
|
|
|
*
|
|
|
|
|
* @return {Array.<Object>}
|
|
|
|
|
*/
|
|
|
|
|
recentSongs() {
|
|
|
|
|
return songStore.getRecent(7);
|
|
|
|
|
},
|
|
|
|
|
|
2016-02-08 13:14:51 +00:00
|
|
|
|
/**
|
|
|
|
|
* The most played songs.
|
|
|
|
|
*
|
|
|
|
|
* @return {Array.<Object>}
|
|
|
|
|
*/
|
2016-02-07 04:23:12 +00:00
|
|
|
|
topSongs() {
|
2016-02-14 07:18:40 +00:00
|
|
|
|
return songStore.getMostPlayed(7);
|
2016-02-07 04:23:12 +00:00
|
|
|
|
},
|
|
|
|
|
|
2016-02-08 13:14:51 +00:00
|
|
|
|
/**
|
|
|
|
|
* The most played albums.
|
|
|
|
|
*
|
|
|
|
|
* @return {Array.<Object>}
|
|
|
|
|
*/
|
2016-02-07 04:23:12 +00:00
|
|
|
|
topAlbums() {
|
|
|
|
|
return albumStore.getMostPlayed();
|
|
|
|
|
},
|
|
|
|
|
|
2016-02-08 13:14:51 +00:00
|
|
|
|
/**
|
|
|
|
|
* The most played artists.
|
|
|
|
|
* @return {Array.<Object>}
|
|
|
|
|
*/
|
2016-02-07 04:23:12 +00:00
|
|
|
|
topArtists() {
|
|
|
|
|
return artistStore.getMostPlayed();
|
|
|
|
|
},
|
|
|
|
|
},
|
2016-02-14 07:18:40 +00:00
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
play(song) {
|
|
|
|
|
if (!queueStore.contains(song)) {
|
|
|
|
|
queueStore.queueAfterCurrent(song);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
playback.play(song);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Trigger playing a song.
|
|
|
|
|
*/
|
|
|
|
|
triggerPlay(song) {
|
|
|
|
|
if (song.playbackState === 'stopped') {
|
|
|
|
|
this.play(song);
|
|
|
|
|
} else if (song.playbackState === 'paused') {
|
|
|
|
|
playback.resume();
|
|
|
|
|
} else {
|
|
|
|
|
playback.pause();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2016-02-07 04:23:12 +00:00
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="sass">
|
|
|
|
|
@import "resources/assets/sass/partials/_vars.scss";
|
|
|
|
|
@import "resources/assets/sass/partials/_mixins.scss";
|
|
|
|
|
|
|
|
|
|
#homeWrapper {
|
2016-02-14 07:18:40 +00:00
|
|
|
|
.top-sections {
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
> section {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
flex-basis: 0;
|
|
|
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
2016-02-07 04:23:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-14 07:18:40 +00:00
|
|
|
|
ol li {
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
&.playing {
|
|
|
|
|
color: $colorHighlight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover .cover {
|
|
|
|
|
.control {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
opacity: .7;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cover {
|
|
|
|
|
flex: 0 0 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
@include vertical-center();
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: " ";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
background: #000;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
|
|
html.touchevents & {
|
|
|
|
|
opacity: .7;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
background: rgba(0, 0, 0, .7);
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
display: none;
|
|
|
|
|
color: #fff;
|
|
|
|
|
transition: .3s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: scale(1.2);
|
|
|
|
|
border-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.touchevents & {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.details {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
.play-count {
|
|
|
|
|
background: rgba(255, 255, 255, 0.08);
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 100%;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.by {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 90%;
|
|
|
|
|
opacity: .6;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//border-bottom: 1px solid $color2ndBgr;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
2016-02-07 04:23:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.none {
|
|
|
|
|
color: $color2ndText;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: $colorHighlight;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.top-artists .wrapper, .top-albums .wrapper {
|
|
|
|
|
@include artist-album-wrapper();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-scroll-wrap {
|
|
|
|
|
section {
|
|
|
|
|
margin-bottom: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
margin: 0 0 24px;
|
|
|
|
|
font-weight: $fontWeight_UltraThin;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-14 07:18:40 +00:00
|
|
|
|
|
|
|
|
|
@media only screen and (max-device-width: 768px) {
|
|
|
|
|
.top-sections {
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
> section {
|
|
|
|
|
&:first-of-type {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-07 04:23:12 +00:00
|
|
|
|
}
|
|
|
|
|
</style>
|