mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-12 05:57:21 +00:00

- add new logo - add tsconfig.json - move logo to new component - update bottombar - remove props from hotkeys and progress bar - convert perks.js -> perks.ts
85 lines
1.8 KiB
Vue
85 lines
1.8 KiB
Vue
<template>
|
|
<ContextMenu />
|
|
<Modal />
|
|
<Notification />
|
|
<div class="l-container">
|
|
<div class="l-sidebar rounded">
|
|
<Logo />
|
|
<Navigation />
|
|
<div class="l-album-art">
|
|
<nowPlaying />
|
|
</div>
|
|
</div>
|
|
<NavBar />
|
|
<div class="content">
|
|
<router-view />
|
|
</div>
|
|
<SearchInput />
|
|
<RightSideBar />
|
|
<Tabs />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Navigation from "./components/LeftSidebar/Navigation.vue";
|
|
|
|
import Main from "./components/RightSideBar/Main.vue";
|
|
import nowPlaying from "./components/LeftSidebar/nowPlaying.vue";
|
|
import NavBar from "./components/nav/NavBar.vue";
|
|
import Tabs from "./components/RightSideBar/Tabs.vue";
|
|
import SearchInput from "./components/RightSideBar/SearchInput.vue";
|
|
import useContextStore from "./stores/context";
|
|
import ContextMenu from "./components/contextMenu.vue";
|
|
import Modal from "./components/modal.vue";
|
|
import Notification from "./components/Notification.vue";
|
|
import useQStore from "./stores/queue";
|
|
import listenForKeyboardEvents from "./composables/keyboard";
|
|
import Logo from "./components/Logo.vue";
|
|
|
|
const RightSideBar = Main;
|
|
const context_store = useContextStore();
|
|
const queue = useQStore();
|
|
const app_dom = document.getElementById("app");
|
|
|
|
queue.readQueue();
|
|
listenForKeyboardEvents(queue);
|
|
|
|
app_dom.addEventListener("click", (e) => {
|
|
if (context_store.visible) {
|
|
context_store.hideContextMenu();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "./assets/css/mixins.scss";
|
|
|
|
.l-sidebar {
|
|
position: relative;
|
|
|
|
.l-album-art {
|
|
width: calc(100% - 2rem);
|
|
position: absolute;
|
|
bottom: 0;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.r-sidebar {
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
padding: 0 $small;
|
|
margin-top: $small;
|
|
overflow: auto;
|
|
padding-right: $small !important;
|
|
}
|
|
</style>
|