aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add.component.html
blob: 193cc55eed02b8132daf49f37905faf76adc299a (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
<div class="margin-content">
  <div class="title-page title-page-single">
    Upload your video
  </div>

  <div *ngIf="error" class="alert alert-danger">{{ error }}</div>

  <div *ngIf="!isUploadingVideo" class="upload-video-container">
    <div class="upload-video">
      <div class="icon icon-upload"></div>

      <div class="button-file">
        <span>Select the file to upload</span>
        <input #videofileInput type="file" name="videofile" id="videofile" [accept]="videoExtensions" (change)="fileChange()" />
      </div>

      <div class="form-group form-group-channel">
        <label for="first-step-channel">Channel</label>
        <div class="peertube-select-container">
          <select id="first-step-channel" [(ngModel)]="firstStepChannelId">
            <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
          </select>
        </div>
      </div>

      <div class="form-group">
        <label for="first-step-privacy">Privacy</label>
        <div class="peertube-select-container">
          <select id="first-step-privacy" [(ngModel)]="firstStepPrivacyId">
            <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
          </select>
        </div>
      </div>
    </div>
  </div>

  <p-progressBar
      *ngIf="isUploadingVideo" [value]="videoUploadPercents"
      [ngClass]="{ processing: videoUploadPercents === 100 && videoUploaded === false }"
  ></p-progressBar>

  <!-- Hidden because we need to load the component -->
  <form [hidden]="!isUploadingVideo" novalidate [formGroup]="form">
    <my-video-edit
      [form]="form" [formErrors]="formErrors"
      [validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies" [userVideoChannels]="userVideoChannels"
    ></my-video-edit>


    <div class="submit-container">
      <div *ngIf="videoUploaded === false" class="message-submit">Publish will be available when upload is finished</div>

      <div class="submit-button" (click)="updateSecondStep()" [ngClass]="{ disabled: !form.valid || videoUploaded !== true }">
        <span class="icon icon-validate"></span>
        <input type="button" value="Publish" />
      </div>
    </div>
  </form>
</div>