[V1] Fixed Downloader Pause/Clear & Began Revision #1 Bug Fixes

This commit is contained in:
Youwes09
2026-02-23 00:03:37 -06:00
parent 55d1431673
commit edf2af8618
12 changed files with 731 additions and 118 deletions
+31 -5
View File
@@ -250,23 +250,49 @@ export const DEQUEUE_DOWNLOAD = `
export const START_DOWNLOADER = `
mutation StartDownloader {
startDownloader {
downloadStatus { state }
startDownloader(input: {}) {
downloadStatus {
state
queue {
progress
state
chapter {
id
name
pageCount
mangaId
manga { id title thumbnailUrl }
}
}
}
}
}
`;
export const STOP_DOWNLOADER = `
mutation StopDownloader {
stopDownloader {
downloadStatus { state }
stopDownloader(input: {}) {
downloadStatus {
state
queue {
progress
state
chapter {
id
name
pageCount
mangaId
manga { id title thumbnailUrl }
}
}
}
}
}
`;
export const CLEAR_DOWNLOADER = `
mutation ClearDownloader {
clearDownloader {
clearDownloader(input: {}) {
downloadStatus {
state
queue {