mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
4ac373a65b
* feat(artists): scoped live search badge replaces page filter Move Artists browse text search into the header Live Search with a page scope badge (Users icon), field-local undo, and double-click/backspace to clear scope. Block the live-search dropdown while scoped so results only filter the Artists grid; mobile overlay follows the same rules. * fix(artists): plain grid for scoped search fixes broken card layout Route the browse grid through VirtualCardGrid, switch to non-virtual CSS grid when live search filters the catalog, reset scroll on filter changes, and skip content-visibility on plain tiles to avoid blank/black cards. * fix(search): scope badge double-Backspace and single clear control Require two Backspaces on an empty scoped field after prior text input; one Backspace still clears the badge when the field was never filled. Move live-search clear/advanced controls inside the field pill, drop the extra outer clear button, and use type=text to avoid native search clears. * fix(search): drop duplicate outer live-search clear button Keep the native in-field clear on type=search and the original pill layout; remove only the extra × control outside the search border. Reset dropdown state when the query is cleared via the native control. * refactor(search): generic scoped browse query helper, drop dead code Rename artistsBrowseSearchQuery to scopedBrowseSearchQuery with an expectedScope argument; wire Artists via useScopedBrowseSearchQuery. Remove unused liveSearchScoped dropdown helper (scoped mode blocks it). * feat(search): ghost scope badge and single-click badge remove After clearing the artists scope on /artists, show a faded ghost chip to restore page-only search while keeping the global search placeholder. Active badge removes on one click; tooltips and styles updated. * feat(search): scoped live search for All Albums and New Releases Wire albums and newReleases scope badges with debounced album title search (local index title-only FTS + filtered search3). Plain grid, scroll reset, and session query restore on album grid browse pages. * fix(browse): preserve scroll restore after album/artist detail back Only reset in-page scroll when filter resetKey changes, not when isScrollRestorePending clears after session restore. * feat(search): scoped live search for Tracks browse Wire /tracks to header live search with wide title/artist/album FTS, hide hero and discovery rails while search is active, and remove the inline search field from the browse list. * fix(search): clear header query when leaving scoped browse pages Prevent global live search from firing on album/detail routes after a scoped browse query; browse session stashes still restore on back. * fix(tracks): restore scroll after back from detail during scoped search Hold stashed song results across fetchSongPage churn, defer leave-stash teardown past AppShell scroll reset, restore tracks scroll after the list is ready, and save scroll snapshot when opening artist from song context menu. * fix(tracks): hide discovery headings during scoped search Hide the page subtitle and "Browse all tracks" section title when tracks search is active, matching hero/rails chrome behavior. * feat(search): scoped live search for Composers browse Wire /composers to header live search with composers scope badge, session stash, scroll restore, and plain grid/list during text filter. Remove the in-page filter input; add i18n and navigation helpers. * docs: CHANGELOG and credits for scoped browse live search (PR #938)
114 lines
3.7 KiB
TypeScript
114 lines
3.7 KiB
TypeScript
import { useEffect, useRef, useState, type RefObject } from 'react';
|
|
import { useLocation, useNavigationType, type NavigationType } from 'react-router-dom';
|
|
import { isComposerDetailPath } from '../store/albumBrowseSessionStore';
|
|
import {
|
|
DEFAULT_COMPOSER_BROWSE_RETURN_STATE,
|
|
type ComposerBrowseReturnState,
|
|
type ComposerBrowseViewMode,
|
|
isComposersBrowsePath,
|
|
useComposerBrowseSessionStore,
|
|
} from '../store/composerBrowseSessionStore';
|
|
import { shouldRestoreComposerBrowseSession } from '../utils/navigation/albumDetailNavigation';
|
|
import { useLiveSearchScopeStore } from '../store/liveSearchScopeStore';
|
|
|
|
export type ComposerBrowseScrollSnapshot = {
|
|
scrollTop: number;
|
|
visibleCount: number;
|
|
};
|
|
|
|
function returnStateForNavigation(
|
|
serverId: string,
|
|
navigationType: NavigationType,
|
|
locationState: unknown,
|
|
): ComposerBrowseReturnState {
|
|
if (!shouldRestoreComposerBrowseSession(navigationType, locationState) || !serverId) {
|
|
return DEFAULT_COMPOSER_BROWSE_RETURN_STATE;
|
|
}
|
|
return (
|
|
useComposerBrowseSessionStore.getState().peekReturnStash(serverId)
|
|
?? DEFAULT_COMPOSER_BROWSE_RETURN_STATE
|
|
);
|
|
}
|
|
|
|
export function useComposersBrowseFilters(
|
|
serverId: string,
|
|
scrollSnapshotRef?: RefObject<ComposerBrowseScrollSnapshot>,
|
|
) {
|
|
const navigationType = useNavigationType();
|
|
const location = useLocation();
|
|
|
|
const [letterFilter, setLetterFilter] = useState(
|
|
() => returnStateForNavigation(serverId, navigationType, location.state).letterFilter,
|
|
);
|
|
const [starredOnly, setStarredOnly] = useState(
|
|
() => returnStateForNavigation(serverId, navigationType, location.state).starredOnly,
|
|
);
|
|
const [viewMode, setViewMode] = useState<ComposerBrowseViewMode>(
|
|
() => returnStateForNavigation(serverId, navigationType, location.state).viewMode,
|
|
);
|
|
|
|
const browseStateRef = useRef<ComposerBrowseReturnState>(DEFAULT_COMPOSER_BROWSE_RETURN_STATE);
|
|
const restoredFromStashRef = useRef(false);
|
|
|
|
browseStateRef.current = {
|
|
filter: useLiveSearchScopeStore.getState().query,
|
|
letterFilter,
|
|
starredOnly,
|
|
viewMode,
|
|
};
|
|
|
|
useEffect(() => {
|
|
restoredFromStashRef.current = false;
|
|
}, [serverId]);
|
|
|
|
useEffect(() => {
|
|
if (!serverId) return;
|
|
|
|
if (shouldRestoreComposerBrowseSession(navigationType, location.state)) {
|
|
restoredFromStashRef.current = true;
|
|
const restored = useComposerBrowseSessionStore.getState().peekReturnStash(serverId);
|
|
if (restored) {
|
|
useLiveSearchScopeStore.getState().setQuery(restored.filter);
|
|
setLetterFilter(restored.letterFilter);
|
|
setStarredOnly(restored.starredOnly);
|
|
setViewMode(restored.viewMode);
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (restoredFromStashRef.current) return;
|
|
|
|
useComposerBrowseSessionStore.getState().clearReturnStash(serverId);
|
|
useLiveSearchScopeStore.getState().setQuery('');
|
|
setLetterFilter(DEFAULT_COMPOSER_BROWSE_RETURN_STATE.letterFilter);
|
|
setStarredOnly(false);
|
|
setViewMode('grid');
|
|
}, [serverId, navigationType, location.state]);
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
if (!serverId) return;
|
|
const path = window.location.pathname;
|
|
if (isComposerDetailPath(path)) {
|
|
const snapshot = scrollSnapshotRef?.current;
|
|
useComposerBrowseSessionStore.getState().stashReturnState(serverId, {
|
|
...browseStateRef.current,
|
|
scrollTop: snapshot?.scrollTop,
|
|
visibleCount: snapshot?.visibleCount,
|
|
});
|
|
} else if (!isComposersBrowsePath(path)) {
|
|
useComposerBrowseSessionStore.getState().clearReturnStash(serverId);
|
|
}
|
|
};
|
|
}, [serverId, scrollSnapshotRef]);
|
|
|
|
return {
|
|
letterFilter,
|
|
setLetterFilter,
|
|
starredOnly,
|
|
setStarredOnly,
|
|
viewMode,
|
|
setViewMode,
|
|
};
|
|
}
|