feat: upload queue with queued status and cancel button

Multi-file drops now show queued/uploading distinction. Jobs start
as 'queued' and transition to 'uploading' when the HTTP request
begins. Queued items show a cancel button in the upload panel.
Cancelled jobs are skipped in the sequential upload loop.
This commit is contained in:
Hiren Kangad
2026-03-10 20:42:17 +05:30
parent 9af4051b67
commit 9dc0815a12
3 changed files with 52 additions and 7 deletions
+27 -4
View File
@@ -1,4 +1,4 @@
export type UploadStatus = 'uploading' | 'processing' | 'done' | 'failed';
export type UploadStatus = 'queued' | 'uploading' | 'processing' | 'done' | 'failed';
export interface UploadJob {
id: string;
@@ -41,7 +41,7 @@ export class UploadManager {
fileName: file.name || (isVideo ? 'video' : 'image'),
fileSize: file.size,
mediaType: isVideo ? 'video' : 'image',
status: 'uploading',
status: 'queued',
progress: 0,
file,
boardId,
@@ -51,6 +51,29 @@ export class UploadManager {
return id;
}
/** Mark a queued job as actively uploading. */
startUpload(jobId: string) {
const job = this.jobs.get(jobId);
if (!job || job.status !== 'queued') return;
job.status = 'uploading';
this._notify();
}
/** Cancel a queued job (before upload starts). Returns true if cancelled. */
cancel(jobId: string): boolean {
const job = this.jobs.get(jobId);
if (!job || job.status !== 'queued') return false;
this._clearDismissTimer(jobId);
this.jobs.delete(jobId);
this._notify();
return true;
}
/** Check if a job has been cancelled (removed from map). */
isCancelled(jobId: string): boolean {
return !this.jobs.has(jobId);
}
/** Create a job for a URL-based import (no File object, unknown size). */
addUrlJob(fileName: string, mediaType: 'image' | 'video'): string {
const id = crypto.randomUUID();
@@ -167,11 +190,11 @@ export class UploadManager {
this._notify();
}
/** Get active (uploading or processing) job count. */
/** Get active (queued, uploading, or processing) job count. */
get activeCount(): number {
let count = 0;
for (const job of this.jobs.values()) {
if (job.status === 'uploading' || job.status === 'processing') count++;
if (job.status === 'queued' || job.status === 'uploading' || job.status === 'processing') count++;
}
return count;
}