2025-08-01 21:10:03 +02:00
|
|
|
<script lang="ts">
|
2025-08-02 02:12:41 +02:00
|
|
|
import type { Suggestion } from "$lib/types"
|
2025-08-01 22:04:55 +02:00
|
|
|
|
2025-08-02 02:12:41 +02:00
|
|
|
let { suggestions, roomId }: { suggestions: Suggestion[]; roomId: string } = $props()
|
|
|
|
|
2025-08-02 04:34:45 +02:00
|
|
|
async function vote(idx: number, amount: number, songId: string) {
|
|
|
|
suggestions[idx].upvote += amount
|
2025-08-02 02:12:41 +02:00
|
|
|
await fetch(`/api/song/voting?room=${roomId}&song=${songId}&increment=${amount}`, { method: "POST" })
|
|
|
|
}
|
2025-08-01 21:10:03 +02:00
|
|
|
</script>
|
2025-08-01 22:04:55 +02:00
|
|
|
|
|
|
|
<div class="flex h-full w-full flex-col items-center gap-2 overflow-y-auto">
|
2025-08-02 04:34:45 +02:00
|
|
|
{#if suggestions.length == 0}
|
|
|
|
<p>No suggestions yet! Try to add a new one using the <b>Add</b> button</p>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
{#each suggestions as sug, idx}
|
|
|
|
<div class="shadow-md hover:bg-indigo-400 duration-100 bg-indigo-500 flex h-[80px] w-full flex-row gap-2 rounded border-2 border-indigo-600 p-2">
|
2025-08-01 22:04:55 +02:00
|
|
|
<div class="flex w-3/4 flex-row gap-2">
|
2025-08-02 02:12:41 +02:00
|
|
|
<img class="w-[60px] min-w-[60px] rounded" src={`https://lastfm.freetls.fastly.net/i/u/174s/${sug.image_id}.png`} alt="Song cover" />
|
2025-08-02 04:34:45 +02:00
|
|
|
<div class="text-white">
|
|
|
|
<p>{sug.title}</p>
|
|
|
|
<p>{sug.artist}</p>
|
|
|
|
</div>
|
2025-08-01 22:04:55 +02:00
|
|
|
</div>
|
|
|
|
<div class="flex w-1/4 flex-row items-center justify-center gap-2">
|
|
|
|
<button
|
2025-08-02 04:34:45 +02:00
|
|
|
class="grayscale"
|
2025-08-01 22:04:55 +02:00
|
|
|
onclick={() => {
|
2025-08-02 04:34:45 +02:00
|
|
|
vote(idx, 1, sug.uuid)
|
|
|
|
}}>👍</button
|
2025-08-01 22:04:55 +02:00
|
|
|
>
|
2025-08-02 04:34:45 +02:00
|
|
|
<p class="text-white font-semibold">{sug.upvote}</p>
|
2025-08-01 22:04:55 +02:00
|
|
|
<button
|
2025-08-02 04:34:45 +02:00
|
|
|
class="hover:scale-150 duration-100"
|
2025-08-01 22:04:55 +02:00
|
|
|
onclick={() => {
|
2025-08-02 04:34:45 +02:00
|
|
|
vote(idx, -1, sug.uuid)
|
|
|
|
}}><div class="rotate-180">👍</div></button
|
2025-08-01 22:04:55 +02:00
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/each}
|
|
|
|
</div>
|