mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
61750f7126
+ add tracklist breakpoints to virtual scroll page layout
161 lines
3.5 KiB
Vue
161 lines
3.5 KiB
Vue
<template>
|
|
<div class="header-list-layout">
|
|
<div
|
|
v-bind="containerProps"
|
|
style="height: calc(100vh - 4.25rem)"
|
|
:style="{ paddingTop: !no_header ? headerHeight - 64 + 16 + 'px' : 0 }"
|
|
@scroll="handleScroll"
|
|
>
|
|
<div
|
|
v-bind="wrapperProps"
|
|
class="scrollable"
|
|
ref="scrollable"
|
|
:class="{
|
|
isSmall: isSmall,
|
|
isMedium: isMedium,
|
|
}"
|
|
>
|
|
<div class="header rounded" style="height: 64px" v-if="!no_header">
|
|
<div
|
|
ref="header"
|
|
:style="{ top: -headerHeight + 64 - 16 + 'px' }"
|
|
class="header-content"
|
|
>
|
|
<slot name="header"></slot>
|
|
</div>
|
|
</div>
|
|
<SongItem
|
|
style="height: 60px"
|
|
v-for="t in tracks"
|
|
:key="t.data.trackid"
|
|
:track="t.data"
|
|
:index="
|
|
on_album_page
|
|
? t.data.track
|
|
: t.data.index !== undefined
|
|
? t.data.index + 1
|
|
: t.index + 1
|
|
"
|
|
:isCurrent="queue.currentid === t.data.trackid"
|
|
:isCurrentPlaying="
|
|
queue.currentid === t.data.trackid && queue.playing
|
|
"
|
|
@playThis="
|
|
updateQueue(t.data.index !== undefined ? t.data.index : t.index)
|
|
"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useElementSize, useVirtualList } from "@vueuse/core";
|
|
import { computed, ref } from "vue";
|
|
|
|
import { Track } from "@/interfaces";
|
|
import useQStore from "@/stores/queue";
|
|
|
|
import SongItem from "@/components/shared/SongItem.vue";
|
|
|
|
const props = defineProps<{
|
|
tracks: Track[];
|
|
on_album_page?: boolean;
|
|
no_header?: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(e: "playFromPage", index: number): void;
|
|
}>();
|
|
|
|
const queue = useQStore();
|
|
const source = computed(() => props.tracks);
|
|
|
|
// element refs + sizes
|
|
const header = ref<HTMLElement>();
|
|
const scrollable = ref<HTMLElement>();
|
|
|
|
const { height: headerHeight } = useElementSize(header);
|
|
const { width } = useElementSize(scrollable);
|
|
|
|
const brk = {
|
|
sm: 500,
|
|
md: 800,
|
|
};
|
|
|
|
const isSmall = computed(() => width.value < brk.sm);
|
|
const isMedium = computed(() => width.value > brk.sm && width.value < brk.md);
|
|
// ---
|
|
|
|
const {
|
|
list: tracks,
|
|
containerProps,
|
|
wrapperProps,
|
|
} = useVirtualList(source, {
|
|
itemHeight: 60,
|
|
overscan: 15,
|
|
});
|
|
|
|
function updateQueue(index: number) {
|
|
emit("playFromPage", index);
|
|
}
|
|
|
|
function handleScroll(e: Event) {
|
|
const scrollTop = (e.target as HTMLElement).scrollTop;
|
|
|
|
if (scrollTop > headerHeight.value) {
|
|
header.value ? (header.value.style.opacity = "0") : null;
|
|
} else {
|
|
header.value ? (header.value.style.opacity = "1") : null;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.header-list-layout {
|
|
margin-right: calc(0rem - ($medium));
|
|
|
|
.scrollable {
|
|
padding-right: calc(1rem - $small + 2px);
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
.scrollable.isSmall {
|
|
.songlist-item {
|
|
grid-template-columns: 1.5rem 2fr 2rem 2.5rem;
|
|
}
|
|
|
|
.song-artists,
|
|
.song-album {
|
|
display: none !important;
|
|
}
|
|
|
|
.isSmallArtists {
|
|
display: unset !important;
|
|
font-size: small;
|
|
color: $white;
|
|
opacity: 0.67;
|
|
}
|
|
}
|
|
|
|
.scrollable.isMedium {
|
|
.songlist-item {
|
|
grid-template-columns: 1.5rem 2fr 1fr 2rem 2.5rem;
|
|
}
|
|
|
|
.song-album {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
position: relative;
|
|
|
|
.header-content {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|