Files
swingmusic-extended/src/views/FolderView.vue
T
2021-12-21 13:42:06 +03:00

131 lines
2.9 KiB
Vue

<template>
<div id="f-view-parent" class="rounded">
<div class="fixed">
<SearchBox :path="path" :loading="loading" />
</div>
<div id="scrollable" ref="scrollable">
<FolderList :folders="folders" />
<SongList :songs="songs" @updateQueue="updateQueue" />
</div>
</div>
</template>
<script>
import { ref } from "@vue/reactivity";
import { useRoute } from "vue-router";
import SongList from "@/components/FolderView/SongList.vue";
import FolderList from "@/components/FolderView/FolderList.vue";
import SearchBox from "@/components/FolderView/SearchBox.vue";
import getData from "../composables/getFiles.js";
import { onMounted, watch } from "@vue/runtime-core";
export default {
components: {
SongList,
FolderList,
SearchBox,
},
setup(props, context) {
const route = useRoute();
const path = ref(route.params.path);
const songs = ref([]);
const folders = ref([]);
const last_page = ref([]);
const last_song_id = ref(null);
const scrollable = ref(null);
const loading = ref(false);
const updateQueue = (queue) => {
context.emit("sendQueue", queue);
};
onMounted(() => {
const getPathFolders = (path, last_id) => {
loading.value = true;
getData(path, last_id).then((data) => {
scrollable.value.scrollTop = 0;
songs.value = data.songs.value;
last_page.value = songs.value;
if (songs.value.length) {
last_song_id.value = songs.value.slice(-1)[0]._id.$oid;
}
folders.value = data.folders.value;
loading.value = false;
});
};
getPathFolders(path.value);
watch(route, (new_route) => {
path.value = new_route.params.path;
getPathFolders(path.value);
});
scrollable.value.onscroll = () => {
let dom = scrollable.value;
let scrollY = dom.scrollHeight - dom.scrollTop;
let height = dom.offsetHeight;
let offset = height - scrollY;
if (offset == 0 || offset == 1) {
loading.value = true;
getData(path.value, last_song_id.value).then((data) => {
songs.value = songs.value.concat(data.songs.value);
loading.value = false;
if (songs.value.length) {
last_song_id.value = songs.value.slice(-1)[0]._id.$oid;
}
});
}
};
});
return {
songs,
folders,
path,
scrollable,
loading,
updateQueue,
};
},
};
</script>
<style lang="scss">
#f-view-parent {
position: relative;
height: 100%;
background-color: #131313b2;
padding-left: $small;
padding-right: $small;
padding-top: 5rem;
}
#f-view-parent .fixed {
position: absolute;
height: min-content;
width: calc(100% - 2rem);
top: 0.5rem;
}
#scrollable {
overflow-y: scroll;
height: 100%;
margin-top: $small;
&::-webkit-scrollbar {
display: none;
}
}
</style>