client: fix sending multiple requests

on songlist click
This commit is contained in:
geoffrey45
2021-12-22 09:22:22 +03:00
parent 36999d8061
commit 81c8ae8629
7 changed files with 151 additions and 47 deletions
+40 -12
View File
@@ -14,7 +14,7 @@
<tr
v-for="song in songs"
:key="song"
@click="updateQueue(song.type.name, song.type.id)"
@click="updateQueue(song, song.type.name, song.type.id)"
>
<td :style="{ width: songTitleWidth + 'px' }" class="flex">
<div
@@ -55,30 +55,58 @@
</template>
<script>
import { ref } from "@vue/reactivity";
import { ref, toRefs } from "@vue/reactivity";
import { onMounted, onUnmounted } from "@vue/runtime-core";
import { playAudio } from "@/composables/playAudio.js";
import getQueue from "@/composables/getQueue.js";
import putCommas from "@/composables/perks.js";
import perks from "@/composables/perks.js";
export default {
props: ["songs"],
setup(props, context) {
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 resizeSongTitleWidth = () => {
let a = songtitle.value.clientWidth;
const updateQueue = async (song, type, id) => {
if (perks.queue.value[0]._id.$oid !== song_list.value[0]._id.$oid) {
const queue = await getQueue(type, id);
localStorage.setItem("queue", JSON.stringify(queue));
perks.queue.value = queue;
}
perks.current.value = song;
localStorage.setItem("current", JSON.stringify(song));
const index = perks.queue.value.findIndex(
(item) => item._id.$oid === song._id.$oid
);
if (index == perks.queue.value.length - 1) {
perks.next.value = perks.queue.value[0];
} else {
perks.next.value = perks.queue.value[index + 1];
}
localStorage.setItem(
"next",
JSON.stringify(perks.queue.value[index + 1])
);
songTitleWidth.value = a > minWidth.value * 4 ? a / 4 : a / 3;
};
const updateQueue = async (type, id) => {
const queue = await getQueue(type, id);
context.emit("updateQueue", queue);
const resizeSongTitleWidth = () => {
try {
let a = songtitle.value.clientWidth;
songTitleWidth.value = a > minWidth.value * 4 ? a / 4 : a / 3;
} catch (error) {
return;
}
};
onMounted(() => {
@@ -101,7 +129,7 @@ export default {
minWidth,
playAudio,
updateQueue,
putCommas
putCommas,
};
},
};
+24 -5
View File
@@ -1,11 +1,20 @@
<template>
<div class="now-playing">
<div class="art-tags">
<div class="album-art image"></div>
<div
class="album-art image"
:style="{
backgroundImage: `url(&quot;${current.image}&quot;)`,
}"
></div>
<div>
<p id="title" class="ellipsis">I love this bar (remix)</p>
<p id="title" class="ellipsis">{{ current.title }}</p>
<hr />
<span id="artist">Toby Keith, Morgan Wallen</span>
<div id="artist">
<span v-for="artist in putCommas(current.artists)" :key="artist">{{
artist
}}</span>
</div>
</div>
</div>
<div class="controls">
@@ -17,7 +26,17 @@
</template>
<script>
export default {};
import { ref } from "@vue/reactivity";
import perks from "../../composables/perks.js";
export default {
setup() {
const current = ref(perks.current);
const putCommas = perks.putCommas;
return { current, putCommas };
},
};
</script>
<style>
@@ -43,7 +62,7 @@ export default {};
border-radius: 0.5rem;
margin-right: 0.5rem;
background-color: #ad1717a8;
background-image: url(../../assets/images/tk.jpg);
background-image: url(../../assets/images/null.webp);
}
.now-playing .art-tags hr {
+23 -8
View File
@@ -4,11 +4,20 @@
COMING UP NEXT <span class="more" @click="collapse">SEE ALL</span>
</p>
<div class="main-item h-1">
<div class="album-art image"></div>
<div
class="album-art image"
:style="{
backgroundImage: `url(&quot;${next.image}&quot;)`,
}"
></div>
<div class="tags">
<p class="title">Hard to forget</p>
<p class="title">{{ next.title }}</p>
<hr />
<p class="artist">Sam hunt</p>
<p class="artist">
<span v-for="artist in putCommas(next.artists)" :key="artist">{{
artist
}}</span>
</p>
</div>
</div>
<div>
@@ -38,19 +47,25 @@
</template>
<script>
import { toRefs } from "@vue/reactivity";
import putCommas from "@/composables/perks.js";
import { ref, toRefs } from "@vue/reactivity";
import perks from "@/composables/perks.js";
export default {
props: ["up_next", "queue"],
props: ["up_next"],
setup(props, { emit }) {
const is_expanded = toRefs(props).up_next;
const queue = ref(perks.queue);
const next = ref(perks.next);
let collapse = () => {
emit("expandQueue");
};
return { collapse, is_expanded, putCommas };
const putCommas = perks.putCommas;
return { collapse, is_expanded, putCommas, queue, next };
},
};
</script>