feat(playlist): exact-format-per-item selection #9

Merged
debont80 merged 2 commits from feat/playlist-per-item-format into main 2026-07-02 17:06:44 -04:00
Showing only changes of commit 15c2229539 - Show all commits
@@ -281,11 +281,11 @@ export function useDownloadBar(): DownloadBarController {
playlist === null && playlist === null &&
probeError === null probeError === null
function clearProbe(): void { // Per-entry format state is keyed by playlist position, so it must be dropped
setInfo(null) // any time the playlist itself is dropped or re-fetched -- otherwise a stale
setProbeError(null) // exact-format pick from a prior probe can silently reattach to a different
setFormatId('') // video that lands at the same index in the new result.
setPlaylist(null) function resetPlaylistItemState(): void {
setSelected(new Set()) setSelected(new Set())
setItemKinds({}) setItemKinds({})
setFormatExpanded(new Set()) setFormatExpanded(new Set())
@@ -295,6 +295,14 @@ export function useDownloadBar(): DownloadBarController {
setFormatProbeError({}) setFormatProbeError({})
} }
function clearProbe(): void {
setInfo(null)
setProbeError(null)
setFormatId('')
setPlaylist(null)
resetPlaylistItemState()
}
// Reset the whole bar after a download / playlist is enqueued: clear the URL + // Reset the whole bar after a download / playlist is enqueued: clear the URL +
// probe and drop the one-shot overrides (trim / schedule / advanced / incognito / // probe and drop the one-shot overrides (trim / schedule / advanced / incognito /
// per-download options) so the next download starts from the global defaults. // per-download options) so the next download starts from the global defaults.
@@ -387,6 +395,7 @@ export function useDownloadBar(): DownloadBarController {
setProbeError(null) setProbeError(null)
setInfo(null) setInfo(null)
setPlaylist(null) setPlaylist(null)
resetPlaylistItemState()
// Probing may switch the URL to the format-picker path, changing the command. // Probing may switch the URL to the format-picker path, changing the command.
setCommandPreview(null) setCommandPreview(null)
try { try {