mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
191 lines
5.6 KiB
Vue
191 lines
5.6 KiB
Vue
<template>
|
|
<section id="mainContent">
|
|
<div class="translucent" :style="{ backgroundImage: albumCover ? 'url(' + albumCover + ')' : 'none' }"></div>
|
|
<songs v-show="view == 'songs'"></songs>
|
|
<queue v-show="view == 'queue'"></queue>
|
|
<albums v-show="view == 'albums'"></albums>
|
|
<artists v-show="view == 'artists'"></artists>
|
|
<users v-show="view == 'users'"></users>
|
|
<settings v-show="view == 'settings'"></settings>
|
|
<playlist v-show="view == 'playlist'"></playlist>
|
|
<favorites v-show="view == 'favorites'"></favorites>
|
|
<profile v-show="view == 'profile'"></profile>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import albums from './albums.vue';
|
|
import artists from './artists.vue';
|
|
import songs from './songs.vue';
|
|
import settings from './settings.vue';
|
|
import users from './users.vue';
|
|
import queue from './queue.vue';
|
|
import playlist from './playlist.vue';
|
|
import favorites from './favorites.vue';
|
|
import profile from './profile.vue';
|
|
import albumStore from '../../../stores/album';
|
|
|
|
export default {
|
|
components: { albums, artists, songs, settings, users, queue, playlist, favorites, profile },
|
|
|
|
props: ['songs', 'queue', 'albums', 'artists', 'users', 'settings', 'playlist', 'favorites', 'profile'],
|
|
|
|
data() {
|
|
return {
|
|
view: 'queue', // The default view
|
|
albumCover: null,
|
|
};
|
|
},
|
|
|
|
events: {
|
|
'main-content-view:load': function (view) {
|
|
this.view = view;
|
|
},
|
|
|
|
/**
|
|
* When a new song is played, find it cover for the translucent effect.
|
|
*
|
|
* @param object song
|
|
*
|
|
* @return true
|
|
*/
|
|
'song:play': function (song) {
|
|
this.albumCover = song.album.cover === albumStore.stub.cover ? null : song.album.cover;
|
|
|
|
return true;
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass">
|
|
@import "resources/assets/sass/partials/_vars.scss";
|
|
@import "resources/assets/sass/partials/_mixins.scss";
|
|
|
|
#mainContent {
|
|
flex: 1;
|
|
position: relative;
|
|
|
|
h1.heading {
|
|
font-weight: $fontWeight_UltraThin;
|
|
font-size: 48px;
|
|
padding: 12px 24px;
|
|
border-bottom: 1px solid $color2ndBgr;
|
|
min-height: 90px;
|
|
position: relative;
|
|
align-items: center;
|
|
align-content: stretch;
|
|
display: flex;
|
|
|
|
span:first-child {
|
|
flex: 1;
|
|
}
|
|
|
|
.buttons {
|
|
text-align: right;
|
|
position: relative;
|
|
z-index: 2;
|
|
display: flex;
|
|
|
|
button {
|
|
$buttonHeight: 28px;
|
|
background-color: $colorHighlight;
|
|
font-size: 12px;
|
|
height: $buttonHeight;
|
|
padding: 0 16px;
|
|
line-height: $buttonHeight;
|
|
text-transform: uppercase;
|
|
display: inline-block;
|
|
|
|
border-radius: $buttonHeight/2 0px 0px $buttonHeight/2;
|
|
|
|
&:last-of-type {
|
|
border-top-right-radius: $buttonHeight/2;
|
|
border-bottom-right-radius: $buttonHeight/2;
|
|
}
|
|
|
|
&:not(:first-child) {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
margin-left: 1px;
|
|
}
|
|
|
|
i {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: darken($colorHighlight, 10%);
|
|
}
|
|
|
|
@include inset-when-pressed();
|
|
}
|
|
}
|
|
|
|
input[type="search"] {
|
|
width: 128px;
|
|
transition: width .3s;
|
|
|
|
&:focus {
|
|
width: 192px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.main-scroll-wrap {
|
|
padding: 24px 24px $footerHeight;
|
|
height: calc(100vh - #{$headerHeight + $footerHeight + $mainHeadingHeight + 24px});
|
|
overflow: auto;
|
|
}
|
|
|
|
.translucent {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
-webkit-filter: blur(20px);
|
|
opacity: .07;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
background-size: cover;
|
|
background-position: center;
|
|
transform: translateZ(0);
|
|
backface-visibility: hidden;
|
|
perspective: 1000;
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
|
|
@media only screen
|
|
and (max-device-width : 768px)
|
|
and (orientation : portrait) {
|
|
h1.heading {
|
|
font-size: 18px;
|
|
min-height: 0;
|
|
line-height: 24px;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
|
|
.toggler {
|
|
font-size: 14px;
|
|
margin-left: 4px;
|
|
color: $colorHighlight;
|
|
}
|
|
|
|
.buttons {
|
|
justify-content: center;
|
|
}
|
|
|
|
input[type="search"], button {
|
|
margin-top: 12px;
|
|
}
|
|
}
|
|
|
|
.main-scroll-wrap {
|
|
padding: 24px 16px $footerHeight;
|
|
}
|
|
}
|
|
}
|
|
</style>
|