mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-12 22:17:35 +00:00
134 lines
3.0 KiB
Vue
134 lines
3.0 KiB
Vue
<template>
|
|
<div id="f-view-parent" class="rounded">
|
|
<div class="fixed">
|
|
<Header :path="path" :first_song="songs[0]" />
|
|
</div>
|
|
<div id="scrollable" ref="scrollable">
|
|
<FolderList :folders="folders" />
|
|
<div class="separator" v-if="folders.length && songs.length"></div>
|
|
<SongList :songs="songs" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { computed, ref } from "@vue/reactivity";
|
|
import { useRoute } from "vue-router";
|
|
|
|
import SongList from "@/components/FolderView/SongList.vue";
|
|
import FolderList from "@/components/FolderView/FolderList.vue";
|
|
import Header from "@/components/FolderView/Header.vue";
|
|
|
|
import getData from "../composables/getFiles.js";
|
|
import { onMounted, watch } from "@vue/runtime-core";
|
|
import state from "@/composables/state.js";
|
|
|
|
export default {
|
|
components: {
|
|
SongList,
|
|
FolderList,
|
|
Header,
|
|
},
|
|
setup() {
|
|
const route = useRoute();
|
|
const path = ref(route.params.path);
|
|
|
|
const song_list = ref(state.folder_song_list);
|
|
const folders = ref(state.folder_list);
|
|
|
|
const scrollable = ref(null);
|
|
|
|
function focusSearch() {
|
|
console.log("focusSearch");
|
|
}
|
|
|
|
const search_query = ref(state.search_query);
|
|
const filters = ref(state.filters);
|
|
|
|
const songs = computed(() => {
|
|
const songs = [];
|
|
|
|
if (!filters.value.includes("🈁")) {
|
|
return song_list.value;
|
|
}
|
|
|
|
if (search_query.value.length > 2) {
|
|
state.loading.value = true;
|
|
|
|
for (let i = 0; i < song_list.value.length; i++) {
|
|
if (
|
|
song_list.value[i].title
|
|
.toLowerCase()
|
|
.includes(search_query.value.toLowerCase())
|
|
) {
|
|
songs.push(song_list.value[i]);
|
|
}
|
|
}
|
|
|
|
state.song_list.value = songs;
|
|
state.loading.value = false;
|
|
|
|
return songs;
|
|
} else {
|
|
return song_list.value;
|
|
}
|
|
});
|
|
|
|
onMounted(() => {
|
|
const getPathFolders = (path, last_id) => {
|
|
state.loading.value = true;
|
|
getData(path, last_id).then((data) => {
|
|
scrollable.value.scrollTop = 0;
|
|
|
|
state.folder_song_list.value = data.songs;
|
|
state.folder_list.value = data.folders;
|
|
|
|
state.loading.value = false;
|
|
});
|
|
};
|
|
|
|
getPathFolders(path.value);
|
|
|
|
watch(route, (new_route) => {
|
|
state.search_query.value = "";
|
|
path.value = new_route.params.path;
|
|
|
|
if (!path.value) return;
|
|
|
|
getPathFolders(path.value);
|
|
});
|
|
});
|
|
|
|
return {
|
|
focusSearch,
|
|
songs,
|
|
folders,
|
|
path,
|
|
scrollable,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
#f-view-parent {
|
|
position: relative;
|
|
background-color: $card-dark;
|
|
padding: 4rem $small 0 $small;
|
|
overflow: hidden;
|
|
margin: $small 0 $small 0;
|
|
}
|
|
|
|
#f-view-parent .fixed {
|
|
position: absolute;
|
|
height: min-content;
|
|
width: calc(100% - 1rem);
|
|
top: 0.5rem;
|
|
}
|
|
|
|
#scrollable {
|
|
overflow-y: scroll;
|
|
height: calc(100% - $small);
|
|
padding-right: $small;
|
|
}
|
|
</style> |