]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/shared/video-edit.component.html
Fix help transcoding placement
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.component.html
CommitLineData
63347a0f
C
1<div class="video-edit" [formGroup]="form">
2 <ngb-tabset class="root-tabset bootstrap">
3
4 <ngb-tab i18n-title title="Basic info">
5 <ng-template ngbTabContent>
6 <div class="row">
7 <div class="col-md-8">
8 <div class="form-group">
9 <label i18n for="name">Title</label>
10 <input type="text" id="name" formControlName="name" />
11 <div *ngIf="formErrors.name" class="form-error">
12 {{ formErrors.name }}
13 </div>
14 </div>
15
16 <div class="form-group">
b0c36821
J
17 <label i18n class="label-tags">Tags</label>
18 <my-help i18n-preHtml preHtml="Tags could be used to suggest relevant recommendations.</br>Press Enter to add a new tag."></my-help>
63347a0f
C
19 <tag-input
20 [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
baf0a8c9 21 i18n-placeholder placeholder="+ Tag" i18n-secondaryPlaceholder secondaryPlaceholder="Enter a new tag"
63347a0f
C
22 formControlName="tags" maxItems="5" modelAsStrings="true"
23 ></tag-input>
24 </div>
25
26 <div class="form-group">
27 <label i18n for="description">Description</label>
28 <my-help helpType="markdownText" i18n-preHtml preHtml="Video descriptions are truncated by default and require manual action to expand them."></my-help>
29 <my-markdown-textarea truncate="250" formControlName="description"></my-markdown-textarea>
30
31 <div *ngIf="formErrors.description" class="form-error">
32 {{ formErrors.description }}
33 </div>
34 </div>
6de36768 35 </div>
6de36768 36
63347a0f
C
37 <div class="col-md-4">
38 <div class="form-group">
39 <label i18n>Channel</label>
40 <div class="peertube-select-container">
41 <select formControlName="channelId">
42 <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
43 </select>
44 </div>
45 </div>
46
47 <div class="form-group">
48 <label i18n for="category">Category</label>
49 <div class="peertube-select-container">
50 <select id="category" formControlName="category">
51 <option></option>
52 <option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
53 </select>
54 </div>
55
56 <div *ngIf="formErrors.category" class="form-error">
57 {{ formErrors.category }}
58 </div>
59 </div>
60
61 <div class="form-group">
62 <label i18n for="licence">Licence</label>
63 <div class="peertube-select-container">
64 <select id="licence" formControlName="licence">
65 <option></option>
66 <option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
67 </select>
68 </div>
69
70 <div *ngIf="formErrors.licence" class="form-error">
71 {{ formErrors.licence }}
72 </div>
73 </div>
74
75 <div class="form-group">
76 <label i18n for="language">Language</label>
77 <div class="peertube-select-container">
78 <select id="language" formControlName="language">
79 <option></option>
80 <option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
81 </select>
82 </div>
83
84 <div *ngIf="formErrors.language" class="form-error">
85 {{ formErrors.language }}
86 </div>
87 </div>
88
89 <div class="form-group">
90 <label i18n for="privacy">Privacy</label>
91 <div class="peertube-select-container">
92 <select id="privacy" formControlName="privacy">
93 <option></option>
94 <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
95 <option *ngIf="schedulePublicationPossible" [value]="SPECIAL_SCHEDULED_PRIVACY">Scheduled</option>
96 </select>
97 </div>
98
99 <div *ngIf="formErrors.privacy" class="form-error">
100 {{ formErrors.privacy }}
101 </div>
102 </div>
103
104 <div *ngIf="schedulePublicationEnabled" class="form-group">
105 <label i18n for="schedulePublicationAt">Schedule publication ({{ calendarTimezone }})</label>
106 <p-calendar
107 id="schedulePublicationAt" formControlName="schedulePublicationAt" [dateFormat]="calendarDateFormat"
108 [locale]="calendarLocale" [minDate]="minScheduledDate" [showTime]="true" [hideOnDateTimeSelect]="true"
109 >
110 </p-calendar>
111
112 <div *ngIf="formErrors.schedulePublicationAt" class="form-error">
113 {{ formErrors.schedulePublicationAt }}
114 </div>
115 </div>
116
117 <my-peertube-checkbox
118 inputName="nsfw" formControlName="nsfw"
119 i18n-labelText labelText="This video contains mature or explicit content"
120 i18n-helpHtml helpHtml="Some instances do not list videos containing mature or explicit content by default."
8e8eb261 121 helpPlacement="bottom-right"
63347a0f
C
122 ></my-peertube-checkbox>
123
63347a0f 124 <my-peertube-checkbox
14e2014a 125 *ngIf="waitTranscodingEnabled"
63347a0f
C
126 inputName="waitTranscoding" formControlName="waitTranscoding"
127 i18n-labelText labelText="Wait transcoding before publishing the video"
128 i18n-helpHtml helpHtml="If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends."
8e8eb261 129 helpPlacement="bottom-right"
63347a0f 130 ></my-peertube-checkbox>
6de36768 131
6de36768
C
132 </div>
133 </div>
63347a0f
C
134 </ng-template>
135 </ngb-tab>
136
137 <ngb-tab i18n-title title="Captions">
138 <ng-template ngbTabContent>
139 <div class="captions">
140
141 <div class="captions-header">
142 <a (click)="openAddCaptionModal()" class="create-caption">
457bb213 143 <my-global-icon iconName="add"></my-global-icon>
63347a0f
C
144 <ng-container i18n>Add another caption</ng-container>
145 </a>
6de36768 146 </div>
6de36768 147
63347a0f 148 <div class="form-group" *ngFor="let videoCaption of videoCaptions">
6de36768 149
63347a0f
C
150 <div class="caption-entry">
151 <ng-container *ngIf="!videoCaption.action">
152 <a
153 i18n-title title="See the subtitle file" class="caption-entry-label" target="_blank" rel="noopener noreferrer"
154 [href]="videoCaption.captionPath"
155 >{{ videoCaption.language.label }}</a>
6de36768 156
cc3d1dce 157 <div i18n class="caption-entry-state">Already uploaded &#10004;</div>
6de36768 158
63347a0f
C
159 <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Delete</span>
160 </ng-container>
6de36768 161
63347a0f
C
162 <ng-container *ngIf="videoCaption.action === 'CREATE'">
163 <span class="caption-entry-label">{{ videoCaption.language.label }}</span>
6de36768 164
cc3d1dce 165 <div i18n class="caption-entry-state caption-entry-state-create">Will be created on update</div>
6de36768 166
63347a0f
C
167 <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel create</span>
168 </ng-container>
6de36768 169
63347a0f
C
170 <ng-container *ngIf="videoCaption.action === 'REMOVE'">
171 <span class="caption-entry-label">{{ videoCaption.language.label }}</span>
6de36768 172
cc3d1dce 173 <div i18n class="caption-entry-state caption-entry-state-delete">Will be deleted on update</div>
bbe0f064 174
63347a0f
C
175 <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel deletion</span>
176 </ng-container>
177 </div>
bbe0f064 178 </div>
bbe0f064 179
cc3d1dce 180 <div i18n class="no-caption" *ngIf="videoCaptions?.length === 0">
63347a0f 181 No captions for now.
40e87e9e 182 </div>
40e87e9e 183
6de36768 184 </div>
63347a0f
C
185 </ng-template>
186 </ngb-tab>
187
188 <ngb-tab i18n-title title="Advanced settings">
189 <ng-template ngbTabContent>
6913f691
C
190 <div class="row advanced-settings">
191 <div class="col-md-12 col-xl-8">
6de36768 192
6913f691 193 <div class="form-group">
7b992a86
C
194 <label i18n for="previewfile">Video preview</label>
195
196 <my-preview-upload
197 i18n-inputLabel inputLabel="Edit" inputName="previewfile" formControlName="previewfile"
6913f691 198 previewWidth="360px" previewHeight="200px"
7b992a86 199 ></my-preview-upload>
6913f691 200 </div>
07fa4c97 201
6913f691
C
202 <div class="form-group">
203 <label i18n for="support">Support</label>
204 <my-help helpType="markdownEnhanced" i18n-preHtml preHtml="Short text to tell people how they can support you (membership platform...)."></my-help>
205 <my-markdown-textarea
206 id="support" formControlName="support" textareaWidth="500px" [previewColumn]="true" markdownType="enhanced"
207 [classes]="{ 'input-error': formErrors['support'] }"
208 ></my-markdown-textarea>
209 <div *ngIf="formErrors.support" class="form-error">
210 {{ formErrors.support }}
211 </div>
63347a0f 212 </div>
07fa4c97 213 </div>
501e9611 214
6913f691
C
215 <div class="col-md-12 col-xl-4">
216 <div class="form-group originally-published-at">
217 <label i18n for="originallyPublishedAt">Original publication date</label>
218 <my-help i18n-preHtml preHtml="This is the date when the content was originally published (e.g. the release date for a film)"></my-help>
219 <p-calendar
220 id="originallyPublishedAt" formControlName="originallyPublishedAt" [dateFormat]="calendarDateFormat"
221 [locale]="calendarLocale" [showTime]="true" [hideOnDateTimeSelect]="true" [monthNavigator]="true" [yearNavigator]="true" [yearRange]="myYearRange"
222 >
223 </p-calendar>
224
225 <div *ngIf="formErrors.originallyPublishedAt" class="form-error">
226 {{ formErrors.originallyPublishedAt }}
227 </div>
228 </div>
229
230 <my-peertube-checkbox
231 inputName="commentsEnabled" formControlName="commentsEnabled"
232 i18n-labelText labelText="Enable video comments"
233 ></my-peertube-checkbox>
501e9611 234
6913f691
C
235 <my-peertube-checkbox
236 inputName="downloadEnabled" formControlName="downloadEnabled"
237 i18n-labelText labelText="Enable download"
238 ></my-peertube-checkbox>
239 </div>
07fa4c97 240 </div>
63347a0f
C
241 </ng-template>
242 </ngb-tab>
ff249f49 243
63347a0f 244 </ngb-tabset>
47564bbe 245
ff249f49 246</div>
40e87e9e
C
247
248<my-video-caption-add-modal
f4001cf4 249 #videoCaptionAddModal [existingCaptions]="existingCaptions" (captionAdded)="onCaptionAdded($event)"
b0c36821 250></my-video-caption-add-modal>