mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-28 21:51:41 +00:00

- add another inner container to limit the offset - auto scroll current track to container start - add todo file
153 lines
3.0 KiB
Vue
153 lines
3.0 KiB
Vue
<template>
|
|
<div class="folder">
|
|
<div class="table rounded" v-if="tracks.length">
|
|
<div class="thead">
|
|
<div class="index"></div>
|
|
<div class="track-header">Track</div>
|
|
<div class="artists-header">Artist</div>
|
|
<div class="album-header">Album</div>
|
|
<div class="duration-header">Duration</div>
|
|
</div>
|
|
<div class="songlist">
|
|
<SongItem
|
|
v-for="(track, index) in tracks"
|
|
:key="track.trackid"
|
|
:song="track"
|
|
:index="index + 1"
|
|
@updateQueue="updateQueue"
|
|
:isPlaying="queue.playing"
|
|
:isCurrent="queue.current.trackid == track.trackid"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div v-else-if="tracks.length === 0">
|
|
<div class="no-results">
|
|
<div class="text">No tracks here</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useRoute } from "vue-router";
|
|
|
|
import SongItem from "../shared/SongItem.vue";
|
|
|
|
import useQStore from "../../stores/queue";
|
|
import { Track } from "../../interfaces";
|
|
|
|
const queue = useQStore();
|
|
|
|
const props = defineProps<{
|
|
tracks: Track[];
|
|
path?: string;
|
|
pname?: string;
|
|
playlistid?: string;
|
|
}>();
|
|
|
|
let route = useRoute().name;
|
|
|
|
/**
|
|
* Plays a clicked track and updates the queue
|
|
*
|
|
* @param track Track object
|
|
*/
|
|
function updateQueue(track: Track) {
|
|
switch (route) {
|
|
case "FolderView":
|
|
queue.playFromFolder(props.path, props.tracks);
|
|
queue.play(track);
|
|
break;
|
|
case "AlbumView":
|
|
queue.playFromAlbum(track.album, track.albumartist, props.tracks);
|
|
queue.play(track);
|
|
break;
|
|
case "PlaylistView":
|
|
queue.playFromPlaylist(props.pname, props.playlistid, props.tracks);
|
|
queue.play(track);
|
|
break;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.no-results {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-y: hidden;
|
|
|
|
.current {
|
|
a {
|
|
color: inherit;
|
|
}
|
|
color: $red;
|
|
}
|
|
|
|
.current:hover {
|
|
* {
|
|
color: rgb(255, 255, 255);
|
|
}
|
|
}
|
|
|
|
.thead {
|
|
display: grid;
|
|
grid-template-columns: 1.5rem 1.5fr 1fr 1.5fr 0.25fr;
|
|
height: 2.5rem;
|
|
align-items: center;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
color: $gray1;
|
|
gap: $small;
|
|
|
|
@include tablet-landscape {
|
|
grid-template-columns: 1.5rem 1.5fr 1fr 1.5fr;
|
|
}
|
|
|
|
@include tablet-portrait {
|
|
grid-template-columns: 1.5rem 1.5fr 1fr;
|
|
}
|
|
|
|
@include phone-only {
|
|
display: none;
|
|
}
|
|
|
|
.duration-header {
|
|
@include tablet-landscape {
|
|
display: none;
|
|
}
|
|
|
|
width: 6rem;
|
|
}
|
|
|
|
.album-header {
|
|
@include tablet-portrait {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.songlist {
|
|
scrollbar-width: none;
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.context-on {
|
|
background-color: $gray4;
|
|
color: $white !important;
|
|
}
|
|
}
|
|
}
|
|
</style>
|