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.
79 lines
2.8 KiB
TypeScript
79 lines
2.8 KiB
TypeScript
import type React from 'react';
|
|
import type { TFunction } from 'i18next';
|
|
import { ndGetSmartPlaylist, ndListSmartPlaylists } from '../../api/navidromeSmart';
|
|
import type { SubsonicPlaylist } from '../../api/subsonicTypes';
|
|
import {
|
|
defaultSmartFilters, displayPlaylistName, isSmartPlaylistName,
|
|
parseSmartRulesToFilters, type SmartFilters,
|
|
} from './playlistsSmart';
|
|
import { showToast } from '../ui/toast';
|
|
|
|
export interface RunPlaylistsOpenSmartEditorDeps {
|
|
pl: SubsonicPlaylist;
|
|
isNavidromeServer: boolean;
|
|
t: TFunction;
|
|
setSmartFilters: React.Dispatch<React.SetStateAction<SmartFilters>>;
|
|
setEditingSmartId: React.Dispatch<React.SetStateAction<string | null>>;
|
|
setGenreQuery: React.Dispatch<React.SetStateAction<string>>;
|
|
setCreating: React.Dispatch<React.SetStateAction<boolean>>;
|
|
setCreatingSmart: React.Dispatch<React.SetStateAction<boolean>>;
|
|
setCreatingSmartBusy: React.Dispatch<React.SetStateAction<boolean>>;
|
|
}
|
|
|
|
export async function runPlaylistsOpenSmartEditor(deps: RunPlaylistsOpenSmartEditorDeps): Promise<void> {
|
|
const {
|
|
pl, isNavidromeServer, t,
|
|
setSmartFilters, setEditingSmartId, setGenreQuery,
|
|
setCreating, setCreatingSmart, setCreatingSmartBusy,
|
|
} = deps;
|
|
|
|
if (!isNavidromeServer || !isSmartPlaylistName(pl.name)) return;
|
|
setCreatingSmartBusy(true);
|
|
try {
|
|
let target: { id: string; name: string; rules?: Record<string, unknown> } | null = null;
|
|
try {
|
|
// Prefer direct endpoint for this playlist: returns freshest rules.
|
|
const direct = await ndGetSmartPlaylist(pl.id);
|
|
if (direct.id && (direct.rules || isSmartPlaylistName(direct.name))) target = direct;
|
|
} catch {
|
|
// Fallback to list endpoint below.
|
|
}
|
|
if (!target) {
|
|
const smart = await ndListSmartPlaylists();
|
|
target = smart.find((v) =>
|
|
v.id === pl.id ||
|
|
v.name === pl.name ||
|
|
displayPlaylistName(v.name) === displayPlaylistName(pl.name),
|
|
) ?? null;
|
|
}
|
|
if (target) {
|
|
setSmartFilters(parseSmartRulesToFilters(target.rules, target.name));
|
|
setEditingSmartId(target.id);
|
|
} else {
|
|
// Fallback: allow editing even if Navidrome smart list endpoint
|
|
// doesn't return this playlist (shared/migrated/legacy edge cases).
|
|
setSmartFilters({
|
|
...defaultSmartFilters,
|
|
name: displayPlaylistName(pl.name),
|
|
});
|
|
setEditingSmartId(pl.id);
|
|
}
|
|
setGenreQuery('');
|
|
setCreating(false);
|
|
setCreatingSmart(true);
|
|
} catch {
|
|
// Degrade gracefully instead of blocking the editor on transient/API errors.
|
|
setSmartFilters({
|
|
...defaultSmartFilters,
|
|
name: displayPlaylistName(pl.name),
|
|
});
|
|
setGenreQuery('');
|
|
setEditingSmartId(pl.id);
|
|
setCreating(false);
|
|
setCreatingSmart(true);
|
|
showToast(t('smartPlaylists.loadFailed'), 3500, 'warning');
|
|
} finally {
|
|
setCreatingSmartBusy(false);
|
|
}
|
|
}
|