client: move table items to a independent component

This commit is contained in:
geoffrey45 2022-01-11 01:36:04 +03:00
parent 17cbe14217
commit 521c195570
8 changed files with 138 additions and 99 deletions

View File

@ -272,7 +272,6 @@ def getArtistData(artist: str):
@cache.cached()
def getFolderTree(folder: str = None):
req_dir = folder.replace('|', '/')
print(folder)
if folder == "home":
req_dir = home_dir
@ -316,7 +315,6 @@ def getFolderTree(folder: str = None):
except:
pass
print(song['image'])
song['image'] = img_path + song['image']
return {"files": remove_duplicates(songs), "folders": sorted(folders, key=lambda i: i['name'])}

View File

@ -52,7 +52,7 @@ export default {
background-image: url(../../assets/icons/folder.svg);
background-repeat: no-repeat;
background-position: 1rem;
background-size: 10% 100%;
background-size: 1.5rem;
background-color: rgb(22, 36, 85);
transition: all 0.2s ease;

View File

@ -11,62 +11,17 @@
</tr>
</thead>
<tbody>
<tr
<SongItem
:searchSongs="searchSongs"
:songTitleWidth="songTitleWidth"
:minWidth="minWidth"
v-for="song in searchSongs"
:key="song"
:song="song"
:current="current"
:class="{ current: current._id == song._id }"
>
<td
:style="{ width: songTitleWidth + 'px' }"
class="flex"
@click="updateQueue(song), playAudio(song.filepath)"
>
<div
class="album-art rounded image"
:style="{
backgroundImage: `url(&quot;${song.image}&quot;)`,
}"
>
<div
class="now-playing-track image"
v-if="current._id == song._id"
:class="{ active: is_playing, not_active: !is_playing }"
></div>
</div>
<div>
<span class="ellip">{{ song.title }}</span>
</div>
</td>
<td :style="{ width: songTitleWidth + 'px' }">
<div class="ellip" v-if="song.artists[0] != ''">
<span
class="artist"
v-for="artist in putCommas(song.artists)"
:key="artist"
>{{ artist }}</span
>
</div>
<div class="ellip" v-else>
<span class="artist">{{ song.album_artist }}</span>
</div>
</td>
<td :style="{ width: songTitleWidth + 'px' }">
<router-link
class="ellip"
:to="{
name: 'AlbumView',
params: { album: song.album, artist: song.album_artist },
}"
>{{ song.album }}</router-link
>
</td>
<td
:style="{ width: songTitleWidth + 'px' }"
v-if="songTitleWidth > minWidth"
>
{{ `${Math.trunc(song.length / 60)} min` }}
</td>
</tr>
@updateQueue="updateQueue"
/>
</tbody>
</table>
</div>
@ -84,30 +39,21 @@
import { computed, ref, toRefs } from "@vue/reactivity";
import { onMounted, onUnmounted } from "@vue/runtime-core";
import audio from "@/composables/playAudio.js";
import SongItem from "../SongItem.vue";
import perks from "@/composables/perks.js";
import state from "@/composables/state.js";
export default {
props: ["songs"],
components: {
SongItem,
},
setup(props) {
const song_list = toRefs(props).songs;
const songtitle = ref(null);
const songTitleWidth = ref(null);
const minWidth = ref(300);
const putCommas = perks.putCommas;
const updateQueue = async (song) => {
if (state.queue.value[0]._id.$oid !== song_list.value[0]._id.$oid) {
const new_queue = song_list.value;
localStorage.setItem("queue", JSON.stringify(new_queue));
state.queue.value = new_queue;
}
state.current.value = song;
localStorage.setItem("current", JSON.stringify(song));
};
const resizeSongTitleWidth = () => {
try {
@ -133,21 +79,26 @@ export default {
});
});
const playAudio = audio.playAudio;
const current = ref(perks.current);
const search_query = ref(state.search_query);
function doNothing(e) {
e.preventDefault();
e.stopImmediatePropagation();
console.log('mwathani')
const updateQueue = async (song) => {
if (state.queue.value[0]._id.$oid !== song_list.value[0]._id.$oid) {
const new_queue = song_list.value;
localStorage.setItem("queue", JSON.stringify(new_queue));
state.queue.value = new_queue;
}
state.current.value = song;
localStorage.setItem("current", JSON.stringify(song));
};
const searchSongs = computed(() => {
const songs = [];
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
@ -168,16 +119,12 @@ export default {
return {
searchSongs,
doNothing,
updateQueue,
songtitle,
songTitleWidth,
minWidth,
playAudio,
updateQueue,
putCommas,
current,
search_query,
is_playing: state.is_playing,
};
},
};

View File

@ -10,7 +10,7 @@
<div>
<p id="title" class="ellipsis">{{ current.title }}</p>
<hr />
<div id="artist" v-if="current.artists[0] != ''">
<div id="artist" class="ellip" v-if="current.artists[0] != ''">
<span v-for="artist in putCommas(current.artists)" :key="artist">{{
artist
}}</span>

View File

@ -11,9 +11,9 @@
}"
></div>
<div class="tags">
<p class="title">{{ next.title }}</p>
<p class="title ellip">{{ next.title }}</p>
<hr />
<p class="artist">
<p class="artist ellip">
<span v-for="artist in putCommas(next.artists)" :key="artist">{{
artist
}}</span>

View File

@ -0,0 +1,79 @@
<template>
<tr>
<td
:style="{ width: songTitleWidth + 'px' }"
class="flex"
@click="emitUpdate(song), playAudio(song.filepath)"
>
<div
class="album-art rounded image"
:style="{
backgroundImage: `url(&quot;${song.image}&quot;)`,
}"
>
<div
class="now-playing-track image"
v-if="current._id == song._id"
:class="{ active: is_playing, not_active: !is_playing }"
></div>
</div>
<div>
<span class="ellip">{{ song.title }}</span>
</div>
</td>
<td :style="{ width: songTitleWidth + 'px' }">
<div class="ellip" v-if="song.artists[0] != ''">
<span
class="artist"
v-for="artist in putCommas(song.artists)"
:key="artist"
>{{ artist }}</span
>
</div>
<div class="ellip" v-else>
<span class="artist">{{ song.album_artist }}</span>
</div>
</td>
<td :style="{ width: songTitleWidth + 'px' }">
<router-link
class="ellip"
:to="{
name: 'AlbumView',
params: { album: song.album, artist: song.album_artist },
}"
>{{ song.album }}</router-link
>
</td>
<td
:style="{ width: songTitleWidth + 'px' }"
v-if="songTitleWidth > minWidth"
>
{{ `${Math.trunc(song.length / 60)} min` }}
</td>
</tr>
</template>
<script>
import perks from "@/composables/perks.js";
import state from "@/composables/state.js";
import audio from "@/composables/playAudio.js"
export default {
props: ["song", "current", "songTitleWidth", "minWidth"],
setup(props, { emit }) {
function emitUpdate(song) {
emit('updateQueue', song);
}
return {
putCommas: perks.putCommas,
emitUpdate,
is_playing: state.is_playing,
playAudio: audio.playAudio
};
},
};
</script>
<style>
</style>

