mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
138 lines
3.9 KiB
Vue
138 lines
3.9 KiB
Vue
<template>
|
|
<nav
|
|
ref="root"
|
|
:class="{ collapsed: !expanded, 'tmp-showing': tmpShowing, showing: mobileShowing }"
|
|
class="flex flex-col fixed md:relative w-full md:w-k-sidebar-width z-10"
|
|
@mouseenter="onMouseEnter"
|
|
@mouseleave="onMouseLeave"
|
|
>
|
|
<section class="home-search-block p-6 flex gap-2">
|
|
<a
|
|
class="bg-black/20 flex items-center px-3.5 rounded-md !text-k-text-secondary hover:!text-k-text-primary"
|
|
href="#/home"
|
|
>
|
|
<Icon :icon="faHome" fixed-width />
|
|
</a>
|
|
<SearchForm />
|
|
</section>
|
|
|
|
<section v-koel-overflow-fade class="pt-2 pb-10 overflow-y-auto space-y-8">
|
|
<SidebarYourMusicSection />
|
|
<SidebarPlaylistsSection />
|
|
<SidebarManageSection v-if="showManageSection" />
|
|
</section>
|
|
|
|
<section v-if="!isPlus && isAdmin" class="p-6">
|
|
<BtnUpgradeToPlus />
|
|
</section>
|
|
|
|
<SidebarToggleButton v-model="expanded" />
|
|
</nav>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faHome } from '@fortawesome/free-solid-svg-icons'
|
|
import { computed, ref, watch } from 'vue'
|
|
import { onClickOutside } from '@vueuse/core'
|
|
import { eventBus } from '@/utils'
|
|
import { useAuthorization, useKoelPlus, useLocalStorage, useRouter, useUpload } from '@/composables'
|
|
|
|
import SidebarPlaylistsSection from './SidebarPlaylistsSection.vue'
|
|
import SearchForm from '@/components/ui/SearchForm.vue'
|
|
import BtnUpgradeToPlus from '@/components/koel-plus/BtnUpgradeToPlus.vue'
|
|
import SidebarYourMusicSection from './SidebarYourLibrarySection.vue'
|
|
import SidebarManageSection from './SidebarManageSection.vue'
|
|
import SidebarToggleButton from '@/components/layout/main-wrapper/sidebar/SidebarToggleButton.vue'
|
|
|
|
const { onRouteChanged } = useRouter()
|
|
const { isAdmin } = useAuthorization()
|
|
const { allowsUpload } = useUpload()
|
|
const { isPlus } = useKoelPlus()
|
|
const { get: lsGet, set: lsSet } = useLocalStorage()
|
|
|
|
const root = ref<HTMLElement>()
|
|
const mobileShowing = ref(false)
|
|
const expanded = ref(!lsGet('sidebar-collapsed', false))
|
|
|
|
watch(expanded, value => lsSet('sidebar-collapsed', !value))
|
|
|
|
const showManageSection = computed(() => isAdmin.value || allowsUpload.value)
|
|
|
|
let tmpShowingHandler: number | undefined
|
|
const tmpShowing = ref(false)
|
|
|
|
const onMouseEnter = () => {
|
|
if (expanded.value) return;
|
|
|
|
tmpShowingHandler = window.setTimeout(() => {
|
|
if (expanded.value) return
|
|
tmpShowing.value = true
|
|
}, 500)
|
|
}
|
|
|
|
const onMouseLeave = (e: MouseEvent) => {
|
|
if (!e.relatedTarget) {
|
|
return
|
|
}
|
|
|
|
if (tmpShowingHandler) {
|
|
clearTimeout(tmpShowingHandler)
|
|
tmpShowingHandler = undefined
|
|
}
|
|
|
|
tmpShowing.value = false
|
|
}
|
|
|
|
// Not using the <OnClickOutside> component because it'd mess up the overflow/scrolling behavior
|
|
onClickOutside(root, () => (mobileShowing.value = false))
|
|
onRouteChanged(_ => (mobileShowing.value = false))
|
|
|
|
/**
|
|
* Listen to toggle sidebar event to show or hide the sidebar.
|
|
* This should only be triggered on a mobile device.
|
|
*/
|
|
eventBus.on('TOGGLE_SIDEBAR', () => (mobileShowing.value = !mobileShowing.value))
|
|
</script>
|
|
|
|
<style lang="postcss" scoped>
|
|
@import '@/../css/partials/mixins.pcss';
|
|
|
|
nav {
|
|
@apply bg-k-bg-secondary;
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
&.collapsed {
|
|
@apply w-[24px] transition-[width] duration-200;
|
|
|
|
> *:not(.btn-toggle) {
|
|
@apply hidden;
|
|
}
|
|
|
|
&.tmp-showing {
|
|
@apply absolute h-screen z-50 bg-k-bg-primary w-k-sidebar-width shadow-2xl;
|
|
|
|
> *:not(.btn-toggle) {
|
|
@apply block;
|
|
}
|
|
|
|
> .home-search-block {
|
|
@apply flex;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
@mixin themed-background;
|
|
z-index: 999;
|
|
|
|
transform: translateX(-100vw);
|
|
transition: transform .2s ease-in-out;
|
|
height: calc(100vh - var(--header-height));
|
|
|
|
&.showing {
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
}
|
|
</style>
|