aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/modals/video-download.component.html
blob: ab6f4449dc50a4f0d311a85da2aae0c85add85cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<ng-template #modal let-hide="close">
  <div class="modal-header">
    <h4 class="modal-title">
      <ng-container i18n>Download</ng-container>

      <div *ngIf="videoCaptions" ngbDropdown class="d-inline-block">
        <span id="dropdownDownloadType" ngbDropdownToggle>
          {{ type }}
        </span>
        <div ngbDropdownMenu aria-labelledby="dropdownDownloadType">
          <button *ngIf="type === 'video'" (click)="switchToType('subtitles')" ngbDropdownItem i18n>subtitles</button>
          <button *ngIf="type === 'subtitles'" (click)="switchToType('video')" ngbDropdownItem i18n>video</button>
        </div>
      </div>
    </h4>
    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
  </div>

  <div class="modal-body">
    <div class="form-group">
      <div class="input-group input-group-sm">
        <div class="input-group-prepend peertube-select-container">
          <select *ngIf="type === 'video'" [(ngModel)]="resolutionId" (ngModelChange)="onResolutionIdChange()">
            <option *ngFor="let file of getVideoFiles()" [value]="file.resolution.id">{{ file.resolution.label }}</option>
          </select>

          <select *ngIf="type === 'subtitles'" [(ngModel)]="subtitleLanguageId">
            <option *ngFor="let caption of videoCaptions" [value]="caption.language.id">{{ caption.language.label }}</option>
          </select>
        </div>

        <input #urlInput (click)="urlInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getLink()" />
        <div class="input-group-append">
          <button [cdkCopyToClipboard]="urlInput.value" (click)="activateCopiedMessage()" type="button" class="btn btn-outline-secondary">
            <span class="glyphicon glyphicon-copy"></span>
          </button>
        </div>
      </div>
    </div>

    <ng-container *ngIf="type === 'video' && videoFile?.metadata">
      <div ngbNav #nav="ngbNav" class="nav-tabs">

        <ng-container ngbNavItem>
          <a ngbNavLink i18n>Format</a>
          <ng-template ngbNavContent>
            <div class="file-metadata">
              <div class="metadata-attribute metadata-attribute-tags" *ngFor="let item of videoFileMetadataFormat | keyvalue">
                <span i18n class="metadata-attribute-label">{{ item.value.label }}</span>
                <span class="metadata-attribute-value">{{ item.value.value }}</span>
              </div>
            </div>
          </ng-template>
        </ng-container>

        <ng-container ngbNavItem [disabled]="videoFileMetadataVideoStream === undefined">
          <a ngbNavLink i18n>Video stream</a>
          <ng-template ngbNavContent>
            <div class="file-metadata">
              <div class="metadata-attribute metadata-attribute-tags" *ngFor="let item of videoFileMetadataVideoStream | keyvalue">
                <span i18n class="metadata-attribute-label">{{ item.value.label }}</span>
                <span class="metadata-attribute-value">{{ item.value.value }}</span>
              </div>
            </div>
          </ng-template>
        </ng-container>

        <ng-container ngbNavItem [disabled]="videoFileMetadataAudioStream === undefined">
          <a ngbNavLink i18n>Audio stream</a>
          <ng-template ngbNavContent>
            <div class="file-metadata">
              <div class="metadata-attribute metadata-attribute-tags" *ngFor="let item of videoFileMetadataAudioStream | keyvalue">
                <span i18n class="metadata-attribute-label">{{ item.value.label }}</span>
                <span class="metadata-attribute-value">{{ item.value.value }}</span>
              </div>
            </div>
          </ng-template>
        </ng-container>
      </div>

      <div [ngbNavOutlet]="nav"></div>
    </ng-container>

    <div class="download-type" *ngIf="type === 'video'">
      <div class="peertube-radio-container">
        <input type="radio" name="download" id="download-direct" [(ngModel)]="downloadType" value="direct">
        <label i18n for="download-direct">Direct download</label>
      </div>

      <div class="peertube-radio-container">
        <input type="radio" name="download" id="download-torrent" [(ngModel)]="downloadType" value="torrent">
        <label i18n for="download-torrent">Torrent (.torrent file)</label>
      </div>
    </div>
  </div>

  <div class="modal-footer inputs">
    <span i18n class="action-button action-button-cancel" (click)="hide()">
      Cancel
    </span>

    <input
      type="submit" i18n-value value="Download" class="action-button-submit"
      (click)="download()"
    >
  </div>
</ng-template>