mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 14:55:43 +00:00
fix(ui): in-page browse virtual lists and cover load priority (#783)
* fix(ui): in-page browse virtual lists and cover load priority Align virtualizer scrollMargin with the in-page scroll viewport so artist/album rows do not vanish on deep scroll after #731. Resolve CachedImage IntersectionObserver root to the nearest scrolling pane so network fetch slots favor visible covers; throttle Artists infinite scroll to one page per visibleCount update. * chore(release): CHANGELOG and credits for PR #783
This commit is contained in:
@@ -61,6 +61,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
|
||||
|
||||
### Fixed
|
||||
|
||||
**By [@cucadmuh](https://github.com/cucadmuh), PR [#783](https://github.com/Psychotoxical/psysonic/pull/783)**
|
||||
|
||||
* **In-page browse:** virtual artist/album/composer grids and lists no longer lose all rows after deep scroll — `scrollMargin` now targets the in-page overlay viewport, not the locked main route scrollport.
|
||||
* **Cover art on browse pages:** `CachedImage` priority scoring follows the real scrolling pane so visible thumbnails win network fetch slots; Artists infinite scroll loads one page per batch instead of re-entrantly queueing many pages during a fast fling.
|
||||
|
||||
|
||||
|
||||
## [1.46.0] - 2026-05-18
|
||||
|
||||
> **🙏 Special thanks to [@zz5zz](https://github.com/zz5zz)** for his tireless quirk-spotting and bug reports on the [Psysonic Discord](https://discord.gg/AMnDRErm4u) — several of the polish fixes in this release landed directly off the back of his messages.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, { useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react';
|
||||
import { APP_MAIN_SCROLL_VIEWPORT_ID } from '../constants/appScroll';
|
||||
import { acquireUrl, getCachedBlob, releaseUrl, subscribeCoverUpgraded } from '../utils/imageCache';
|
||||
import { resolveIntersectionScrollRoot } from '../utils/ui/resolveIntersectionScrollRoot';
|
||||
|
||||
interface CachedImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
|
||||
src: string;
|
||||
@@ -11,11 +11,16 @@ interface CachedImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
|
||||
*/
|
||||
fetchQueueBias?: number;
|
||||
/**
|
||||
* How far beyond the app scroll viewport `IntersectionObserver` expands the root.
|
||||
* How far beyond the scroll viewport `IntersectionObserver` expands the root.
|
||||
* Larger = priority / slot ordering updates while the row is still off-screen → less
|
||||
* empty flash when it hits the viewport. CSS margin syntax (`440px`, `10% 0`, …).
|
||||
*/
|
||||
observeRootMargin?: string;
|
||||
/**
|
||||
* Optional explicit IO root (e.g. in-page browse viewport id). When omitted,
|
||||
* the nearest scrolling ancestor is used so priority tracks the visible pane.
|
||||
*/
|
||||
observeScrollRootId?: string;
|
||||
}
|
||||
|
||||
/** Search UI: load artist avatars before album covers when many requests compete. */
|
||||
@@ -142,6 +147,7 @@ export default function CachedImage({
|
||||
cacheKey,
|
||||
fetchQueueBias = 0,
|
||||
observeRootMargin = DEFAULT_CACHED_IMAGE_PREPARE_MARGIN,
|
||||
observeScrollRootId,
|
||||
style,
|
||||
onLoad,
|
||||
onError,
|
||||
@@ -164,9 +170,10 @@ export default function CachedImage({
|
||||
const el = imgRef.current;
|
||||
if (!el) return;
|
||||
const root =
|
||||
typeof document !== 'undefined'
|
||||
? (document.getElementById(APP_MAIN_SCROLL_VIEWPORT_ID) as Element | null)
|
||||
: null;
|
||||
(observeScrollRootId
|
||||
? (document.getElementById(observeScrollRootId) as Element | null)
|
||||
: null)
|
||||
?? resolveIntersectionScrollRoot(el);
|
||||
const updateFromEntry = (entry: IntersectionObserverEntry) => {
|
||||
if (entry.isIntersecting) {
|
||||
const r = entry.boundingClientRect;
|
||||
@@ -191,7 +198,7 @@ export default function CachedImage({
|
||||
);
|
||||
observer.observe(el);
|
||||
return () => observer.disconnect();
|
||||
}, [observeRootMargin]);
|
||||
}, [observeRootMargin, observeScrollRootId]);
|
||||
|
||||
// Same as Hero/PlayerBar: show the salted fetch URL while IndexedDB/network resolves,
|
||||
// then swap to the shared blob URL — avoids an <img> with no src and opacity stuck at 0.
|
||||
|
||||
@@ -59,14 +59,10 @@ export function VirtualCardGrid<T>({
|
||||
return document.getElementById(APP_MAIN_SCROLL_VIEWPORT_ID) as HTMLElement | null;
|
||||
}, [scrollRootId]);
|
||||
|
||||
const scrollMargin = useVirtualizerScrollMargin(
|
||||
wrapRef,
|
||||
() => document.getElementById(APP_MAIN_SCROLL_VIEWPORT_ID),
|
||||
{
|
||||
active: !disableVirtualization,
|
||||
deps: [layoutSignal, virtualRowCount],
|
||||
},
|
||||
);
|
||||
const scrollMargin = useVirtualizerScrollMargin(wrapRef, getScrollElement, {
|
||||
active: !disableVirtualization,
|
||||
deps: [layoutSignal, virtualRowCount, scrollRootId],
|
||||
});
|
||||
|
||||
const virtualizer = useVirtualizer({
|
||||
count: disableVirtualization ? 0 : virtualRowCount,
|
||||
|
||||
@@ -2,6 +2,7 @@ import React, { useMemo } from 'react';
|
||||
import { buildCoverArtUrl, coverArtCacheKey } from '../../api/subsonicStreamUrl';
|
||||
import type { SubsonicArtist } from '../../api/subsonicTypes';
|
||||
import CachedImage from '../CachedImage';
|
||||
import { ARTISTS_INPAGE_SCROLL_VIEWPORT_ID } from '../../constants/appScroll';
|
||||
import { nameColor, nameInitial } from '../../utils/componentHelpers/artistsHelpers';
|
||||
|
||||
interface AvatarProps {
|
||||
@@ -31,6 +32,7 @@ export function ArtistCardAvatar({ artist, showImages }: AvatarProps) {
|
||||
src={coverSrc}
|
||||
cacheKey={coverKey}
|
||||
alt={artist.name}
|
||||
observeScrollRootId={ARTISTS_INPAGE_SCROLL_VIEWPORT_ID}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
@@ -64,6 +66,7 @@ export function ArtistRowAvatar({ artist, showImages }: AvatarProps) {
|
||||
src={coverSrc}
|
||||
cacheKey={coverKey}
|
||||
alt={artist.name}
|
||||
observeScrollRootId={ARTISTS_INPAGE_SCROLL_VIEWPORT_ID}
|
||||
style={{ width: '100%', height: '100%', objectFit: 'cover', borderRadius: '50%' }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -119,6 +119,7 @@ const CONTRIBUTOR_ENTRIES = [
|
||||
'M4A playback: fix AtomIterator overread in patched isomp4 demuxer — probe gate for ranged tail prefetch, zero-hole fallback detection (PR #757)',
|
||||
'Multi-server: Lucky Mix and Now Playing keep browsed server; queue metadata via apiForServer (PR #768)',
|
||||
'Linux: session GDK/WebKit mitigations, in-page library scroll, Wayland text presets (PR #731)',
|
||||
'In-page browse: virtual list scrollMargin + CachedImage load priority; Artists infinite-scroll batching (PR #783)',
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -40,16 +40,23 @@ export function useArtistsInfiniteScroll({
|
||||
const [loadingMore, setLoadingMore] = useState(false);
|
||||
const loadMoreRef = useRef<() => void>(() => {});
|
||||
const observerInst = useRef<IntersectionObserver | null>(null);
|
||||
/** Blocks overlapping sentinel callbacks until `visibleCount` commits. */
|
||||
const loadPendingRef = useRef(false);
|
||||
|
||||
const loadMore = useCallback(() => {
|
||||
if (loadingMore) return;
|
||||
if (loadPendingRef.current) return;
|
||||
loadPendingRef.current = true;
|
||||
setLoadingMore(true);
|
||||
setVisibleCount(prev => prev + pageSize);
|
||||
setTimeout(() => setLoadingMore(false), 100);
|
||||
}, [loadingMore, pageSize]);
|
||||
}, [pageSize]);
|
||||
|
||||
loadMoreRef.current = loadMore;
|
||||
|
||||
useEffect(() => {
|
||||
loadPendingRef.current = false;
|
||||
setLoadingMore(false);
|
||||
}, [visibleCount]);
|
||||
|
||||
useEffect(() => {
|
||||
setVisibleCount(pageSize);
|
||||
// resetDeps is intentionally spread into the dep array.
|
||||
|
||||
@@ -126,7 +126,7 @@ export default function Artists() {
|
||||
|
||||
const artistGridScrollMargin = useVirtualizerScrollMargin(
|
||||
artistGridMeasureRef,
|
||||
() => document.getElementById(APP_MAIN_SCROLL_VIEWPORT_ID),
|
||||
getInpageScrollElement,
|
||||
{
|
||||
active: !perfFlags.disableMainstageVirtualLists && viewMode === 'grid',
|
||||
deps: [artistVirtualRowCount, artistGridCols],
|
||||
@@ -159,7 +159,7 @@ export default function Artists() {
|
||||
const artistListWrapRef = useRef<HTMLDivElement>(null);
|
||||
const artistListScrollMargin = useVirtualizerScrollMargin(
|
||||
artistListWrapRef,
|
||||
() => document.getElementById(APP_MAIN_SCROLL_VIEWPORT_ID),
|
||||
getInpageScrollElement,
|
||||
{
|
||||
active: !perfFlags.disableMainstageVirtualLists && viewMode === 'list',
|
||||
deps: [artistListFlatRows.length],
|
||||
|
||||
@@ -215,7 +215,7 @@ export default function Composers() {
|
||||
const composerListWrapRef = useRef<HTMLDivElement>(null);
|
||||
const composerListScrollMargin = useVirtualizerScrollMargin(
|
||||
composerListWrapRef,
|
||||
() => document.getElementById(APP_MAIN_SCROLL_VIEWPORT_ID),
|
||||
getInpageScrollElement,
|
||||
{
|
||||
active: !perfFlags.disableMainstageVirtualLists && viewMode === 'list',
|
||||
deps: [composerListFlatRows.length],
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
// @vitest-environment jsdom
|
||||
import { describe, expect, it, beforeEach } from 'vitest';
|
||||
import { APP_MAIN_SCROLL_VIEWPORT_ID } from '../../constants/appScroll';
|
||||
import { resolveIntersectionScrollRoot } from './resolveIntersectionScrollRoot';
|
||||
|
||||
describe('resolveIntersectionScrollRoot', () => {
|
||||
beforeEach(() => {
|
||||
document.body.innerHTML = '';
|
||||
});
|
||||
|
||||
it('prefers the nearest scrolling ancestor', () => {
|
||||
const outer = document.createElement('div');
|
||||
const scroller = document.createElement('div');
|
||||
const img = document.createElement('img');
|
||||
Object.defineProperty(scroller, 'scrollHeight', { value: 2000, configurable: true });
|
||||
Object.defineProperty(scroller, 'clientHeight', { value: 400, configurable: true });
|
||||
scroller.style.overflowY = 'auto';
|
||||
outer.appendChild(scroller);
|
||||
scroller.appendChild(img);
|
||||
document.body.appendChild(outer);
|
||||
|
||||
expect(resolveIntersectionScrollRoot(img)).toBe(scroller);
|
||||
});
|
||||
|
||||
it('falls back to mainstage in-page viewport class', () => {
|
||||
const inpage = document.createElement('div');
|
||||
inpage.className = 'mainstage-inpage-scroll__viewport';
|
||||
const img = document.createElement('img');
|
||||
inpage.appendChild(img);
|
||||
document.body.appendChild(inpage);
|
||||
|
||||
expect(resolveIntersectionScrollRoot(img)).toBe(inpage);
|
||||
});
|
||||
|
||||
it('falls back to app main scroll viewport id', () => {
|
||||
const main = document.createElement('div');
|
||||
main.id = APP_MAIN_SCROLL_VIEWPORT_ID;
|
||||
const img = document.createElement('img');
|
||||
main.appendChild(img);
|
||||
document.body.appendChild(main);
|
||||
|
||||
expect(resolveIntersectionScrollRoot(img)).toBe(main);
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,25 @@
|
||||
import { APP_MAIN_SCROLL_VIEWPORT_ID } from '../../constants/appScroll';
|
||||
|
||||
/**
|
||||
* Scroll container for `IntersectionObserver` priority scoring on cover art.
|
||||
* Prefer the nearest scrolling ancestor (in-page browse, queue, route viewport);
|
||||
* fall back to known viewport class hooks, then the main route scroll element.
|
||||
*/
|
||||
export function resolveIntersectionScrollRoot(node: HTMLElement): Element | null {
|
||||
let parent = node.parentElement;
|
||||
while (parent) {
|
||||
const { overflowY } = window.getComputedStyle(parent);
|
||||
if (
|
||||
(overflowY === 'auto' || overflowY === 'scroll' || overflowY === 'overlay')
|
||||
&& parent.scrollHeight > parent.clientHeight + 2
|
||||
) {
|
||||
return parent;
|
||||
}
|
||||
parent = parent.parentElement;
|
||||
}
|
||||
return (
|
||||
(node.closest('.mainstage-inpage-scroll__viewport') as HTMLElement | null)
|
||||
?? (node.closest('.app-shell-route-scroll__viewport') as HTMLElement | null)
|
||||
?? (document.getElementById(APP_MAIN_SCROLL_VIEWPORT_ID) as HTMLElement | null)
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user