306 lines
6.5 KiB
Vue
306 lines
6.5 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted } from 'vue'
|
|
import { useUploadsStore } from '../stores/upload'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useStore } from '~/store'
|
|
|
|
import Input from '~/components/ui/Input.vue'
|
|
import Pill from '~/components/ui/Pill.vue'
|
|
import Link from '~/components/ui/Link.vue'
|
|
|
|
const searchQuery = ref('')
|
|
|
|
// Hide the fake app when the real one is loaded
|
|
onMounted(() => {
|
|
document.getElementById('fake-app')?.remove()
|
|
})
|
|
|
|
const { t } = useI18n()
|
|
|
|
const store = useStore()
|
|
const uploads = useUploadsStore()
|
|
</script>
|
|
|
|
<template>
|
|
<aside>
|
|
<div class="sticky-content">
|
|
<nav class="quick-actions">
|
|
<Link to="/">
|
|
<img
|
|
src="../../assets/logo/logo.svg"
|
|
alt="Logo"
|
|
class="logo"
|
|
>
|
|
</Link>
|
|
|
|
<Link to="todo:settings"
|
|
icon="bi:wrench"
|
|
color="secondary"
|
|
variant="ghost">
|
|
</Link>
|
|
|
|
<Link to="/upload"
|
|
icon="bi:upload"
|
|
color="secondary"
|
|
variant="ghost">
|
|
<Transition>
|
|
<div
|
|
v-if="uploads.currentIndex < uploads.queue.length"
|
|
class="upload-progress"
|
|
>
|
|
<div class="progress fake" />
|
|
<div
|
|
class="progress"
|
|
:style="{ maxWidth: `${uploads.progress}%` }"
|
|
/>
|
|
</div>
|
|
</Transition>
|
|
</Link>
|
|
|
|
<Link to="TODO/inbox"
|
|
icon="bi:inbox"
|
|
color="secondary"
|
|
variant="ghost"
|
|
/>
|
|
<Link to="TODO/inbox"
|
|
icon="bi:inbox"
|
|
color="secondary"
|
|
variant="ghost"
|
|
>
|
|
<img
|
|
v-if="store.state.auth.authenticated && store.state.auth.profile?.avatar?.urls.medium_square_crop"
|
|
alt=""
|
|
:src="store.getters['instance/absoluteUrl'](store.state.auth.profile?.avatar.urls.medium_square_crop)"
|
|
>
|
|
<!--ActorAvatar
|
|
v-else-if="store.state.auth.authenticated"
|
|
:actor="{preferred_username: store.state.auth.username, full_username: store.state.auth.username,}"
|
|
/-->
|
|
<i
|
|
v-else
|
|
class="cog icon"
|
|
/>
|
|
</Link>
|
|
</nav>
|
|
|
|
<div class="search">
|
|
<Input
|
|
v-model="searchQuery"
|
|
icon="bi-search"
|
|
:placeholder="t('components.audio.SearchBar.placeholder.search')"
|
|
/>
|
|
</div>
|
|
|
|
<nav class="button-list">
|
|
<Link to="/library"
|
|
color="secondary"
|
|
variant="ghost"
|
|
icon="bi-compass"
|
|
>
|
|
Explore
|
|
</Link>
|
|
|
|
</nav>
|
|
|
|
<nav class="button-list">
|
|
<Link to="/"
|
|
color="secondary"
|
|
variant="ghost"
|
|
icon="bi-person"
|
|
>
|
|
Artists
|
|
</Link>
|
|
<Link to="/"
|
|
color="secondary"
|
|
variant="ghost"
|
|
icon="bi-disc"
|
|
>
|
|
Albums
|
|
</Link>
|
|
<Link to="/"
|
|
color="secondary"
|
|
variant="ghost"
|
|
icon="bi-music-note-list"
|
|
>
|
|
Playlists
|
|
</Link>
|
|
<Link to="/"
|
|
color="secondary"
|
|
variant="ghost"
|
|
icon="bi-question-diamond"
|
|
>
|
|
Radios
|
|
</Link>
|
|
<Link to="/library/podcasts"
|
|
color="secondary"
|
|
variant="ghost"
|
|
icon="bi-mic"
|
|
>
|
|
Podcasts
|
|
</Link>
|
|
<Link to="/"
|
|
color="secondary"
|
|
variant="ghost"
|
|
icon="bi-heart"
|
|
>
|
|
Favorites
|
|
</Link>
|
|
</nav>
|
|
<h3>Channels</h3>
|
|
</div>
|
|
</aside>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
aside {
|
|
@include light-theme {
|
|
background: var(--fw-beige-300);
|
|
}
|
|
@include dark-theme {
|
|
background: var(--fw-blue-700);
|
|
}
|
|
|
|
height: 100%;
|
|
|
|
> .sticky-content {
|
|
position: sticky;
|
|
height: 100%;
|
|
max-height: 100vh;
|
|
overflow: auto;
|
|
top: 0;
|
|
|
|
> .quick-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px;
|
|
font-size: 1.3rem;
|
|
|
|
button.active {
|
|
box-shadow: inset 0 0 0 2px var(--fw-blue-500);
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
:deep(svg + span) {
|
|
margin-left: 0 !important;
|
|
}
|
|
}
|
|
|
|
.upload-progress {
|
|
background: var(--fw-blue-500);
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 2px;
|
|
width: 100%;
|
|
padding: 2px;
|
|
|
|
&.v-enter-active,
|
|
&.v-leave-active {
|
|
transition: transform 0.2s ease, opacity 0.2s ease;
|
|
}
|
|
|
|
&.v-leave-to,
|
|
&.v-enter-from {
|
|
transform: translateY(0.5rem);
|
|
opacity: 0;
|
|
}
|
|
|
|
> .progress {
|
|
height: 0.25rem;
|
|
width: 100%;
|
|
transition: max-width 0.1s ease;
|
|
background: var(--fw-gray-100);
|
|
border-radius: 100vh;
|
|
position: relative;
|
|
|
|
&.fake {
|
|
background: var(--fw-blue-700);
|
|
}
|
|
|
|
&:not(.fake) {
|
|
position: absolute;
|
|
inset: 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
> :first-child {
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.avatar,
|
|
.logo {
|
|
height: 30px;
|
|
display: block;
|
|
}
|
|
|
|
.avatar {
|
|
aspect-ratio: 1;
|
|
background: var(--fw-beige-100);
|
|
border-radius: 100%;
|
|
|
|
text-decoration: none !important;
|
|
color: var(--fw-gray-700);
|
|
|
|
> img,
|
|
> i {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0 !important;
|
|
border-radius: 100vh;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .search {
|
|
padding: 0 16px 23px;
|
|
}
|
|
|
|
> h3 {
|
|
margin: 0;
|
|
padding: 0 32px 8px;
|
|
color: var(--fw-gray-700);
|
|
@include light-theme {
|
|
color: var(--fw-gray-700);
|
|
}
|
|
@include dark-theme {
|
|
color: var(--fw-blue-100);
|
|
}
|
|
font-size: 14px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
> .pill-list {
|
|
padding: 0 16px 8px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
> nav.button-list {
|
|
padding: 0 16px 32px;
|
|
|
|
> button {
|
|
margin: 2px 0;
|
|
|
|
/* TODO: Fix in UI: When icon is applied, the text should be aligned left */
|
|
justify-content: start;
|
|
|
|
/* TODO: Fix in UI: Add `block` prop that spans 100% width */
|
|
width: 100%;
|
|
|
|
:deep(i) {
|
|
font-size: 1.4em;
|
|
|
|
/* TODO: Fix in UI: Add margin right to the icon, when content available */
|
|
margin-right: 1ch;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
</style>
|