View File

@ -92,23 +92,35 @@ function focusCurrent() {
}
}
function getElem(identifier, type){
switch(type){
case "class": {
return document.getElementsByClassName(identifier)[0]
}
case "id": {
return document.getElementById(identifier)
}
}
}
function focusSearchBox() {
const elem = getElem('search', 'id')
elem.focus()
}
setTimeout(() => {
watch(current, (new_current) => {
media.showMediaNotif();
new Promise((resolve) => {
updateNext(new_current);
updatePrev(new_current);
resolve();
}).then(() => {
focusCurrent();
});
localStorage.setItem("current", JSON.stringify(new_current));
});
}, 1000);
var key_down_fired = false;
let key_down_fired = false;
window.addEventListener("keydown", (e) => {
let target = e.target;
@ -134,11 +146,12 @@ window.addEventListener("keydown", (e) => {
if (!key_down_fired) {
key_down_fired = true;
playAudio.playPrev();
setTimeout(() => {
key_down_fired = false;
}, 1000);
playAudio.playPrev();
}
}
@ -148,6 +161,7 @@ window.addEventListener("keydown", (e) => {
{
if (!key_down_fired) {
if (target.tagName == "INPUT") return;
e.preventDefault();
key_down_fired = true;
playAudio.playPause();
@ -159,18 +173,17 @@ window.addEventListener("keydown", (e) => {
case "f": {
if (!key_down_fired) {
if (!ctrlKey) return;
e.preventDefault();
focusSearchBox()
console.log("ctrl + f pressed");
key_down_fired = true;
}
}
}
});
window.addEventListener("keyup", (e) => {
if (e.code == "Space") {
window.addEventListener("keyup", () => {
key_down_fired = false;
}
});
export default {

View File

@ -20,6 +20,8 @@ const playAudio = (path) => {
})
.then(() => {
audio.play();
perks.focusCurrent()
state.is_playing.value = true;
audio.ontimeupdate = () => {
@ -41,7 +43,6 @@ function playPrev() {
}
function seek(pos) {
console.log(pos);
audio.currentTime = (pos / 1000) * audio.duration;
}
@ -68,4 +69,5 @@ audio.addEventListener("pause", () => {
audio.addEventListener("ended", () => {
playNext();
});
export default { playAudio, playNext, playPrev, playPause, seek, pos, playing };