Correction du bug d'update des covers dans l'interface web - Création du composable useCoverImage.ts pour centraliser la logique de chargement d'images - Refactorisation des composants CurrentTrack, MediaItem, QueueItem, RendererCard et ContainerItem pour utiliser le nouveau composable - Implémentation d'un retry automatique avec backoff exponentiel - Ajout de cache busting pour forcer le rechargement des images - Amélioration de la gestion d'état robuste avec détection du cache Fichiers créés et modifiés : - pmoapp/webapp/src/composables/useCoverImage.ts - pmoapp/webapp/src/components/pmocontrol/CurrentTrack.vue - pmoapp/webapp/src/components/pmocontrol/MediaItem.vue - pmoapp/webapp/src/components/pmocontrol/QueueItem.vue - pmoapp/webapp/src/components/pmocontrol/RendererCard.vue - pmoapp/webapp/src/components/pmocontrol/ContainerItem.vue - Blackboard/Report/bug_update_cover_webui.md - Blackboard/Rules.md - PMOMusic/Cargo.toml - Cargo.lock - version.txt
209 lines
4.9 KiB
Vue
209 lines
4.9 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from "vue";
|
|
import type { ContainerEntry } from "@/services/pmocontrol/types";
|
|
import { Music } from "lucide-vue-next";
|
|
import ActionMenu from "./ActionMenu.vue";
|
|
import { useCoverImage } from "@/composables/useCoverImage";
|
|
|
|
const props = defineProps<{
|
|
entry: ContainerEntry;
|
|
serverId: string;
|
|
showActions?: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
playNow: [itemId: string, rendererId: string];
|
|
addToQueue: [itemId: string, rendererId: string];
|
|
}>();
|
|
|
|
// Use the new cover image composable
|
|
const albumArtUri = computed(() => props.entry.album_art_uri);
|
|
const {
|
|
imageLoaded,
|
|
imageError,
|
|
coverImageRef,
|
|
cacheBustedUrl,
|
|
handleImageLoad,
|
|
handleImageError,
|
|
} = useCoverImage(albumArtUri);
|
|
|
|
function handlePlayNow(rendererId: string) {
|
|
emit("playNow", props.entry.id, rendererId);
|
|
}
|
|
|
|
function handleAddToQueue(rendererId: string) {
|
|
emit("addToQueue", props.entry.id, rendererId);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="media-item">
|
|
<!-- Cover miniature -->
|
|
<div class="media-cover">
|
|
<img
|
|
ref="coverImageRef"
|
|
:style="{
|
|
opacity:
|
|
cacheBustedUrl && imageLoaded && !imageError ? 1 : 0,
|
|
visibility:
|
|
cacheBustedUrl && imageLoaded && !imageError
|
|
? 'visible'
|
|
: 'hidden',
|
|
position:
|
|
cacheBustedUrl && imageLoaded && !imageError
|
|
? 'relative'
|
|
: 'absolute',
|
|
}"
|
|
:src="cacheBustedUrl || ''"
|
|
:alt="entry.album || entry.title"
|
|
class="cover-image"
|
|
@load="handleImageLoad"
|
|
@error="handleImageError"
|
|
/>
|
|
<div
|
|
v-show="!cacheBustedUrl || imageError || !imageLoaded"
|
|
class="cover-placeholder"
|
|
>
|
|
<Music :size="20" />
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Metadata -->
|
|
<div class="media-metadata">
|
|
<div class="media-title">{{ entry.title }}</div>
|
|
<div class="media-details">
|
|
<span v-if="entry.artist" class="media-artist">{{
|
|
entry.artist
|
|
}}</span>
|
|
<span v-if="entry.album" class="media-album">{{
|
|
entry.album
|
|
}}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Actions menu -->
|
|
<div class="media-actions">
|
|
<ActionMenu
|
|
type="item"
|
|
:entry-id="entry.id"
|
|
:server-id="serverId"
|
|
@play-now="handlePlayNow"
|
|
@add-to-queue="handleAddToQueue"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.media-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-md);
|
|
padding: var(--spacing-sm);
|
|
border-radius: var(--radius-md);
|
|
transition: background-color var(--transition-fast);
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.media-item:hover {
|
|
background-color: var(--color-bg-secondary);
|
|
border-color: var(--color-border);
|
|
}
|
|
|
|
/* Cover */
|
|
.media-cover {
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: var(--radius-sm);
|
|
overflow: hidden;
|
|
background-color: var(--color-bg-tertiary);
|
|
}
|
|
|
|
.cover-image {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.cover-placeholder {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--color-text-tertiary);
|
|
}
|
|
|
|
/* Metadata */
|
|
.media-metadata {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.media-title {
|
|
font-size: var(--text-base);
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.media-details {
|
|
display: flex;
|
|
gap: var(--spacing-sm);
|
|
font-size: var(--text-sm);
|
|
color: var(--color-text-secondary);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.media-artist {
|
|
flex-shrink: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.media-album {
|
|
flex-shrink: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.media-album::before {
|
|
content: "•";
|
|
margin-right: var(--spacing-sm);
|
|
}
|
|
|
|
/* Actions */
|
|
.media-actions {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.btn-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 36px;
|
|
height: 36px;
|
|
background: none;
|
|
border: none;
|
|
border-radius: var(--radius-sm);
|
|
color: var(--color-text-secondary);
|
|
cursor: pointer;
|
|
transition: all var(--transition-fast);
|
|
}
|
|
|
|
.btn-icon:hover {
|
|
background-color: var(--color-bg-tertiary);
|
|
color: var(--color-text);
|
|
}
|
|
</style>
|