aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-miniature/video-download.component.html
blob: a3676e159e1a047064717967734d1ec9dc7c68ba (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<ng-template #modal let-hide="close">
  <div class="modal-header">
    <h4 class="modal-title">
      <ng-container i18n>Download</ng-container>

      <div class="peertube-select-container title-select" *ngIf="hasCaptions()">
        <select id="type" name="type" [(ngModel)]="type" class="form-control">
          <option value="video" i18n>Video</option>
          <option value="subtitles" i18n>Subtitles</option>
        </select>
      </div>
    </h4>

    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
  </div>

  <div class="modal-body">
    <div class="alert alert-warning" *ngIf="isConfidentialVideo()" i18n>
      The following link contains a private token and should not be shared with anyone.
    </div>

    <!-- Subtitle tab -->
    <ng-container *ngIf="type === 'subtitles'">
      <div ngbNav #subtitleNav="ngbNav" class="nav-tabs" [activeId]="subtitleLanguageId" (activeIdChange)="onSubtitleIdChange($event)">

        <ng-container *ngFor="let caption of getCaptions()" [ngbNavItem]="caption.language.id">
          <a ngbNavLink i18n>{{ caption.language.label }}</a>

          <ng-template ngbNavContent>
            <div class="nav-content">
              <my-input-text
                *ngIf="!isConfidentialVideo()"
                [show]="true" [readonly]="true" [withCopy]="true" [withToggle]="false" [value]="getLink()"
              ></my-input-text>
            </div>
          </ng-template>
        </ng-container>
      </div>

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

    <!-- Video tab -->
    <ng-container *ngIf="type === 'video'">
      <div ngbNav #resolutionNav="ngbNav" class="nav-tabs" [activeId]="resolutionId" (activeIdChange)="onResolutionIdChange($event)">
        <ng-container *ngFor="let file of getVideoFiles()" [ngbNavItem]="file.resolution.id">
          <a ngbNavLink i18n>{{ file.resolution.label }}</a>

          <ng-template ngbNavContent>
            <div class="nav-content">
              <my-input-text [show]="true" [readonly]="true" [withCopy]="true" [withToggle]="false" [value]="getLink()"></my-input-text>
            </div>
          </ng-template>
        </ng-container>
      </div>

      <div [ngbNavOutlet]="resolutionNav"></div>

      <div class="advanced-filters" [ngbCollapse]="isAdvancedCustomizationCollapsed" [animation]="true">
        <div ngbNav #navMetadata="ngbNav" class="nav-tabs nav-metadata">
          <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 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>

          </ng-container>
        </div>

        <div *ngIf="getFileMetadata()" [ngbNavOutlet]="navMetadata"></div>

        <div class="download-type">
          <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>

      <button
        (click)="isAdvancedCustomizationCollapsed = !isAdvancedCustomizationCollapsed"
        class="advanced-filters-button button-unstyle"
        [attr.aria-expanded]="!isAdvancedCustomizationCollapsed" aria-controls="collapseBasic"
      >
        <ng-container *ngIf="isAdvancedCustomizationCollapsed">
          <span class="chevron-down"></span>

          <ng-container i18n>
            Advanced
          </ng-container>
        </ng-container>

        <ng-container *ngIf="!isAdvancedCustomizationCollapsed">
          <span class="chevron-up"></span>

          <ng-container i18n>
            Simple
          </ng-container>
        </ng-container>
      </button>
    </ng-container>
  </div>

  <div class="modal-footer inputs">
    <input
      type="button" role="button" i18n-value value="Cancel" class="peertube-button grey-button"
      (click)="hide()" (key.enter)="hide()"
    >

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