Files
swingmusic-extended/src/components/RightSideBar/Main.vue
T
geoffrey45 977d9282cb feat: separate discs in album page
+ remove tooltip markup
+ refactor css classnames
2023-01-13 18:13:49 +03:00

67 lines
1.3 KiB
Vue

<template>
<div class="r-sidebar">
<SearchInput />
<div v-auto-animate class="r-content no-scroll" >
<div class="r-dash" v-if="tabs.current === tabs.tabs.home">
<DashBoard />
</div>
<div class="r-search" v-if="tabs.current === tabs.tabs.search">
<Search />
</div>
<div class="r-queue" v-if="tabs.current === tabs.tabs.queue">
<Queue />
</div>
</div>
</div>
</template>
<script setup lang="ts">
import useTabStore from "../../stores/tabs";
import DashBoard from "./Home/Main.vue";
import Queue from "./Queue.vue";
import Search from "./Search/Main.vue";
import SearchInput from "./SearchInput.vue";
const tabs = useTabStore();
</script>
<style lang="scss">
.r-sidebar {
width: 100%;
display: grid;
grid-template-rows: max-content 1fr;
background-color: rgb(22, 22, 22);
padding-bottom: 1rem;
border-top: none;
border-bottom: none;
margin-bottom: -1rem;
.gsearch-input {
height: 2.5rem;
margin: 1rem;
}
.r-content {
width: 100%;
height: 100%;
background-color: $gray;
.r-search {
height: 100%;
}
.r-dash {
height: 100%;
}
.r-queue {
height: 100%;
overflow: hidden;
display: grid;
gap: $small;
grid-template-rows: max-content 1fr;
}
}
}
</style>