koel/resources/assets/js/components/layout/main-wrapper/Sidebar.vue

207 lines
5.1 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
2022-04-24 08:29:14 +00:00
<nav id="sidebar" :class="{ showing }" class="side side-nav">
2022-04-15 14:24:30 +00:00
<section class="music">
<h1>Your Music</h1>
<ul class="menu">
<li>
2022-07-15 07:23:55 +00:00
<a :class="['home', currentView === 'Home' ? 'active' : '']" href="#!/home">
<icon :icon="faHome" fixed-width/>
Home
</a>
2022-04-15 14:24:30 +00:00
</li>
<li>
2022-04-24 08:29:14 +00:00
<a v-koel-droppable="handleDrop" :class="['queue', currentView === 'Queue' ? 'active' : '']" href="#!/queue">
2022-07-15 07:23:55 +00:00
<icon :icon="faListOl" fixed-width/>
2022-04-24 08:29:14 +00:00
Current Queue
</a>
2022-04-15 14:24:30 +00:00
</li>
<li>
2022-07-15 07:23:55 +00:00
<a :class="['songs', currentView === 'Songs' ? 'active' : '']" href="#!/songs">
<icon :icon="faMusic" fixed-width/>
All Songs
</a>
2022-04-15 14:24:30 +00:00
</li>
<li>
2022-07-15 07:23:55 +00:00
<a :class="['albums', currentView === 'Albums' ? 'active' : '']" href="#!/albums">
<icon :icon="faCompactDisc" fixed-width/>
Albums
</a>
2022-04-15 14:24:30 +00:00
</li>
<li>
2022-07-15 07:23:55 +00:00
<a :class="['artists', currentView === 'Artists' ? 'active' : '']" href="#!/artists">
<icon :icon="faMicrophone" fixed-width/>
Artists
</a>
2022-04-15 14:24:30 +00:00
</li>
2022-04-24 08:29:14 +00:00
<li v-if="useYouTube">
2022-07-15 07:23:55 +00:00
<a :class="['youtube', currentView === 'YouTube' ? 'active' : '']" href="#!/youtube">
<icon :icon="faYoutube" fixed-width/>
YouTube Video
</a>
2022-04-15 14:24:30 +00:00
</li>
</ul>
</section>
2022-04-15 17:00:08 +00:00
<PlaylistList :current-view="currentView"/>
2022-04-15 14:24:30 +00:00
<section v-if="isAdmin" class="manage">
2022-04-15 14:24:30 +00:00
<h1>Manage</h1>
<ul class="menu">
<li>
2022-07-15 07:23:55 +00:00
<a :class="['settings', currentView === 'Settings' ? 'active' : '']" href="#!/settings">
<icon :icon="faTools" fixed-width/>
Settings
</a>
2022-04-15 14:24:30 +00:00
</li>
<li>
2022-07-15 07:23:55 +00:00
<a :class="['upload', currentView === 'Upload' ? 'active' : '']" href="#!/upload">
<icon :icon="faUpload" fixed-width/>
Upload
</a>
2022-04-15 14:24:30 +00:00
</li>
<li>
2022-07-15 07:23:55 +00:00
<a :class="['users', currentView === 'Users' ? 'active' : '']" href="#!/users">
<icon :icon="faUsers" fixed-width/>
Users
</a>
2022-04-15 14:24:30 +00:00
</li>
</ul>
</section>
</nav>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2022-04-15 14:24:30 +00:00
import isMobile from 'ismobilejs'
2022-07-15 07:23:55 +00:00
import {
faCompactDisc,
faHome,
faListOl,
faMicrophone,
faMusic,
faTools,
faUpload,
faUsers
} from '@fortawesome/free-solid-svg-icons'
import { faYoutube } from '@fortawesome/free-brands-svg-icons'
import { ref } from 'vue'
2022-06-10 10:47:46 +00:00
import { eventBus, resolveSongsFromDragEvent } from '@/utils'
import { queueStore } from '@/stores'
import { useAuthorization, useThirdPartyServices } from '@/composables'
2022-04-15 14:24:30 +00:00
import PlaylistList from '@/components/playlist/PlaylistSidebarList.vue'
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const showing = ref(!isMobile.phone)
2022-04-24 08:29:14 +00:00
const currentView = ref<MainViewName>('Home')
const { useYouTube } = useThirdPartyServices()
const { isAdmin } = useAuthorization()
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
const handleDrop = async (event: DragEvent) => {
const songs = await resolveSongsFromDragEvent(event)
2022-04-15 17:00:08 +00:00
songs.length && queueStore.queue(songs)
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
return false
}
2022-04-15 14:24:30 +00:00
2022-08-01 08:58:25 +00:00
eventBus.on({
LOAD_MAIN_CONTENT (view: MainViewName) {
currentView.value = view
// Hide the sidebar if on mobile
isMobile.phone && (showing.value = false)
},
/**
* Listen to sidebar:toggle event to show or hide the sidebar.
* This should only be triggered on a mobile device.
*/
['TOGGLE_SIDEBAR']: () => (showing.value = !showing.value)
2022-04-15 14:24:30 +00:00
})
</script>
<style lang="scss">
#sidebar {
flex: 0 0 256px;
background-color: var(--color-bg-secondary);
padding: 2.05rem 0;
overflow: auto;
overflow-x: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
> * + * {
margin-top: 2.25rem;
}
@media (hover: none) {
// Enable scroll with momentum on touch devices
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
a.droppable {
transform: scale(1.2);
transition: .3s;
transform-origin: center left;
color: var(--color-text-primary);
background-color: rgba(0, 0, 0, .3);
}
2022-08-01 08:58:25 +00:00
.queue > span {
display: flex;
align-items: baseline;
justify-content: space-between;
flex: 1;
}
2022-04-15 14:24:30 +00:00
section {
h1 {
text-transform: uppercase;
letter-spacing: 1px;
padding: 0 16px;
margin-bottom: 12px;
}
a {
2022-07-15 07:23:55 +00:00
display: flex;
align-items: center;
gap: .7rem;
2022-04-15 14:24:30 +00:00
height: 36px;
line-height: 36px;
2022-07-15 07:23:55 +00:00
padding: 0 16px 0 12px;
2022-04-15 14:24:30 +00:00
border-left: 4px solid transparent;
&.active, &:hover {
border-left-color: var(--color-highlight);
color: var(--color-text-primary);
background: rgba(255, 255, 255, .05);
box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}
&:active {
opacity: .5;
}
&:hover {
border-left-color: var(--color-highlight);
}
}
}
2022-04-15 17:00:08 +00:00
@media only screen and (max-width: 667px) {
2022-04-15 14:24:30 +00:00
@include themed-background();
position: fixed;
height: calc(100vh - var(--header-height) + var(--footer-height));
width: 100%;
z-index: 99;
top: var(--header-height);
left: -100%;
transition: left .3s ease-in;
&.showing {
left: 0;
}
}
}
</style>