mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 22:45:41 +00:00
df3533bb5a
* fix(cover): tier fallback for sparse surfaces and Windows asset URLs Sparse UI (player bar, queue) now reads disk covers via the same tier ladder as dense grids, so a warm 800.webp satisfies a 128px request. Reject non-asset convertFileSrc results on Windows, widen Tauri asset scope, and seed ladder keys on cover:tier-ready. applyDiskPath uses seedGridDiskSrcCache only to avoid notify/subscriber infinite loops. * fix(artist): top-track thumb uses album coverArt already warm in grid Song coverArt ids often differ from album cover ids (e.g. Octastorium in the grid vs empty track thumb). Prefer the album row's coverArt on artist pages and ensure high priority for 32px dense cells. * fix(cover): albumId for playback/queue; no broken img until disk URL ready Prefer albumId over track-id coverArt (Navidrome). Wire queue to CoverArtImage with playback scope. CoverArtImage renders a placeholder div until asset src exists to avoid the browser broken-image icon. * fix(test): add song id to resolveArtistPageSongCoverArtId fixture Pick<SubsonicSong, …> requires id; fixes tsc in CI/build. * fix(cover): resolve albumId for Now Playing and artist top tracks Prefer albumId when album.coverArt echoes track id; use sparse surface on artist suggestion thumbs; apply resolveSubsonicSongCoverArtId across playback surfaces (Now Playing, fullscreen, mobile, mini). * fix(cover): decode PNG from Subsonic before WebP tier encode Enable `png` in the image crate — some servers return PNG cover art; failed decode left `.fetch-failed` and empty thumbs for those albums. * refactor(cover): consolidate cover id resolution and align tests Move resolveSubsonicSongCoverArtId helpers to src/cover/resolveCoverArtId.ts with resolvePlaybackTrackCoverArtId for player surfaces; co-locate tests; fix FullscreenPlayer expectations for albumId-first resolution. * docs: CHANGELOG and credits for PR #878 * fix(cover): keep per-track coverArt when distinct from song id Address PR #878 review (b): albumId only when coverArt is missing or echoes track id; pin case with unit test; comment isRawFsPath symmetry. * chore(cover): address PR #878 review nits (scope, tests, rename) Narrow asset scope to cover-cache dirs only; add diskSrcCache Windows-path tests; rename ArtistTopTrackCover; CHANGELOG symptom-first wording. * fix(cover): restore asset scope to app data dirs (Windows regression) $APPDATA/cover-cache/** did not match Tauri scope resolution — covers were blocked after load. Use $APPDATA/** and $APPLOCALDATA/** (no $DATA). * fix(cover): Windows asset URLs — restore DATA scope, path normalize Regression after review nits: dropped $DATA/** and strict isAssetProtocolUrl blocked valid http://asset.localhost URLs on Windows. Normalize C:/ paths before convertFileSrc; CoverArtImage/Hero hide broken img on load error. * fix(cover): disk peek fallbacks when cache folder id differs Small surfaces resolve albumId while cover-cache often stores WebP under track id or album.coverArt from the grid. Peek batch now tries legacy ids; playback scope resolves server index key by URL key, not UUID-only lookup. * fix(cover): Navidrome al-* vs mf-* disk id mismatch UI used mf-* coverArtId while library backfill only cached al-* folders. Prefer album id for display/peek when coverArt is mf-*; backfill now queues both distinct album_id and cover_art_id values. * fix(cover): mf→al disk peek when mf folder missing in cache Navidrome Subsonic often returns mf-* coverArtId while backfill only creates al-* folders. Peek mf first, then al-* from hints; load albumId from library when Subsonic omits it; ensure fallback uses al-* id. * feat(cover): CoverArtRef, segment disk layout, library-index backfill Normalize cover caching around stable entity ids from the local library and Navidrome fetch ids. Disk paths live in psysonic_core::cover_cache_layout (album/<entityId>/); UI uses CoverArtRef with cacheEntityId + fetchCoverArtId. - Remove SQLite/mf peek helpers (diskPeekIds, peekCoverOnDisk, mergeDiskIdHints) - Backfill reads album/artist rows from library SQLite (bare Navidrome ids ok) - Use stored cover_art_id for HTTP; per-disc dirs only when discs differ - Migrate call sites to albumCoverRef / albumCoverRefForPlayback * feat(cover): central CoverEntry resolver (artist, album, track) Add resolveEntry.ts and Rust CoverEntry helpers as the single source of truth for cache_entity_id vs fetch_cover_art_id. ref.ts delegates to them; resolveCoverArtId becomes a thin compatibility shim. * feat(cover): resolve cover entries from local library index Add library_resolve_cover_entry IPC and cover_resolve.rs so album, artist, and track covers use SQLite cover_art_id + disc detection. TypeScript helpers in resolveEntryLibrary.ts prefer the index over live API fields when rows exist. * feat(cover): library-first hooks for grids and playback UI Add useAlbumCoverRef, useArtistCoverRef, useTrackCoverRef, and usePlaybackTrackCoverRef — sync fallback then SQLite index upgrade. Wire album/artist cards, album header, song card, and all player surfaces to resolve covers from the local library when indexed. * feat(cover): complete library-first migration across all UI surfaces Add Album/Artist/TrackCoverArtImage, useLibraryCoverPrefetch, and batch resolve helpers. Migrate grids, search, home, playback sidecars, warm peek, playlists, and share flows to hooks that upgrade from SQLite. Backfill normalizes album rows through cover_resolve; document paths in COVER_PATHS.md. Radio remains a deliberate non-library exception. * fix(cover): stop render loop from unstable serverScope in library hooks Default param `{ kind: 'active' }` created a new object every render, so every grid cell re-ran library_resolve IPC and setState in a loop. Use COVER_SCOPE_ACTIVE singleton, coverScopeKey deps, and guarded sync updates. * chore(cover): remove COVER_PATHS.md from app tree (lives in workdocs) Audit doc is team spec — see workdocs 2026-05-cover-art-pipeline/cover-paths-audit.md. * fix(cover): unstick library backfill after route changes (PR #870 regression) useCoverNavigationPriority cleanup called beginNavigation instead of end, leaking navigationHoldDepth so ui_priority_hold never released and backfill never downloaded. Also skip disk check after cover_resolve normalization. * fix(cover): segment progress, cap backfill CPU, include artists in catalog Progress and disk size now scan album/ and artist/ segments (canonical 800.webp). Prune legacy flat server/al-* dirs on startup and backfill pass. Backfill: max 2 concurrent ensures; JPEG decode and WebP encode run on the blocking pool behind a shared 2-permit semaphore so Tokio workers stay cool. Artists were missing because the catalog only read the empty artist table; add distinct artist_id from track and album rows. Paginate with a composite (kind, id) cursor so album and artist rows are not skipped. * fix(cover): drop legacy prune; backfill per-disc and artist catalog Remove prune_legacy_* and cover_cache_catalog_entry — layout is only cover_dir (album|artist segments); stale flat dirs clear on LAYOUT_STAMP change. Backfill: artists from track/album artist_id; expand albums to per-CD mf-* slots when discs differ; fix resolve_album_cover_entry when album row is missing. * fix(cover): reduce library IPC storms and fix multi-disc player art Skip per-row library_resolve on live search and artist album grids; warm grids from API coverArt after mount instead of blocking layout. Dedupe and cap concurrent library_resolve calls. Restore per-disc cache keys in the player and queue when track mf-* art differs from the album bucket. * fix(cover): skip library resolve on advanced and full search rows Use API coverArt for album/artist rails and lazy viewport artwork so result pages do not fire hundreds of library_resolve IPC calls at once. * fix(cover): default libraryResolve off for browse grids and rails Skip per-card library_resolve on album/artist/song browse UI by default; keep it on album/artist headers, playback queue rows, and orbit approval. * fix(cover): split UI/backfill CPU pools and restore mainstage hero carousel Library backfill no longer shares the 2-permit JPEG/WebP semaphore with visible cover ensures. Hero initializes albums from props, re-binds scroll visibility after mount, updates backdrop on slide change, and uses library resolve for correct cover art on the banner. * fix(analysis): resume full-library scan after candidates phase Reset the SQL cursor when entering full-library mode so tracks with partial analysis are not skipped. Tighten TS backfill completion and CPU queue watermarking; align cover-cache key tests with album-scoped storage keys. * fix(library): remove useless map_err in cover_resolve (clippy) CI treats clippy::useless-conversion as error on rusqlite optional() chains. * fix(cover): satisfy clippy on cover_cache_ensure IPC args Pass CoverCacheEnsureArgs as a single Tauri parameter instead of nine positional fields; align frontend invoke payload with { args }.
410 lines
16 KiB
TypeScript
410 lines
16 KiB
TypeScript
import { getRandomAlbums, getAlbum } from '../api/subsonicLibrary';
|
||
import type { SubsonicAlbum } from '../api/subsonicTypes';
|
||
import { songToTrack } from '../utils/playback/songToTrack';
|
||
import React, { useEffect, useState, useRef, useCallback, useMemo } from 'react';
|
||
import { useNavigate } from 'react-router-dom';
|
||
import { Play, ListPlus, ChevronLeft, ChevronRight } from 'lucide-react';
|
||
import { CoverArtImage } from '../cover/CoverArtImage';
|
||
import { useCoverArt } from '../cover/useCoverArt';
|
||
import { useAlbumCoverRef } from '../cover/useLibraryCoverRef';
|
||
import { usePlayerStore } from '../store/playerStore';
|
||
import { useTranslation } from 'react-i18next';
|
||
import { playAlbum } from '../utils/playback/playAlbum';
|
||
import { useIsMobile } from '../hooks/useIsMobile';
|
||
import { useWindowVisibility } from '../hooks/useWindowVisibility';
|
||
import { useAuthStore } from '../store/authStore';
|
||
import { useThemeStore } from '../store/themeStore';
|
||
import { filterAlbumsByMixRatings, getMixMinRatingsConfigFromAuth } from '../utils/mix/mixRatingFilter';
|
||
import { usePerfProbeFlags } from '../utils/perf/perfFlags';
|
||
|
||
const INTERVAL_MS = 10000;
|
||
const HERO_ALBUM_COUNT = 8;
|
||
/** Larger pool when mix rating filter is on so we can still fill the hero strip. */
|
||
const HERO_RANDOM_POOL = 32;
|
||
/** Hero foreground cover (`.hero-cover` 220×220). */
|
||
const HERO_FG_CSS_PX = 220;
|
||
/** Hero blurred backdrop (full banner height). */
|
||
const HERO_BG_CSS_PX = 360;
|
||
|
||
// Crossfading background — same layer pattern as FullscreenPlayer
|
||
function HeroBg({ url }: { url: string }) {
|
||
const [layers, setLayers] = useState<Array<{ url: string; id: number; visible: boolean }>>(() =>
|
||
url ? [{ url, id: 0, visible: true }] : []
|
||
);
|
||
const counter = useRef(1);
|
||
|
||
useEffect(() => {
|
||
if (!url) return;
|
||
const id = counter.current++;
|
||
setLayers(prev => [...prev, { url, id, visible: false }]);
|
||
const t1 = setTimeout(() => setLayers(prev => prev.map(l => ({ ...l, visible: l.id === id }))), 20);
|
||
const t2 = setTimeout(() => setLayers(prev => prev.filter(l => l.id === id)), 900);
|
||
return () => { clearTimeout(t1); clearTimeout(t2); };
|
||
}, [url]);
|
||
|
||
return (
|
||
<>
|
||
{layers.map(layer => (
|
||
<img
|
||
key={layer.id}
|
||
className="hero-bg-image"
|
||
src={layer.url}
|
||
style={{ opacity: layer.visible ? 1 : 0 }}
|
||
aria-hidden="true"
|
||
alt=""
|
||
loading="eager"
|
||
decoding="sync"
|
||
draggable={false}
|
||
/>
|
||
))}
|
||
</>
|
||
);
|
||
}
|
||
|
||
interface HeroProps {
|
||
albums?: SubsonicAlbum[];
|
||
}
|
||
|
||
export default function Hero({ albums: albumsProp }: HeroProps = {}) {
|
||
const perfFlags = usePerfProbeFlags();
|
||
const { t } = useTranslation();
|
||
const navigate = useNavigate();
|
||
const isMobile = useIsMobile();
|
||
const musicLibraryFilterVersion = useAuthStore(s => s.musicLibraryFilterVersion);
|
||
const mixMinRatingFilterEnabled = useAuthStore(s => s.mixMinRatingFilterEnabled);
|
||
const enableCoverArtBackground = useThemeStore(s => s.enableCoverArtBackground);
|
||
const mixMinRatingAlbum = useAuthStore(s => s.mixMinRatingAlbum);
|
||
const mixMinRatingArtist = useAuthStore(s => s.mixMinRatingArtist);
|
||
const [albums, setAlbums] = useState<SubsonicAlbum[]>(() =>
|
||
albumsProp?.length ? albumsProp : [],
|
||
);
|
||
const [activeIdx, setActiveIdx] = useState(0);
|
||
const timerRef = useRef<ReturnType<typeof setInterval> | null>(null);
|
||
const windowHidden = useWindowVisibility();
|
||
const [windowBlurred, setWindowBlurred] = useState<boolean>(() => Boolean(window.__psyBlurred));
|
||
const heroRef = useRef<HTMLDivElement | null>(null);
|
||
const heroScrollRootRef = useRef<HTMLElement | null>(null);
|
||
const visibilityRafRef = useRef<number | null>(null);
|
||
const [heroInView, setHeroInView] = useState(true);
|
||
const heroInViewRef = useRef(true);
|
||
heroInViewRef.current = heroInView;
|
||
|
||
const computeHeroVisibleNow = useCallback((): boolean => {
|
||
const node = heroRef.current;
|
||
if (!node) return false;
|
||
const rect = node.getBoundingClientRect();
|
||
if (rect.height <= 0 || rect.width <= 0) {
|
||
return false;
|
||
}
|
||
const root = heroScrollRootRef.current;
|
||
const viewportTop = root ? root.getBoundingClientRect().top : 0;
|
||
const viewportBottom = root ? root.getBoundingClientRect().bottom : window.innerHeight;
|
||
const overlap = Math.max(0, Math.min(rect.bottom, viewportBottom) - Math.max(rect.top, viewportTop));
|
||
// Consider hero visible only when at least a meaningful slice is on screen.
|
||
const minVisiblePx = Math.min(56, rect.height * 0.2);
|
||
return overlap >= minVisiblePx;
|
||
}, []);
|
||
|
||
const updateHeroVisibility = useCallback(() => {
|
||
const visible = computeHeroVisibleNow();
|
||
setHeroInView(prev => (prev === visible ? prev : visible));
|
||
}, [computeHeroVisibleNow]);
|
||
|
||
useEffect(() => {
|
||
const node = heroRef.current;
|
||
if (!node) return;
|
||
// Prefer the nearest actual scrolling ancestor; class fallback for safety.
|
||
let scrollRoot: HTMLElement | null = null;
|
||
let parent = node.parentElement;
|
||
while (parent) {
|
||
const styles = window.getComputedStyle(parent);
|
||
const overflowY = styles.overflowY;
|
||
if ((overflowY === 'auto' || overflowY === 'scroll') && parent.scrollHeight > parent.clientHeight + 2) {
|
||
scrollRoot = parent;
|
||
break;
|
||
}
|
||
parent = parent.parentElement;
|
||
}
|
||
heroScrollRootRef.current =
|
||
scrollRoot ?? (node.closest('.app-shell-route-scroll__viewport') as HTMLElement | null);
|
||
updateHeroVisibility();
|
||
// Layout may settle after first paint (hero mounts after albums hydrate from props).
|
||
const layoutRaf = window.requestAnimationFrame(() => updateHeroVisibility());
|
||
const root = heroScrollRootRef.current;
|
||
const onScroll = () => {
|
||
if (visibilityRafRef.current != null) return;
|
||
visibilityRafRef.current = window.requestAnimationFrame(() => {
|
||
visibilityRafRef.current = null;
|
||
updateHeroVisibility();
|
||
});
|
||
};
|
||
const onResize = () => updateHeroVisibility();
|
||
const onFocusLike = () => updateHeroVisibility();
|
||
root?.addEventListener('scroll', onScroll, { passive: true });
|
||
window.addEventListener('resize', onResize);
|
||
window.addEventListener('focus', onFocusLike);
|
||
document.addEventListener('visibilitychange', onFocusLike);
|
||
return () => {
|
||
root?.removeEventListener('scroll', onScroll);
|
||
window.removeEventListener('resize', onResize);
|
||
window.removeEventListener('focus', onFocusLike);
|
||
document.removeEventListener('visibilitychange', onFocusLike);
|
||
if (visibilityRafRef.current != null) {
|
||
window.cancelAnimationFrame(visibilityRafRef.current);
|
||
visibilityRafRef.current = null;
|
||
}
|
||
window.cancelAnimationFrame(layoutRaf);
|
||
};
|
||
}, [updateHeroVisibility, albums.length]);
|
||
|
||
useEffect(() => {
|
||
const updateBlurState = () => {
|
||
setWindowBlurred(Boolean(window.__psyBlurred));
|
||
};
|
||
window.addEventListener('focus', updateBlurState);
|
||
window.addEventListener('blur', updateBlurState);
|
||
updateBlurState();
|
||
return () => {
|
||
window.removeEventListener('focus', updateBlurState);
|
||
window.removeEventListener('blur', updateBlurState);
|
||
};
|
||
}, []);
|
||
|
||
|
||
useEffect(() => {
|
||
if (heroInView || windowHidden) return;
|
||
// Recovery guard: if a scroll/RAF event was missed while hero was outside
|
||
// viewport, keep checking briefly so autoplay/background resume immediately
|
||
// after returning into view.
|
||
const id = window.setInterval(() => {
|
||
updateHeroVisibility();
|
||
}, 220);
|
||
return () => window.clearInterval(id);
|
||
}, [heroInView, windowHidden, updateHeroVisibility]);
|
||
|
||
useEffect(() => {
|
||
if (albumsProp?.length) { setAlbums(albumsProp); return; }
|
||
const cfg = { ...getMixMinRatingsConfigFromAuth(), minSong: 0 };
|
||
const albumMix = cfg.enabled && (cfg.minAlbum > 0 || cfg.minArtist > 0);
|
||
const pool = albumMix ? HERO_RANDOM_POOL : HERO_ALBUM_COUNT;
|
||
getRandomAlbums(pool)
|
||
.then(async raw => {
|
||
const list = albumMix
|
||
? (await filterAlbumsByMixRatings(raw, cfg)).slice(0, HERO_ALBUM_COUNT)
|
||
: raw;
|
||
setAlbums(list);
|
||
})
|
||
.catch(() => {});
|
||
}, [
|
||
albumsProp,
|
||
musicLibraryFilterVersion,
|
||
mixMinRatingFilterEnabled,
|
||
mixMinRatingAlbum,
|
||
mixMinRatingArtist,
|
||
]);
|
||
|
||
// Start / restart auto-advance timer (paused while the Tauri window is hidden).
|
||
const startTimer = useCallback((len: number) => {
|
||
if (timerRef.current) clearInterval(timerRef.current);
|
||
timerRef.current = null;
|
||
if (len <= 1 || windowHidden || windowBlurred || !heroInViewRef.current || !computeHeroVisibleNow()) return;
|
||
timerRef.current = setInterval(() => {
|
||
const visibleNow = computeHeroVisibleNow();
|
||
if (!visibleNow && heroInViewRef.current) setHeroInView(false);
|
||
if (document.hidden || window.__psyHidden || window.__psyBlurred || !heroInViewRef.current || !visibleNow) {
|
||
if (timerRef.current) clearInterval(timerRef.current);
|
||
timerRef.current = null;
|
||
return;
|
||
}
|
||
setActiveIdx(prev => (prev + 1) % len);
|
||
}, INTERVAL_MS);
|
||
}, [windowHidden, windowBlurred, computeHeroVisibleNow]);
|
||
|
||
useEffect(() => {
|
||
// Hard-stop timer immediately when hero leaves viewport.
|
||
if (heroInView && !windowBlurred) return;
|
||
if (timerRef.current) {
|
||
clearInterval(timerRef.current);
|
||
timerRef.current = null;
|
||
}
|
||
}, [heroInView, windowBlurred]);
|
||
|
||
useEffect(() => {
|
||
startTimer(albums.length);
|
||
return () => {
|
||
if (timerRef.current) clearInterval(timerRef.current);
|
||
timerRef.current = null;
|
||
};
|
||
}, [albums.length, heroInView, startTimer]);
|
||
|
||
const goPrev = useCallback(() => {
|
||
const len = albums.length;
|
||
if (len <= 1) return;
|
||
setActiveIdx(prev => (prev - 1 + len) % len);
|
||
startTimer(len);
|
||
}, [albums.length, startTimer]);
|
||
|
||
const goNext = useCallback(() => {
|
||
const len = albums.length;
|
||
if (len <= 1) return;
|
||
setActiveIdx(prev => (prev + 1) % len);
|
||
startTimer(len);
|
||
}, [albums.length, startTimer]);
|
||
|
||
const album = albums[activeIdx] ?? null;
|
||
|
||
// Lazily fetch format label for the currently-visible album (cached by id)
|
||
const [albumFormats, setAlbumFormats] = useState<Record<string, string>>({});
|
||
useEffect(() => {
|
||
if (!album || albumFormats[album.id] !== undefined) return;
|
||
getAlbum(album.id).then(data => {
|
||
const fmts = [...new Set(data.songs.map(s => s.suffix).filter((f): f is string => !!f))];
|
||
setAlbumFormats(prev => ({ ...prev, [album.id]: fmts.map(f => f.toUpperCase()).join(' / ') }));
|
||
}).catch(() => {
|
||
setAlbumFormats(prev => ({ ...prev, [album.id]: '' }));
|
||
});
|
||
}, [album?.id]);
|
||
|
||
const heroCoverRef = useAlbumCoverRef(album?.id, album?.coverArt);
|
||
const bgHandle = useCoverArt(heroCoverRef, HERO_BG_CSS_PX, {
|
||
surface: 'dense',
|
||
ensurePriority: 'high',
|
||
});
|
||
|
||
// Keep the last known good URL so HeroBg never receives '' during a cache-miss
|
||
// transition (which would cause the background to flash empty before fading in).
|
||
const stableBgUrl = useRef('');
|
||
const albumId = album?.id;
|
||
useEffect(() => {
|
||
if (bgHandle.src) stableBgUrl.current = bgHandle.src;
|
||
}, [bgHandle.src, albumId]);
|
||
|
||
if (!album) return <div className="hero-placeholder" />;
|
||
|
||
return (
|
||
<div
|
||
ref={heroRef}
|
||
className="hero"
|
||
role="banner"
|
||
aria-label={t('hero.eyebrow')}
|
||
onClick={() => navigate(`/album/${album.id}`)}
|
||
style={{ cursor: 'pointer' }}
|
||
>
|
||
{enableCoverArtBackground && !perfFlags.disableMainstageHeroBackdrop && heroInView && <HeroBg url={stableBgUrl.current} />}
|
||
{enableCoverArtBackground && !perfFlags.disableMainstageHeroBackdrop && heroInView && <div className="hero-overlay" aria-hidden="true" />}
|
||
|
||
{/* key causes re-mount → animate-fade-in triggers on each album change */}
|
||
<div className="hero-content" key={album.id}>
|
||
{heroCoverRef && !isMobile && (
|
||
<CoverArtImage
|
||
coverRef={heroCoverRef}
|
||
displayCssPx={HERO_FG_CSS_PX}
|
||
surface="dense"
|
||
ensurePriority="high"
|
||
className="hero-cover"
|
||
alt={`${album.name} Cover`}
|
||
/>
|
||
)}
|
||
<div className="hero-text">
|
||
<span className="hero-eyebrow">{t('hero.eyebrow')}</span>
|
||
<h2 className="hero-title">{album.name}</h2>
|
||
<p className="hero-artist">{album.artist}</p>
|
||
<div className="hero-meta">
|
||
{album.year && <span className="badge">{album.year}</span>}
|
||
{album.genre && <span className="badge">{album.genre}</span>}
|
||
{!isMobile && album.songCount && <span className="badge">{album.songCount} Tracks</span>}
|
||
{!isMobile && albumFormats[album.id] && <span className="badge">{albumFormats[album.id]}</span>}
|
||
</div>
|
||
{isMobile ? (
|
||
<div className="hero-actions-mobile" onClick={e => e.stopPropagation()}>
|
||
<button
|
||
className="album-icon-btn album-icon-btn--play"
|
||
onClick={e => { e.stopPropagation(); playAlbum(album.id); }}
|
||
aria-label={`${t('hero.playAlbum')} ${album.name}`}
|
||
>
|
||
<Play size={22} fill="currentColor" />
|
||
</button>
|
||
<button
|
||
className="album-icon-btn album-icon-btn--queue"
|
||
onClick={async e => {
|
||
e.stopPropagation();
|
||
try {
|
||
const albumData = await getAlbum(album.id);
|
||
usePlayerStore.getState().enqueue(albumData.songs.map(songToTrack));
|
||
} catch (_) {}
|
||
}}
|
||
aria-label={t('hero.enqueue')}
|
||
data-tooltip={t('hero.enqueueTooltip')}
|
||
>
|
||
<ListPlus size={20} />
|
||
</button>
|
||
</div>
|
||
) : (
|
||
<div style={{ display: 'flex', gap: '1rem', flexWrap: 'wrap' }}>
|
||
<button
|
||
className="hero-play-btn"
|
||
id="hero-play-btn"
|
||
onClick={e => { e.stopPropagation(); playAlbum(album.id); }}
|
||
aria-label={`${t('hero.playAlbum')} ${album.name}`}
|
||
>
|
||
<Play size={18} fill="currentColor" />
|
||
{t('hero.playAlbum')}
|
||
</button>
|
||
<button
|
||
className="btn btn-surface"
|
||
onClick={async (e) => {
|
||
e.stopPropagation();
|
||
try {
|
||
const albumData = await getAlbum(album.id);
|
||
const tracks = albumData.songs.map(songToTrack);
|
||
usePlayerStore.getState().enqueue(tracks);
|
||
} catch (_) {}
|
||
}}
|
||
style={{ padding: '0 1.5rem', fontWeight: 600, fontSize: '0.95rem' }}
|
||
data-tooltip={t('hero.enqueueTooltip')}
|
||
>
|
||
<ListPlus size={18} />
|
||
{t('hero.enqueue')}
|
||
</button>
|
||
</div>
|
||
)}
|
||
</div>
|
||
</div>
|
||
|
||
{/* Carousel navigation arrows + decorative dot indicators */}
|
||
{albums.length > 1 && (
|
||
<>
|
||
<div className="hero-nav" aria-hidden="false">
|
||
<button
|
||
type="button"
|
||
className="hero-nav-arrow hero-nav-arrow--left"
|
||
onClick={e => { e.stopPropagation(); goPrev(); }}
|
||
aria-label={t('hero.previousAlbum')}
|
||
data-tooltip={t('hero.previousAlbum')}
|
||
>
|
||
<ChevronLeft size={24} />
|
||
</button>
|
||
<button
|
||
type="button"
|
||
className="hero-nav-arrow hero-nav-arrow--right"
|
||
onClick={e => { e.stopPropagation(); goNext(); }}
|
||
aria-label={t('hero.nextAlbum')}
|
||
data-tooltip={t('hero.nextAlbum')}
|
||
>
|
||
<ChevronRight size={24} />
|
||
</button>
|
||
</div>
|
||
<div className="hero-dots" aria-hidden="true">
|
||
{albums.map((_, i) => (
|
||
<span
|
||
key={i}
|
||
className={`hero-dot${i === activeIdx ? ' hero-dot-active' : ''}`}
|
||
/>
|
||
))}
|
||
</div>
|
||
</>
|
||
)}
|
||
</div>
|
||
);
|
||
}
|