mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
fc34a0ec59
* feat(offline): local-bytes browse for artists and albums Make Artists, All Albums, and artist/album detail pages work offline from the library index limited to on-disk library and favorite-auto tracks. Add a DEV header toggle to simulate offline browse for testing. * feat(offline): reactive DEV offline toggle with full disconnect simulation Subscribe nav and browse/detail hooks to useOfflineBrowseActive so UI refreshes on toggle. DEV force-offline now blocks server probes, reports disconnected status, and gates Subsonic like real offline for player parity. * feat(offline): bytes-first favorites when offline browse is active Load Favorites from local playback bytes, filter starred tracks client-side, and restrict album-level star queries to local album ids. Drop interim perf attempts (lean SQL, progressive load, connection singleton, prefetch UX). * feat(offline): tracks, help, player stats; suspend library picker offline - Offline browse for Tracks hub from local bytes; sidebar nav for tracks/help/statistics - Statistics redirects to player-stats offline; server/Last.fm tabs skip network fetches - Hide music-library picker offline; save filter and restore on reconnect (all libraries while disconnected) - Unified isOfflineSidebarNavAllowed for library + system entries * feat(offline): fork disconnect navigation by offline browse capability When the server drops: stay on the page if nothing is browsable offline; reload in place on offline-capable routes; otherwise redirect to All Albums instead of the old /offline or /favorites bounce. * feat(offline): browse cached playlists when the server is down List and open manually pinned regular playlists from local library-tier bytes offline, with sidebar/nav routing and read-only playlist UI. * feat(offline): read-only artist detail and local play-all paths Hide favorites and discography offline actions when browse is offline; load Play All, Shuffle, and top-track continuation from local album bytes. * feat(offline): read-only album detail and enqueue from local bytes Hide favorites, download, and cache-offline actions on album pages when offline browse is active. Favorites album cards enqueue via the same resolveAlbumForServer path as play, including local playback bytes. * chore: remove unused import in AlbumCard after enqueue refactor * feat(offline): unify browse integration contract across the app Add useOfflineBrowseContext, offlineMediaResolve, and offlineActionPolicy; wire shell nav to a single capability source; migrate play/enqueue and context-menu paths off raw getAlbum; replace readOnly with action policy on detail surfaces. Tests updated for the media-resolve facade. * feat(offline): close browse contract gaps and fix offline Home feed Split offline browse modules, align favorites capability across servers, wire action policy on context menus, migrate hooks to useOfflineBrowseContext, and preserve stale Home feed cache when offline so the UI does not empty. * fix(offline): block playbar stars, close audit gaps, trim dead exports Hide star rating and favorite in PlayerBar when offline browse is active via offlineActionPolicy playerBar surface. Wire stay-reload token into browse hooks, migrate hooks to context.active, guard rating prefetch network calls, and route playlist load through resolvePlaylist. * docs: add CHANGELOG and credits for offline browse PR #1017 * fix(offline): stop DEV connection probe regression in tests React to devForceOffline transitions only in useConnectionStatus so mount does not double-fire check() or ignore disableBackgroundPolling. Add pingWithCredentials to PlayerBar test mock and DEV-toggle unit tests.
313 lines
12 KiB
TypeScript
313 lines
12 KiB
TypeScript
import { useState, useRef, useEffect, useMemo } from 'react';
|
|
import { createPortal } from 'react-dom';
|
|
import { usePlayerStore } from '../store/playerStore';
|
|
import { useOfflineJobStore } from '../store/offlineJobStore';
|
|
import { clearOfflinePinTasks } from '../utils/offline/offlinePinQueue';
|
|
import { useDeviceSyncJobStore } from '../store/deviceSyncJobStore';
|
|
import { useAuthStore } from '../store/authStore';
|
|
import { useSidebarStore } from '../store/sidebarStore';
|
|
import { useLocation } from 'react-router-dom';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { PanelLeft, PanelLeftClose, Trash2 } from 'lucide-react';
|
|
import PsysonicLogo from './PsysonicLogo';
|
|
import PSmallLogo from './PSmallLogo';
|
|
import { usePlaylistStore } from '../store/playlistStore';
|
|
import OverlayScrollArea from './OverlayScrollArea';
|
|
import {
|
|
getLibraryItemsForReorder,
|
|
getSystemItemsForReorder,
|
|
} from '../utils/componentHelpers/sidebarNavReorder';
|
|
import { useLuckyMixAvailable } from '../hooks/useLuckyMixAvailable';
|
|
import { usePerfProbeFlags } from '../utils/perf/perfFlags';
|
|
import { useSidebarNewReleasesUnread } from '../hooks/useSidebarNewReleasesUnread';
|
|
import { useSidebarNavDnd } from '../hooks/useSidebarNavDnd';
|
|
import { useSidebarLibraryDropdown } from '../hooks/useSidebarLibraryDropdown';
|
|
import { useSidebarScrollVisible } from '../hooks/useSidebarScrollVisible';
|
|
import { isOfflineSidebarNavAllowed } from '../utils/offline/offlineNavPolicy';
|
|
import { useOfflineBrowseContext } from '../hooks/useOfflineBrowseContext';
|
|
import { offlineBrowseNavFlags } from '../utils/offline/offlineBrowseContext';
|
|
import { useSidebarPerfProbe } from '../hooks/useSidebarPerfProbe';
|
|
import SidebarPerfProbeModal from './sidebar/SidebarPerfProbeModal';
|
|
import SidebarNavBody from './sidebar/SidebarNavBody';
|
|
|
|
|
|
export default function Sidebar({
|
|
isCollapsed = false,
|
|
toggleCollapse,
|
|
}: {
|
|
isCollapsed?: boolean;
|
|
toggleCollapse?: () => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const location = useLocation();
|
|
const isPlaying = usePlayerStore(s => s.isPlaying);
|
|
const currentTrack = usePlayerStore(s => s.currentTrack);
|
|
const offlineJobs = useOfflineJobStore(s => s.jobs);
|
|
const pinQueue = useOfflineJobStore(s => s.pinQueue);
|
|
const cancelAllDownloadsStore = useOfflineJobStore(s => s.cancelAllDownloads);
|
|
const activeJobs = offlineJobs.filter(j => j.status === 'queued' || j.status === 'downloading');
|
|
const activePin = pinQueue.find(p => p.status === 'downloading')
|
|
?? pinQueue.find(p => p.status === 'queued');
|
|
const queuedPinCount = pinQueue.filter(p => p.status === 'queued').length;
|
|
const cancelAllDownloads = () => {
|
|
clearOfflinePinTasks();
|
|
cancelAllDownloadsStore();
|
|
};
|
|
const syncJobStatus = useDeviceSyncJobStore(s => s.status);
|
|
const syncJobDone = useDeviceSyncJobStore(s => s.done);
|
|
const syncJobSkip = useDeviceSyncJobStore(s => s.skipped);
|
|
const syncJobFail = useDeviceSyncJobStore(s => s.failed);
|
|
const syncJobTotal = useDeviceSyncJobStore(s => s.total);
|
|
const isSyncing = syncJobStatus === 'running';
|
|
const offlineCtx = useOfflineBrowseContext();
|
|
const offlineNav = offlineBrowseNavFlags(offlineCtx.capabilities);
|
|
const serverId = useAuthStore(s => s.activeServerId ?? '');
|
|
const isLoggedIn = useAuthStore(s => s.isLoggedIn);
|
|
const musicFolders = useAuthStore(s => s.musicFolders);
|
|
const musicLibraryFilterByServer = useAuthStore(s => s.musicLibraryFilterByServer);
|
|
const setMusicLibraryFilter = useAuthStore(s => s.setMusicLibraryFilter);
|
|
const hotCacheEnabled = useAuthStore(s => s.hotCacheEnabled);
|
|
const setHotCacheEnabled = useAuthStore(s => s.setHotCacheEnabled);
|
|
const normalizationEngine = useAuthStore(s => s.normalizationEngine);
|
|
const setNormalizationEngine = useAuthStore(s => s.setNormalizationEngine);
|
|
const loggingMode = useAuthStore(s => s.loggingMode);
|
|
const setLoggingMode = useAuthStore(s => s.setLoggingMode);
|
|
const hasOfflineContent = offlineCtx.capabilities.manualPins;
|
|
const isServerOffline = offlineCtx.active;
|
|
const sidebarItems = useSidebarStore(s => s.items);
|
|
const setSidebarItems = useSidebarStore(s => s.setItems);
|
|
const randomNavMode = useAuthStore(s => s.randomNavMode);
|
|
const nowPlayingAtTop = useAuthStore(s => s.nowPlayingAtTop);
|
|
const luckyMixBase = useLuckyMixAvailable();
|
|
// Sidebar surfaces Lucky Mix as its own entry only in "separate" nav mode —
|
|
// in hub mode it lives inside the Build-a-Mix landing page instead.
|
|
const luckyMixAvailable = luckyMixBase && randomNavMode === 'separate';
|
|
const { libraryDropdownOpen, setLibraryDropdownOpen, dropdownRect, libraryTriggerRef } =
|
|
useSidebarLibraryDropdown();
|
|
const [playlistsExpanded, setPlaylistsExpanded] = useState(false);
|
|
const playlistsRaw = usePlaylistStore(s => s.playlists);
|
|
const playlistsLoading = usePlaylistStore(s => s.playlistsLoading);
|
|
const fetchPlaylists = usePlaylistStore(s => s.fetchPlaylists);
|
|
// Sort playlists alphabetically by name
|
|
const playlists = useMemo(() => {
|
|
return [...playlistsRaw].sort((a, b) => a.name.localeCompare(b.name));
|
|
}, [playlistsRaw]);
|
|
const [sidebarViewportEl, setSidebarViewportEl] = useState<HTMLDivElement | null>(null);
|
|
const isSidebarScrolling = useSidebarScrollVisible(sidebarViewportEl);
|
|
const showLibraryPicker = !isCollapsed && isLoggedIn && musicFolders.length > 1 && !isServerOffline;
|
|
|
|
const filterId = serverId ? (musicLibraryFilterByServer[serverId] ?? 'all') : 'all';
|
|
const selectedFolderName =
|
|
filterId === 'all' ? null : musicFolders.find(f => f.id === filterId)?.name ?? null;
|
|
|
|
const libraryItemsForReorder = useMemo(
|
|
() => getLibraryItemsForReorder(sidebarItems, randomNavMode),
|
|
[sidebarItems, randomNavMode],
|
|
);
|
|
const systemItemsForReorder = useMemo(
|
|
() => getSystemItemsForReorder(sidebarItems),
|
|
[sidebarItems],
|
|
);
|
|
const visibleLibraryConfigs = useMemo(
|
|
() =>
|
|
libraryItemsForReorder.filter(c => {
|
|
if (!c.visible) return false;
|
|
if (c.id === 'luckyMix' && !luckyMixAvailable) return false;
|
|
if (isServerOffline && !isOfflineSidebarNavAllowed(
|
|
c.id,
|
|
offlineNav.favoritesOfflineBrowse,
|
|
offlineNav.localLibraryBrowse,
|
|
offlineNav.playerStatsBrowse,
|
|
offlineNav.playlistsOfflineBrowse,
|
|
)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}),
|
|
[libraryItemsForReorder, luckyMixAvailable, isServerOffline, offlineNav],
|
|
);
|
|
const visibleSystemConfigs = useMemo(
|
|
() => systemItemsForReorder.filter(c => {
|
|
if (!c.visible) return false;
|
|
if (isServerOffline && !isOfflineSidebarNavAllowed(
|
|
c.id,
|
|
offlineNav.favoritesOfflineBrowse,
|
|
offlineNav.localLibraryBrowse,
|
|
offlineNav.playerStatsBrowse,
|
|
offlineNav.playlistsOfflineBrowse,
|
|
)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}),
|
|
[systemItemsForReorder, isServerOffline, offlineNav],
|
|
);
|
|
|
|
const sidebarItemsRef = useRef(sidebarItems);
|
|
sidebarItemsRef.current = sidebarItems;
|
|
const randomNavModeRef = useRef(randomNavMode);
|
|
randomNavModeRef.current = randomNavMode;
|
|
|
|
const {
|
|
navDnd,
|
|
navDndTrashHint,
|
|
suppressNavClickRef,
|
|
handleNavRowPointerDown,
|
|
navDndRowClass,
|
|
} = useSidebarNavDnd({
|
|
isCollapsed,
|
|
sidebarItemsRef,
|
|
randomNavModeRef,
|
|
setSidebarItems,
|
|
});
|
|
const newReleasesUnreadCount = useSidebarNewReleasesUnread({
|
|
serverId,
|
|
filterId,
|
|
isLoggedIn,
|
|
pathname: location.pathname,
|
|
});
|
|
const { perfProbeOpen, setPerfProbeOpen } = useSidebarPerfProbe();
|
|
const perfFlags = usePerfProbeFlags();
|
|
|
|
|
|
|
|
|
|
const pickLibrary = (id: 'all' | string) => {
|
|
if (isServerOffline) return;
|
|
setMusicLibraryFilter(id);
|
|
setLibraryDropdownOpen(false);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (isServerOffline) setLibraryDropdownOpen(false);
|
|
}, [isServerOffline, setLibraryDropdownOpen]);
|
|
|
|
// Fetch playlists when expanded
|
|
useEffect(() => {
|
|
if (!playlistsExpanded || !isLoggedIn) return;
|
|
fetchPlaylists();
|
|
}, [playlistsExpanded, isLoggedIn, fetchPlaylists]);
|
|
|
|
return (
|
|
<>
|
|
<aside className={`sidebar animate-slide-in ${isCollapsed ? 'collapsed' : ''}`}>
|
|
<div className="sidebar-brand" aria-hidden>
|
|
{isCollapsed
|
|
? <PSmallLogo style={{ height: '32px', width: 'auto' }} />
|
|
: <PsysonicLogo style={{ height: '28px', width: 'auto' }} />
|
|
}
|
|
</div>
|
|
|
|
<button
|
|
className="collapse-btn"
|
|
onClick={toggleCollapse}
|
|
style={{
|
|
opacity: isSidebarScrolling ? 0 : 1,
|
|
pointerEvents: isSidebarScrolling ? 'none' : 'auto',
|
|
}}
|
|
data-tooltip={isCollapsed ? t('sidebar.expand') : t('sidebar.collapse')}
|
|
data-tooltip-pos="right"
|
|
>
|
|
{isCollapsed ? <PanelLeft size={14} /> : <PanelLeftClose size={14} />}
|
|
</button>
|
|
|
|
<nav
|
|
className="sidebar-nav"
|
|
aria-label="Main navigation"
|
|
onClickCapture={e => {
|
|
if (suppressNavClickRef.current) {
|
|
suppressNavClickRef.current = false;
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
}
|
|
}}
|
|
>
|
|
<OverlayScrollArea
|
|
className="sidebar-nav-scroll"
|
|
viewportClassName="sidebar-nav-viewport"
|
|
viewportRef={setSidebarViewportEl}
|
|
railInset="panel"
|
|
measureDeps={[
|
|
isCollapsed,
|
|
playlistsExpanded,
|
|
playlists.length,
|
|
isLoggedIn,
|
|
randomNavMode,
|
|
filterId,
|
|
hasOfflineContent,
|
|
activeJobs.length,
|
|
isSyncing,
|
|
syncJobTotal,
|
|
sidebarItems.length,
|
|
]}
|
|
>
|
|
<SidebarNavBody
|
|
isCollapsed={isCollapsed}
|
|
showLibraryPicker={showLibraryPicker}
|
|
filterId={filterId}
|
|
selectedFolderName={selectedFolderName}
|
|
libraryDropdownOpen={libraryDropdownOpen}
|
|
setLibraryDropdownOpen={setLibraryDropdownOpen}
|
|
dropdownRect={dropdownRect}
|
|
libraryTriggerRef={libraryTriggerRef}
|
|
musicFolders={musicFolders}
|
|
pickLibrary={pickLibrary}
|
|
visibleLibraryConfigs={visibleLibraryConfigs}
|
|
libraryItemsForReorder={libraryItemsForReorder}
|
|
visibleSystemConfigs={visibleSystemConfigs}
|
|
systemItemsForReorder={systemItemsForReorder}
|
|
playlistsExpanded={playlistsExpanded}
|
|
setPlaylistsExpanded={setPlaylistsExpanded}
|
|
playlists={playlists}
|
|
playlistsLoading={playlistsLoading}
|
|
newReleasesUnreadCount={newReleasesUnreadCount}
|
|
navDnd={navDnd}
|
|
navDndRowClass={navDndRowClass}
|
|
handleNavRowPointerDown={handleNavRowPointerDown}
|
|
isPlaying={isPlaying}
|
|
hasNowPlayingTrack={!!currentTrack}
|
|
nowPlayingAtTop={nowPlayingAtTop}
|
|
hasOfflineContent={hasOfflineContent}
|
|
activeJobsCount={activeJobs.length}
|
|
activePinName={activePin?.albumName ?? null}
|
|
queuedPinCount={queuedPinCount}
|
|
cancelAllDownloads={cancelAllDownloads}
|
|
isSyncing={isSyncing}
|
|
syncJobDone={syncJobDone}
|
|
syncJobSkip={syncJobSkip}
|
|
syncJobFail={syncJobFail}
|
|
syncJobTotal={syncJobTotal}
|
|
/>
|
|
</OverlayScrollArea>
|
|
</nav>
|
|
</aside>
|
|
{navDndTrashHint != null &&
|
|
createPortal(
|
|
<div
|
|
className="sidebar-nav-dnd-trash-hint"
|
|
style={{
|
|
position: 'fixed',
|
|
left: navDndTrashHint.x + 14,
|
|
top: navDndTrashHint.y + 14,
|
|
}}
|
|
aria-hidden
|
|
>
|
|
<Trash2 size={22} strokeWidth={2.25} />
|
|
</div>,
|
|
document.body,
|
|
)}
|
|
<SidebarPerfProbeModal
|
|
open={perfProbeOpen}
|
|
onClose={() => setPerfProbeOpen(false)}
|
|
perfFlags={perfFlags}
|
|
hotCacheEnabled={hotCacheEnabled}
|
|
setHotCacheEnabled={setHotCacheEnabled}
|
|
normalizationEngine={normalizationEngine}
|
|
setNormalizationEngine={setNormalizationEngine}
|
|
loggingMode={loggingMode}
|
|
setLoggingMode={setLoggingMode}
|
|
/>
|
|
</>
|
|
);
|
|
}
|