mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-09 20:47:24 +00:00
116 lines
2.1 KiB
Vue
116 lines
2.1 KiB
Vue
<template>
|
|
<div class="side-nav-container">
|
|
<router-link
|
|
v-for="menu in menus"
|
|
:key="menu.name"
|
|
:to="{ name: menu.route_name, params: menu?.params }"
|
|
>
|
|
<div
|
|
v-if="menu.separator"
|
|
:class="{
|
|
separator: menu.separator,
|
|
}"
|
|
></div>
|
|
<div
|
|
class="nav-button"
|
|
id="home-button"
|
|
:class="{ active: menu.route_name === $route.name }"
|
|
v-else
|
|
>
|
|
<div class="in">
|
|
<component :is="menu.icon"></component>
|
|
<span>{{ menu.name }}</span>
|
|
</div>
|
|
</div>
|
|
</router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import PlaylistSvg from "../../assets/icons/playlist.svg";
|
|
import FolderSvg from "../../assets/icons/folder.svg";
|
|
import SettingsSvg from "../../assets/icons/settings.svg";
|
|
import SearchSvg from "../../assets/icons/search.svg";
|
|
|
|
import { Routes } from "@/composables/enums";
|
|
|
|
const menus = [
|
|
{
|
|
name: "playlists",
|
|
route_name: Routes.playlists,
|
|
icon: PlaylistSvg,
|
|
},
|
|
{
|
|
name: "folders",
|
|
route_name: "FolderView",
|
|
params: { path: "$home" },
|
|
icon: FolderSvg,
|
|
},
|
|
|
|
{
|
|
separator: true,
|
|
},
|
|
{
|
|
name: "queue",
|
|
route_name: Routes.queue,
|
|
icon: PlaylistSvg,
|
|
},
|
|
{
|
|
name: "search",
|
|
route_name: Routes.search,
|
|
icon: SearchSvg,
|
|
},
|
|
{
|
|
separator: true,
|
|
},
|
|
{
|
|
name: "settings",
|
|
route_name: Routes.settings,
|
|
icon: SettingsSvg,
|
|
},
|
|
];
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.side-nav-container {
|
|
text-transform: capitalize;
|
|
margin-top: 1rem;
|
|
font-size: 0.85rem;
|
|
|
|
.active {
|
|
background-color: $gray4;
|
|
}
|
|
|
|
.nav-button {
|
|
border-radius: $small;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
padding: $smaller 0;
|
|
|
|
&:hover {
|
|
background-color: $gray3;
|
|
}
|
|
|
|
.in {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
& > * {
|
|
background-size: 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
svg {
|
|
margin: 0 $small 0 $small;
|
|
border-radius: $small;
|
|
transform: scale(0.9);
|
|
}
|
|
|
|
svg > path {
|
|
fill: $accent;
|
|
}
|
|
}
|
|
</style>
|