mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
[ Feature ] Add retry button (#327)
This commit is contained in:
parent
99ffa60a17
commit
7575ff895d
2 changed files with 12 additions and 0 deletions
|
@ -152,6 +152,7 @@
|
||||||
<button type="button" class="btn btn-link text-decoration-none px-0 me-4" disabled #doneDelSelected (click)="delSelectedDownloads('done')"><fa-icon [icon]="faTrashAlt"></fa-icon> Clear selected</button>
|
<button type="button" class="btn btn-link text-decoration-none px-0 me-4" disabled #doneDelSelected (click)="delSelectedDownloads('done')"><fa-icon [icon]="faTrashAlt"></fa-icon> Clear selected</button>
|
||||||
<button type="button" class="btn btn-link text-decoration-none px-0 me-4" disabled #doneClearCompleted (click)="clearCompletedDownloads()"><fa-icon [icon]="faCheckCircle"></fa-icon> Clear completed</button>
|
<button type="button" class="btn btn-link text-decoration-none px-0 me-4" disabled #doneClearCompleted (click)="clearCompletedDownloads()"><fa-icon [icon]="faCheckCircle"></fa-icon> Clear completed</button>
|
||||||
<button type="button" class="btn btn-link text-decoration-none px-0 me-4" disabled #doneClearFailed (click)="clearFailedDownloads()"><fa-icon [icon]="faTimesCircle"></fa-icon> Clear failed</button>
|
<button type="button" class="btn btn-link text-decoration-none px-0 me-4" disabled #doneClearFailed (click)="clearFailedDownloads()"><fa-icon [icon]="faTimesCircle"></fa-icon> Clear failed</button>
|
||||||
|
<button type="button" class="btn btn-link text-decoration-none px-0 me-4" disabled #doneRetryFailed (click)="retryFailedDownloads()"><fa-icon [icon]="faRedoAlt"></fa-icon> Retry failed</button>
|
||||||
</th>
|
</th>
|
||||||
<th scope="col" >File Size</th>
|
<th scope="col" >File Size</th>
|
||||||
<th scope="col" style="width: 2rem;"></th>
|
<th scope="col" style="width: 2rem;"></th>
|
||||||
|
|
|
@ -35,6 +35,8 @@ export class AppComponent implements AfterViewInit {
|
||||||
@ViewChild('doneDelSelected') doneDelSelected: ElementRef;
|
@ViewChild('doneDelSelected') doneDelSelected: ElementRef;
|
||||||
@ViewChild('doneClearCompleted') doneClearCompleted: ElementRef;
|
@ViewChild('doneClearCompleted') doneClearCompleted: ElementRef;
|
||||||
@ViewChild('doneClearFailed') doneClearFailed: ElementRef;
|
@ViewChild('doneClearFailed') doneClearFailed: ElementRef;
|
||||||
|
@ViewChild('doneRetryFailed') doneRetryFailed: ElementRef;
|
||||||
|
|
||||||
|
|
||||||
faTrashAlt = faTrashAlt;
|
faTrashAlt = faTrashAlt;
|
||||||
faCheckCircle = faCheckCircle;
|
faCheckCircle = faCheckCircle;
|
||||||
|
@ -83,6 +85,7 @@ export class AppComponent implements AfterViewInit {
|
||||||
});
|
});
|
||||||
this.doneClearCompleted.nativeElement.disabled = completed === 0;
|
this.doneClearCompleted.nativeElement.disabled = completed === 0;
|
||||||
this.doneClearFailed.nativeElement.disabled = failed === 0;
|
this.doneClearFailed.nativeElement.disabled = failed === 0;
|
||||||
|
this.doneRetryFailed.nativeElement.disabled = failed === 0;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -221,6 +224,14 @@ export class AppComponent implements AfterViewInit {
|
||||||
this.downloads.delByFilter('done', dl => dl.status === 'error').subscribe();
|
this.downloads.delByFilter('done', dl => dl.status === 'error').subscribe();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
retryFailedDownloads() {
|
||||||
|
this.downloads.done.forEach((dl, key) => {
|
||||||
|
if (dl.status === 'error') {
|
||||||
|
this.retryDownload(key, dl);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
buildDownloadLink(download: Download) {
|
buildDownloadLink(download: Download) {
|
||||||
let baseDir = 'download/';
|
let baseDir = 'download/';
|
||||||
if (download.quality == 'audio' || download.filename.endsWith('.mp3')) {
|
if (download.quality == 'audio' || download.filename.endsWith('.mp3')) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue