minor improvements

This commit is contained in:
2026-03-12 19:20:46 +01:00
parent 7c61a3ca57
commit 8a2ec44a32
34 changed files with 787 additions and 785 deletions

View File

@@ -1,43 +1,44 @@
<script setup lang="ts">
import { useAudio } from '@/composables/useAudio';
import type { Song } from '@/script/types';
import { useAudio } from "@/composables/useAudio";
import type { Song } from "@/script/types";
const props = defineProps<{
song: Song,
action?: string,
info?: string,
border?: string,
song: Song;
action?: string;
info?: string;
border?: string;
}>();
const audioStore = useAudio();
function updateSong() {
let updated = props.song;
audioStore.setSong(updated)
audioStore.setSong(updated);
}
</script>
<template>
<div @click="updateSong" :style="{ borderColor: border }" class="m-1 md:text-xl border bordercolor rounded-lg flex">
<img class="h-14 w-14 md:w-24 md:h-24 m-1 rounded-lg"
<div @click="updateSong" :style="{ borderColor: border }" class="flex m-1 border rounded-lg md:text-xl bordercolor">
<img
class="m-1 rounded-lg w-14 md:w-24 h-14 md:h-24"
:src="encodeURI(props.song?.previewimage ? props.song?.previewimage + '?h=56&w=56' : '/default-bg.png')"
loading="lazy" />
loading="lazy"
/>
<div class="flex flex-col overflow-hidden text-left">
<p :style="{ color: info }" class="text-nowrap text-ellipsis overflow-hidden text-base info">
<slot name="songName">{{ props.song?.name ? props.song?.name : 'Unknown Title' }}</slot>
<p :style="{ color: info }" class="overflow-hidden text-base text-ellipsis text-nowrap info">
<slot name="songName">{{ props.song?.name ? props.song?.name : "Unknown Title" }}</slot>
</p>
<h5 :style="{ color: action }" class="action text-sm text-nowrap text-ellipsis overflow-hidden text-base">
<slot name="artist">{{ props.song?.artist ? props.song.artist : 'Unknown Artist' }}</slot>
<h5 :style="{ color: action }" class="overflow-hidden text-sm text-base text-ellipsis text-nowrap action">
<slot name="artist">{{ props.song?.artist ? props.song.artist : "Unknown Artist" }}</slot>
</h5>
<h5 :style="{ color: action }" class="action text-sm">
<slot name="length">{{ Math.floor(props.song?.length / 60000 ?? 0) }}:{{ Math.floor((props.song?.length ?? 0 /
1000)
% 60).toString().padStart(2, '0') }}</slot>
<h5 :style="{ color: action }" class="text-sm action">
<slot name="length"
>{{ Math.floor(props.song.length / 60000 || 0) }}:{{
Math.floor((props.song.length ?? 0 / 1000) % 60)
.toString()
.padStart(2, "0")
}}</slot
>
</h5>
</div>
</div>
</template>