]>
Commit | Line | Data |
---|---|---|
27e1a06c C |
1 | <div class="margin-content"> |
2 | <div class="title-page title-page-single"> | |
3 | Upload your video | |
4 | </div> | |
897ec54d | 5 | |
27e1a06c | 6 | <div *ngIf="error" class="alert alert-danger">{{ error }}</div> |
897ec54d | 7 | |
baeefe22 | 8 | <div *ngIf="!isUploadingVideo" class="upload-video-container"> |
27e1a06c C |
9 | <div class="upload-video"> |
10 | <div class="icon icon-upload"></div> | |
897ec54d | 11 | |
27e1a06c C |
12 | <div class="button-file"> |
13 | <span>Select the file to upload</span> | |
baeefe22 | 14 | <input #videofileInput type="file" name="videofile" id="videofile" (change)="fileChange()" /> |
897ec54d C |
15 | </div> |
16 | ||
fd45e8f4 | 17 | <div class="form-group"> |
cadb46d8 | 18 | <select [(ngModel)]="firstStepPrivacyId"> |
fd45e8f4 C |
19 | <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option> |
20 | </select> | |
897ec54d C |
21 | </div> |
22 | ||
bcd9f81e | 23 | <div class="form-group"> |
cadb46d8 | 24 | <select [(ngModel)]="firstStepChannelId"> |
bcd9f81e C |
25 | <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option> |
26 | </select> | |
bcd9f81e | 27 | </div> |
27e1a06c | 28 | </div> |
baeefe22 | 29 | </div> |
bcd9f81e | 30 | |
cadb46d8 C |
31 | <p-progressBar |
32 | *ngIf="isUploadingVideo" [value]="videoUploadPercents" | |
33 | [ngClass]="{ processing: videoUploadPercents === 100 && videoUploaded === false }" | |
34 | ></p-progressBar> | |
c182778e | 35 | |
baeefe22 C |
36 | <!-- Hidden because we need to load the component --> |
37 | <form [hidden]="!isUploadingVideo" novalidate [formGroup]="form"> | |
38 | <my-video-edit | |
39 | [form]="form" [formErrors]="formErrors" | |
40 | [validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies" | |
41 | ></my-video-edit> | |
42 | ||
cadb46d8 | 43 | |
baeefe22 | 44 | <div class="submit-container"> |
cadb46d8 C |
45 | <div *ngIf="videoUploaded === false" class="message-submit">Publish will be available when upload is finished</div> |
46 | ||
47 | <div class="submit-button" (click)="updateSecondStep()" [ngClass]="{ disabled: !form.valid || videoUploaded !== true }"> | |
baeefe22 | 48 | <span class="icon icon-validate"></span> |
cadb46d8 | 49 | <input type="button" value="Publish" /> |
897ec54d | 50 | </div> |
baeefe22 C |
51 | </div> |
52 | </form> | |
897ec54d | 53 | </div> |