mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-16 01:30:56 +03:00
43 lines
2.0 KiB
HTML
43 lines
2.0 KiB
HTML
<h4 mat-dialog-title>Subscribe to playlist or channel</h4>
|
|
|
|
<mat-dialog-content>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<mat-form-field color="accent">
|
|
<input [(ngModel)]="url" matInput placeholder="URL" required aria-required="true">
|
|
<mat-hint>The playlist or channel URL</mat-hint>
|
|
</mat-form-field>
|
|
</div>
|
|
<div class="col-12">
|
|
<mat-form-field color="accent">
|
|
<input [(ngModel)]="name" matInput placeholder="Custom name">
|
|
<mat-hint>This is optional</mat-hint>
|
|
</mat-form-field>
|
|
</div>
|
|
<div class="col-12 mt-3">
|
|
<mat-checkbox [(ngModel)]="download_all">Download all uploads</mat-checkbox>
|
|
</div>
|
|
<div class="col-12" *ngIf="!download_all">
|
|
Download videos uploaded in the last
|
|
<mat-form-field color="accent" style="width: 50px; text-align: center">
|
|
<input type="number" matInput [(ngModel)]="timerange_amount">
|
|
</mat-form-field>
|
|
<mat-select color="accent" class="unit-select" [(ngModel)]="timerange_unit">
|
|
<mat-option *ngFor="let time_unit of time_units" [value]="time_unit + (timerange_amount === 1 ? '' : 's')">
|
|
{{time_unit + (timerange_amount === 1 ? '' : 's')}}
|
|
</mat-option>
|
|
</mat-select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</mat-dialog-content>
|
|
|
|
<mat-dialog-actions>
|
|
<button mat-button mat-dialog-close>Cancel</button>
|
|
<!-- The mat-dialog-close directive optionally accepts a value as a result for the dialog. -->
|
|
<button mat-button [disabled]="!url" type="submit" (click)="subscribeClicked()">Subscribe</button>
|
|
<div class="mat-spinner" *ngIf="subscribing">
|
|
<mat-spinner [diameter]="25"></mat-spinner>
|
|
</div>
|
|
</mat-dialog-actions> |