diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html
index 01719d8..12a7f91 100644
--- a/ui/src/app/app.component.html
+++ b/ui/src/app/app.component.html
@@ -126,6 +126,7 @@
+
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index 55ece6e..024d287 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -33,6 +33,7 @@ export class AppComponent implements AfterViewInit {
@ViewChild('queueMasterCheckbox') queueMasterCheckbox: MasterCheckboxComponent;
@ViewChild('queueDelSelected') queueDelSelected: ElementRef;
+ @ViewChild('queueDownloadSelected') queueDownloadSelected: ElementRef;
@ViewChild('doneMasterCheckbox') doneMasterCheckbox: MasterCheckboxComponent;
@ViewChild('doneDelSelected') doneDelSelected: ElementRef;
@ViewChild('doneClearCompleted') doneClearCompleted: ElementRef;
@@ -180,6 +181,7 @@ export class AppComponent implements AfterViewInit {
queueSelectionChanged(checked: number) {
this.queueDelSelected.nativeElement.disabled = checked == 0;
+ this.queueDownloadSelected.nativeElement.disabled = checked == 0;
}
doneSelectionChanged(checked: number) {
@@ -228,6 +230,10 @@ export class AppComponent implements AfterViewInit {
this.downloads.delById(where, [id]).subscribe();
}
+ startSelectedDownloads(where: string){
+ this.downloads.startByFilter(where, dl => dl.checked).subscribe();
+ }
+
delSelectedDownloads(where: string) {
this.downloads.delByFilter(where, dl => dl.checked).subscribe();
}
diff --git a/ui/src/app/downloads.service.ts b/ui/src/app/downloads.service.ts
index 75db747..51d98df 100644
--- a/ui/src/app/downloads.service.ts
+++ b/ui/src/app/downloads.service.ts
@@ -118,6 +118,12 @@ export class DownloadsService {
return this.http.post('delete', {where: where, ids: ids});
}
+ public startByFilter(where: string, filter: (dl: Download) => boolean) {
+ let ids: string[] = [];
+ this[where].forEach((dl: Download) => { if (filter(dl)) ids.push(dl.url) });
+ return this.startById(ids);
+ }
+
public delByFilter(where: string, filter: (dl: Download) => boolean) {
let ids: string[] = [];
this[where].forEach((dl: Download) => { if (filter(dl)) ids.push(dl.url) });