]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-add.component.html
Add ability to click on the account in watch page
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.component.html
1 <div class="margin-content">
2 <div class="title-page title-page-single">
3 <ng-template [ngIf]="!videoFileName">Upload your video</ng-template>
4 <ng-template [ngIf]="videoFileName">Upload {{ videoFileName }}</ng-template>
5 </div>
6
7 <div *ngIf="!isUploadingVideo" class="upload-video-container">
8 <div class="upload-video">
9 <div class="icon icon-upload"></div>
10
11 <div class="button-file">
12 <span>Select the file to upload</span>
13 <input #videofileInput type="file" name="videofile" id="videofile" [accept]="videoExtensions" (change)="fileChange()" />
14 </div>
15
16 <div class="form-group form-group-channel">
17 <label for="first-step-channel">Channel</label>
18 <div class="peertube-select-container">
19 <select id="first-step-channel" [(ngModel)]="firstStepChannelId">
20 <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
21 </select>
22 </div>
23 </div>
24
25 <div class="form-group">
26 <label for="first-step-privacy">Privacy</label>
27 <div class="peertube-select-container">
28 <select id="first-step-privacy" [(ngModel)]="firstStepPrivacyId">
29 <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
30 </select>
31 </div>
32 </div>
33 </div>
34 </div>
35
36 <div *ngIf="isUploadingVideo" class="upload-progress-cancel">
37 <p-progressBar
38 [value]="videoUploadPercents"
39 [ngClass]="{ processing: videoUploadPercents === 100 && videoUploaded === false }"
40 ></p-progressBar>
41 <input *ngIf="videoUploaded === false" type="button" value="Cancel" (click)="cancelUpload()" />
42 </div>
43
44 <!-- Hidden because we want to load the component -->
45 <form [hidden]="!isUploadingVideo" novalidate [formGroup]="form">
46 <my-video-edit
47 [form]="form" [formErrors]="formErrors"
48 [validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies" [userVideoChannels]="userVideoChannels"
49 ></my-video-edit>
50
51 <div class="submit-container">
52 <div *ngIf="videoUploaded === false" class="message-submit">Publish will be available when upload is finished</div>
53
54 <div class="submit-button"
55 (click)="updateSecondStep()"
56 [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true || videoUploaded !== true }"
57 >
58 <span class="icon icon-validate"></span>
59 <input type="button" value="Publish" />
60 </div>
61 </div>
62 </form>
63 </div>