mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 14:35:41 +00:00
7a7a9f5e6b
111 of 122 top-level src/utils/ files move into 16 topic folders (audio, cache, cover, share, server, playback, playlist, deviceSync, waveform, mix, format, export, changelog, ui, perf, componentHelpers). True singletons with no cluster stay at the utils/ root. Pure file-move: a path-aware codemod rewrote 539 relative-import specifiers across 275 files; no logic touched. The hot-path coverage gate list (.github/frontend-hot-path-files.txt) is updated to the new paths for the 11 gated utils files — a mechanical consequence of the move, not a CI change. tsc is green.
264 lines
9.4 KiB
TypeScript
264 lines
9.4 KiB
TypeScript
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
|
import type { SidebarItemConfig } from '../store/sidebarStore';
|
|
import {
|
|
applySidebarDropReorder,
|
|
getLibraryItemsForReorder,
|
|
getSystemItemsForReorder,
|
|
isSidebarNavItemUserHideable,
|
|
type SidebarNavDropTarget,
|
|
} from '../utils/componentHelpers/sidebarNavReorder';
|
|
import {
|
|
SIDEBAR_NAV_LONG_PRESS_MOVE_CANCEL_PX,
|
|
SIDEBAR_NAV_LONG_PRESS_MS,
|
|
isPointerOutsideAsideSidebar,
|
|
} from '../utils/componentHelpers/sidebarHelpers';
|
|
|
|
interface NavDndState {
|
|
section: 'library' | 'system';
|
|
fromIdx: number;
|
|
}
|
|
|
|
interface Args {
|
|
isCollapsed: boolean;
|
|
sidebarItemsRef: React.MutableRefObject<SidebarItemConfig[]>;
|
|
randomNavModeRef: React.MutableRefObject<'hub' | 'separate'>;
|
|
setSidebarItems: (items: SidebarItemConfig[]) => void;
|
|
}
|
|
|
|
interface Result {
|
|
navDnd: NavDndState | null;
|
|
navDropTarget: SidebarNavDropTarget | null;
|
|
navDndTrashHint: { x: number; y: number } | null;
|
|
suppressNavClickRef: React.MutableRefObject<boolean>;
|
|
handleNavRowPointerDown: (e: React.PointerEvent, section: 'library' | 'system', sectionIdx: number) => void;
|
|
navDndRowClass: (section: 'library' | 'system', sectionIdx: number) => string;
|
|
}
|
|
|
|
export function useSidebarNavDnd({
|
|
isCollapsed, sidebarItemsRef, randomNavModeRef, setSidebarItems,
|
|
}: Args): Result {
|
|
const [navDnd, setNavDnd] = useState<NavDndState | null>(null);
|
|
const [navDropTarget, setNavDropTarget] = useState<SidebarNavDropTarget | null>(null);
|
|
const navDropTargetRef = useRef<SidebarNavDropTarget | null>(null);
|
|
navDropTargetRef.current = navDropTarget;
|
|
/** DOM timers are numeric; avoid NodeJS `Timeout` typing from `setTimeout`. */
|
|
const longPressTimersRef = useRef<Map<number, number>>(new Map());
|
|
const suppressNavClickRef = useRef(false);
|
|
const lastPointerDuringNavDndRef = useRef({ x: 0, y: 0 });
|
|
const [navDndTrashHint, setNavDndTrashHint] = useState<{ x: number; y: number } | null>(null);
|
|
|
|
useEffect(() => () => {
|
|
longPressTimersRef.current.forEach(t => window.clearTimeout(t));
|
|
longPressTimersRef.current.clear();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (!navDnd) return;
|
|
|
|
const updateDropFromPoint = (clientX: number, clientY: number) => {
|
|
if (isPointerOutsideAsideSidebar(clientX, clientY)) {
|
|
navDropTargetRef.current = null;
|
|
setNavDropTarget(null);
|
|
return;
|
|
}
|
|
const rows = document.querySelectorAll<HTMLElement>('.sidebar [data-sidebar-nav-dnd-row]');
|
|
let target: SidebarNavDropTarget | null = null;
|
|
for (const row of rows) {
|
|
const section = row.dataset.sidebarSection as 'library' | 'system' | undefined;
|
|
if (section !== navDnd.section) continue;
|
|
const rect = row.getBoundingClientRect();
|
|
const idx = Number(row.dataset.sidebarIdx);
|
|
if (Number.isNaN(idx)) continue;
|
|
if (clientY < rect.top + rect.height / 2) {
|
|
target = { idx, before: true, section };
|
|
break;
|
|
}
|
|
target = { idx, before: false, section };
|
|
}
|
|
navDropTargetRef.current = target;
|
|
setNavDropTarget(target);
|
|
};
|
|
|
|
const endDrag = (apply: boolean) => {
|
|
window.removeEventListener('pointermove', onMove, { capture: true });
|
|
window.removeEventListener('pointerup', onUp, true);
|
|
window.removeEventListener('pointercancel', onUp, true);
|
|
window.removeEventListener('keydown', onKey, true);
|
|
document.body.style.userSelect = '';
|
|
setNavDndTrashHint(null);
|
|
|
|
const currentDnd = navDnd;
|
|
const drop = navDropTargetRef.current;
|
|
setNavDnd(null);
|
|
setNavDropTarget(null);
|
|
navDropTargetRef.current = null;
|
|
|
|
if (!apply || !currentDnd) return;
|
|
|
|
const { x, y } = lastPointerDuringNavDndRef.current;
|
|
if (isPointerOutsideAsideSidebar(x, y)) {
|
|
const sectionItems =
|
|
currentDnd.section === 'library'
|
|
? getLibraryItemsForReorder(sidebarItemsRef.current, randomNavModeRef.current)
|
|
: getSystemItemsForReorder(sidebarItemsRef.current);
|
|
const id = sectionItems[currentDnd.fromIdx]?.id;
|
|
if (id && isSidebarNavItemUserHideable(id)) {
|
|
const nextItems: SidebarItemConfig[] = sidebarItemsRef.current.map(i =>
|
|
i.id === id ? { ...i, visible: false } : i,
|
|
);
|
|
setSidebarItems(nextItems);
|
|
suppressNavClickRef.current = true;
|
|
}
|
|
return;
|
|
}
|
|
|
|
const next = applySidebarDropReorder(
|
|
sidebarItemsRef.current,
|
|
currentDnd.section,
|
|
currentDnd.fromIdx,
|
|
drop,
|
|
randomNavModeRef.current,
|
|
);
|
|
if (next) {
|
|
setSidebarItems(next);
|
|
suppressNavClickRef.current = true;
|
|
}
|
|
};
|
|
|
|
const onMove = (e: PointerEvent) => {
|
|
e.preventDefault();
|
|
lastPointerDuringNavDndRef.current = { x: e.clientX, y: e.clientY };
|
|
|
|
const outside = isPointerOutsideAsideSidebar(e.clientX, e.clientY);
|
|
const sectionItems =
|
|
navDnd.section === 'library'
|
|
? getLibraryItemsForReorder(sidebarItemsRef.current, randomNavModeRef.current)
|
|
: getSystemItemsForReorder(sidebarItemsRef.current);
|
|
const draggedId = sectionItems[navDnd.fromIdx]?.id;
|
|
const canTrash = Boolean(draggedId && isSidebarNavItemUserHideable(draggedId));
|
|
if (outside && canTrash) {
|
|
setNavDndTrashHint({ x: e.clientX, y: e.clientY });
|
|
} else {
|
|
setNavDndTrashHint(null);
|
|
}
|
|
|
|
updateDropFromPoint(e.clientX, e.clientY);
|
|
};
|
|
|
|
const onUp = (e: PointerEvent) => {
|
|
lastPointerDuringNavDndRef.current = { x: e.clientX, y: e.clientY };
|
|
suppressNavClickRef.current = true;
|
|
endDrag(true);
|
|
};
|
|
|
|
const onKey = (e: KeyboardEvent) => {
|
|
if (e.key === 'Escape') {
|
|
e.preventDefault();
|
|
endDrag(false);
|
|
}
|
|
};
|
|
|
|
document.body.style.userSelect = 'none';
|
|
window.addEventListener('pointermove', onMove, { capture: true, passive: false });
|
|
window.addEventListener('pointerup', onUp, true);
|
|
window.addEventListener('pointercancel', onUp, true);
|
|
window.addEventListener('keydown', onKey, true);
|
|
|
|
return () => {
|
|
window.removeEventListener('pointermove', onMove, { capture: true });
|
|
window.removeEventListener('pointerup', onUp, true);
|
|
window.removeEventListener('pointercancel', onUp, true);
|
|
window.removeEventListener('keydown', onKey, true);
|
|
document.body.style.userSelect = '';
|
|
setNavDndTrashHint(null);
|
|
};
|
|
}, [navDnd, setSidebarItems, sidebarItemsRef, randomNavModeRef]);
|
|
|
|
const handleNavRowPointerDown = useCallback(
|
|
(e: React.PointerEvent, section: 'library' | 'system', sectionIdx: number) => {
|
|
if (isCollapsed || navDnd) return;
|
|
if (e.pointerType === 'mouse' && e.button !== 0) return;
|
|
|
|
const pid = e.pointerId;
|
|
const sx = e.clientX;
|
|
const sy = e.clientY;
|
|
|
|
let cleaned = false;
|
|
const cleanupEarly = () => {
|
|
if (cleaned) return;
|
|
cleaned = true;
|
|
document.removeEventListener('pointermove', onEarlyMove);
|
|
document.removeEventListener('pointerup', onEarlyUp, true);
|
|
document.removeEventListener('pointercancel', onEarlyUp, true);
|
|
};
|
|
|
|
const onEarlyMove = (ev: PointerEvent) => {
|
|
if (ev.pointerId !== pid) return;
|
|
if (Math.hypot(ev.clientX - sx, ev.clientY - sy) > SIDEBAR_NAV_LONG_PRESS_MOVE_CANCEL_PX) {
|
|
const t = longPressTimersRef.current.get(pid);
|
|
if (t != null) window.clearTimeout(t);
|
|
longPressTimersRef.current.delete(pid);
|
|
cleanupEarly();
|
|
}
|
|
};
|
|
|
|
const onEarlyUp = (ev: PointerEvent) => {
|
|
if (ev.pointerId !== pid) return;
|
|
const t = longPressTimersRef.current.get(pid);
|
|
if (t != null) window.clearTimeout(t);
|
|
longPressTimersRef.current.delete(pid);
|
|
cleanupEarly();
|
|
};
|
|
|
|
const timer = window.setTimeout(() => {
|
|
longPressTimersRef.current.delete(pid);
|
|
cleanupEarly();
|
|
window.getSelection()?.removeAllRanges();
|
|
lastPointerDuringNavDndRef.current = { x: sx, y: sy };
|
|
setNavDnd({ section, fromIdx: sectionIdx });
|
|
navDropTargetRef.current = { idx: sectionIdx, before: true, section };
|
|
setNavDropTarget({ idx: sectionIdx, before: true, section });
|
|
try {
|
|
(e.currentTarget as HTMLElement).setPointerCapture(pid);
|
|
} catch {
|
|
/* ignore */
|
|
}
|
|
}, SIDEBAR_NAV_LONG_PRESS_MS) as unknown as number;
|
|
|
|
longPressTimersRef.current.set(pid, timer);
|
|
document.addEventListener('pointermove', onEarlyMove);
|
|
document.addEventListener('pointerup', onEarlyUp, true);
|
|
document.addEventListener('pointercancel', onEarlyUp, true);
|
|
},
|
|
[isCollapsed, navDnd],
|
|
);
|
|
|
|
const navDndRowClass = useCallback(
|
|
(section: 'library' | 'system', sectionIdx: number) => {
|
|
const dragging = navDnd?.section === section && navDnd.fromIdx === sectionIdx;
|
|
let drop = '';
|
|
if (
|
|
navDnd &&
|
|
navDropTarget?.section === section &&
|
|
navDropTarget.idx === sectionIdx &&
|
|
!(navDnd.section === section && navDnd.fromIdx === sectionIdx)
|
|
) {
|
|
drop = navDropTarget.before
|
|
? 'sidebar-nav-dnd-row--drop-before'
|
|
: 'sidebar-nav-dnd-row--drop-after';
|
|
}
|
|
return `sidebar-nav-dnd-row${dragging ? ' sidebar-nav-dnd-row--dragging' : ''}${drop ? ` ${drop}` : ''}`.trim();
|
|
},
|
|
[navDnd, navDropTarget],
|
|
);
|
|
|
|
return {
|
|
navDnd,
|
|
navDropTarget,
|
|
navDndTrashHint,
|
|
suppressNavClickRef,
|
|
handleNavRowPointerDown,
|
|
navDndRowClass,
|
|
};
|
|
}
|