2015-12-13 04:42:28 +00:00
|
|
|
<template>
|
|
|
|
<section id="extra" :class="{ showing: prefs.showExtraPanel }">
|
2015-12-19 16:36:44 +00:00
|
|
|
<div class="tabs">
|
|
|
|
<div class="header clear">
|
2016-02-08 13:14:51 +00:00
|
|
|
<a @click.prevent="currentView = 'lyrics'"
|
2016-01-16 18:11:24 +00:00
|
|
|
:class="{ active: currentView === 'lyrics' }">Lyrics</a>
|
2016-02-08 13:14:51 +00:00
|
|
|
<a @click.prevent="currentView = 'artistInfo'"
|
2016-01-16 18:11:24 +00:00
|
|
|
:class="{ active: currentView === 'artistInfo' }">Artist</a>
|
2016-02-08 13:14:51 +00:00
|
|
|
<a @click.prevent="currentView = 'albumInfo'"
|
2016-01-16 18:11:24 +00:00
|
|
|
:class="{ active: currentView === 'albumInfo' }">Album</a>
|
2015-12-19 16:36:44 +00:00
|
|
|
</div>
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2015-12-19 16:36:44 +00:00
|
|
|
<div class="panes">
|
2016-02-08 13:14:51 +00:00
|
|
|
<lyrics :song="song" v-ref:lyrics v-show="currentView === 'lyrics'"></lyrics>
|
|
|
|
<artist-info :artist="song.album.artist" v-ref:artist-info v-show="currentView === 'artistInfo'"></artist-info>
|
|
|
|
<album-info :album="song.album" v-ref:album-info v-show="currentView === 'albumInfo'"></album-info>
|
2015-12-19 16:36:44 +00:00
|
|
|
</div>
|
2015-12-13 04:42:28 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import isMobile from 'ismobilejs';
|
2015-12-19 16:36:44 +00:00
|
|
|
import _ from 'lodash';
|
2016-03-17 09:28:43 +00:00
|
|
|
import $ from 'jquery';
|
2016-02-08 13:14:51 +00:00
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
import lyrics from './lyrics.vue';
|
2016-03-13 17:00:32 +00:00
|
|
|
import artistInfo from './artist-info.vue';
|
|
|
|
import albumInfo from './album-info.vue';
|
2015-12-13 04:42:28 +00:00
|
|
|
import preferenceStore from '../../../stores/preference';
|
2015-12-19 16:36:44 +00:00
|
|
|
import songStore from '../../../stores/song';
|
2016-02-08 13:14:51 +00:00
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
export default {
|
2015-12-19 16:36:44 +00:00
|
|
|
components: { lyrics, artistInfo, albumInfo },
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2016-02-08 13:14:51 +00:00
|
|
|
song: songStore.stub,
|
2015-12-13 04:42:28 +00:00
|
|
|
prefs: preferenceStore.state,
|
2015-12-19 16:36:44 +00:00
|
|
|
currentView: 'lyrics',
|
2015-12-13 04:42:28 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-03-17 09:28:43 +00:00
|
|
|
watch: {
|
|
|
|
/**
|
|
|
|
* Watch the "showExtraPanel" property to add/remove the corresponding class
|
|
|
|
* to/from the html tag.
|
|
|
|
* Some element's CSS can then be controlled based on this class.
|
|
|
|
*/
|
|
|
|
'prefs.showExtraPanel': function (newVal) {
|
|
|
|
if (newVal) {
|
|
|
|
$('html').addClass('with-extra-panel');
|
|
|
|
} else {
|
|
|
|
$('html').removeClass('with-extra-panel');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
ready() {
|
2016-03-17 09:28:43 +00:00
|
|
|
// On ready, add 'with-extra-panel' class.
|
|
|
|
$('html').addClass('with-extra-panel');
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
if (isMobile.phone) {
|
2016-02-08 13:14:51 +00:00
|
|
|
// On a mobile device, we always hide the panel initially regardless of
|
2015-12-13 04:42:28 +00:00
|
|
|
// the saved preference.
|
|
|
|
this.prefs.showExtraPanel = false;
|
|
|
|
preferenceStore.save();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-12-30 04:14:47 +00:00
|
|
|
methods: {
|
|
|
|
/**
|
2016-02-08 13:14:51 +00:00
|
|
|
* Reset all self and applicable child components' states.
|
2015-12-30 04:14:47 +00:00
|
|
|
*/
|
2016-02-08 13:14:51 +00:00
|
|
|
resetState() {
|
|
|
|
this.currentView = 'lyrics';
|
|
|
|
this.song = songStore.stub;
|
2016-01-21 10:21:46 +00:00
|
|
|
_.invoke(this.$refs, 'resetState');
|
2015-12-30 04:14:47 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
events: {
|
|
|
|
'main-content-view:load': function (view) {
|
|
|
|
// Hide the panel away if a main view is triggered on mobile.
|
|
|
|
if (isMobile.phone) {
|
|
|
|
this.prefs.showExtraPanel = false;
|
|
|
|
}
|
2016-01-05 14:04:00 +00:00
|
|
|
|
|
|
|
return true;
|
2015-12-13 04:42:28 +00:00
|
|
|
},
|
2015-12-19 16:36:44 +00:00
|
|
|
|
2016-01-07 09:03:38 +00:00
|
|
|
'song:played': function (song) {
|
2016-02-08 13:14:51 +00:00
|
|
|
songStore.getInfo(this.song = song);
|
2015-12-19 16:36:44 +00:00
|
|
|
},
|
2015-12-30 04:14:47 +00:00
|
|
|
|
|
|
|
'koel:teardown': function () {
|
2016-02-08 13:14:51 +00:00
|
|
|
this.resetState();
|
2015-12-30 04:14:47 +00:00
|
|
|
},
|
2015-12-13 04:42:28 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="sass">
|
2016-03-13 17:00:32 +00:00
|
|
|
@import "../../../../sass/partials/_vars.scss";
|
|
|
|
@import "../../../../sass/partials/_mixins.scss";
|
2016-02-08 13:14:51 +00:00
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
#extra {
|
2016-01-12 14:53:15 +00:00
|
|
|
flex: 0 0 $extraPanelWidth;
|
2015-12-19 16:36:44 +00:00
|
|
|
padding: 24px 16px $footerHeight;
|
2015-12-13 04:42:28 +00:00
|
|
|
background: $colorExtraBgr;
|
|
|
|
max-height: calc(100vh - #{$headerHeight + $footerHeight});
|
|
|
|
display: none;
|
2015-12-19 16:36:44 +00:00
|
|
|
color: $color2ndText;
|
2016-02-24 13:29:23 +00:00
|
|
|
overflow: auto;
|
2016-03-13 03:28:43 +00:00
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2016-02-24 13:29:23 +00:00
|
|
|
|
2016-03-13 03:28:43 +00:00
|
|
|
html.touchevents & {
|
2016-02-24 13:29:23 +00:00
|
|
|
// Enable scroll with momentum on touch devices
|
|
|
|
overflow-y: scroll;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
&.showing {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-weight: $fontWeight_UltraThin;
|
2015-12-19 16:36:44 +00:00
|
|
|
font-size: 28px;
|
2015-12-13 04:42:28 +00:00
|
|
|
margin-bottom: 16px;
|
2015-12-19 16:36:44 +00:00
|
|
|
line-height: 36px;
|
|
|
|
|
|
|
|
@include vertical-center();
|
2015-12-20 06:22:15 +00:00
|
|
|
align-items: initial;
|
2015-12-19 16:36:44 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
flex: 1;
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $colorHighlight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.more {
|
|
|
|
margin-top: 8px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background: $colorBlue;
|
|
|
|
color: #fff;
|
|
|
|
padding: 4px 8px;
|
|
|
|
display: inline-block;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
margin-top: 24px;
|
|
|
|
font-size: 90%;
|
|
|
|
|
|
|
|
a {
|
2016-02-08 13:14:51 +00:00
|
|
|
color: #fff;
|
2015-12-19 16:36:44 +00:00
|
|
|
font-weight: $fontWeight_Normal;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: #b90000;
|
|
|
|
}
|
|
|
|
}
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-17 09:46:24 +00:00
|
|
|
@media only screen and (max-width : 1024px) {
|
2015-12-13 04:42:28 +00:00
|
|
|
position: fixed;
|
|
|
|
height: calc(100vh - #{$headerHeight + $footerHeight});
|
|
|
|
padding-bottom: $footerHeight; // make sure the footer can never overlap the content
|
2016-01-12 14:53:15 +00:00
|
|
|
width: $extraPanelWidth;
|
2015-12-13 04:42:28 +00:00
|
|
|
z-index: 5;
|
|
|
|
top: $headerHeight;
|
|
|
|
right: -100%;
|
|
|
|
transition: right .3s ease-in;
|
|
|
|
|
|
|
|
&.showing {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-17 09:46:24 +00:00
|
|
|
@media only screen and (max-width : 667px) {
|
2015-12-13 04:42:28 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|