mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
142 lines
3.0 KiB
Vue
142 lines
3.0 KiB
Vue
<template>
|
|
<div class="al-view rounded">
|
|
<div class="al-content">
|
|
<div>
|
|
<Header :album="album.info" />
|
|
</div>
|
|
<div class="songs rounded">
|
|
<SongList :tracks="album.tracks" :on_album_page="true" />
|
|
</div>
|
|
<div
|
|
id="bottom-items"
|
|
class="rounded"
|
|
ref="albumbottomcards"
|
|
:class="{
|
|
bottomexpanded: !bottomContainerState,
|
|
}"
|
|
>
|
|
<div class="click-to-expand" @click="toggleBottom">
|
|
<div>
|
|
<div class="arrow">↑</div>
|
|
<span>tap here</span>
|
|
</div>
|
|
</div>
|
|
<div class="bottom-content">
|
|
<FeaturedArtists :artists="album.artists" />
|
|
<div v-if="album.bio">
|
|
<div class="separator" id="av-sep"></div>
|
|
<AlbumBio :bio="album.bio" />
|
|
</div>
|
|
<div class="dummy"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Header from "../components/AlbumView/Header.vue";
|
|
import AlbumBio from "../components/AlbumView/AlbumBio.vue";
|
|
|
|
import SongList from "../components/FolderView/SongList.vue";
|
|
import FeaturedArtists from "../components/PlaylistView/FeaturedArtists.vue";
|
|
import useAStore from "../stores/pages/album";
|
|
import { onBeforeRouteUpdate } from "vue-router";
|
|
import { reactive, ref } from "vue";
|
|
|
|
const album = useAStore();
|
|
const albumbottomcards = ref<HTMLElement>(null);
|
|
|
|
onBeforeRouteUpdate(async (to) => {
|
|
await album.fetchTracksAndArtists(to.params.hash.toString());
|
|
album.fetchBio(to.params.hash.toString());
|
|
});
|
|
|
|
function toggleBottom() {
|
|
// const elem = albumbottomcards.value;
|
|
// elem.style.height = `${40}rem`;
|
|
bottomContainerState.value = !bottomContainerState.value;
|
|
}
|
|
|
|
const bottomContainerState = ref(true);
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.al-view {
|
|
scrollbar-width: none;
|
|
height: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
.al-content {
|
|
height: 100%;
|
|
overflow: auto;
|
|
padding-bottom: 17rem;
|
|
}
|
|
|
|
.songs {
|
|
min-height: calc(100% - 31.5rem);
|
|
margin-top: $small;
|
|
}
|
|
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
#av-sep {
|
|
border: none;
|
|
}
|
|
|
|
#bottom-items {
|
|
z-index: 77;
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 15rem;
|
|
background-color: $gray;
|
|
transition: all 0.5s ease;
|
|
overscroll-behavior: contain;
|
|
display: grid;
|
|
grid-template-rows: 2rem 1fr;
|
|
|
|
.click-to-expand {
|
|
height: 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
div {
|
|
margin: 0 auto;
|
|
font-size: small;
|
|
color: $gray1;
|
|
cursor: default;
|
|
user-select: none;
|
|
display: flex;
|
|
gap: $small;
|
|
}
|
|
|
|
.arrow {
|
|
max-width: min-content;
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bottomexpanded {
|
|
height: 35rem !important;
|
|
|
|
.arrow {
|
|
transform: rotate(180deg) !important;
|
|
}
|
|
|
|
.bottom-content {
|
|
overflow: auto;
|
|
scrollbar-width: none;
|
|
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|