1
0
Fork 0
peertube/client/src/app/videos/+video-edit/shared/video-edit.component.html

158 lines
6.2 KiB
HTML
Raw Normal View History

2017-12-07 08:48:47 -05:00
<div class="video-edit row" [formGroup]="form">
<tabset class="root-tabset bootstrap">
2018-06-05 10:31:52 -04:00
<tab i18n-heading heading="Basic info">
<div class="col-md-8">
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n for="name">Title</label>
<input type="text" id="name" formControlName="name" />
<div *ngIf="formErrors.name" class="form-error">
{{ formErrors.name }}
</div>
</div>
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n class="label-tags">Tags</label> <span i18n>(press Enter to add)</span>
<tag-input
[validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
formControlName="tags" maxItems="5" modelAsStrings="true"
></tag-input>
</div>
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n for="description">Description</label>
<my-help helpType="markdownText" i18n-preHtml preHtml="Video descriptions are truncated by default and require manual action to expand them."></my-help>
<my-markdown-textarea truncate="250" formControlName="description"></my-markdown-textarea>
<div *ngIf="formErrors.description" class="form-error">
{{ formErrors.description }}
</div>
</div>
2017-12-20 08:29:55 -05:00
</div>
2017-12-07 05:15:19 -05:00
<div class="col-md-4">
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n>Channel</label>
2018-05-11 09:10:13 -04:00
<div class="peertube-select-container">
<select formControlName="channelId">
<option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
</select>
</div>
</div>
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n for="category">Category</label>
<div class="peertube-select-container">
<select id="category" formControlName="category">
<option></option>
<option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
</select>
</div>
<div *ngIf="formErrors.category" class="form-error">
{{ formErrors.category }}
</div>
</div>
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n for="licence">Licence</label>
<div class="peertube-select-container">
<select id="licence" formControlName="licence">
<option></option>
<option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
</select>
</div>
<div *ngIf="formErrors.licence" class="form-error">
{{ formErrors.licence }}
</div>
</div>
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n for="language">Language</label>
<div class="peertube-select-container">
<select id="language" formControlName="language">
<option></option>
<option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
</select>
</div>
<div *ngIf="formErrors.language" class="form-error">
{{ formErrors.language }}
</div>
</div>
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n for="privacy">Privacy</label>
<div class="peertube-select-container">
<select id="privacy" formControlName="privacy">
<option></option>
<option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
</select>
</div>
<div *ngIf="formErrors.privacy" class="form-error">
{{ formErrors.privacy }}
</div>
</div>
<div class="form-group form-group-checkbox">
<input type="checkbox" id="nsfw" formControlName="nsfw" />
<label for="nsfw"></label>
2018-06-04 10:21:17 -04:00
<label i18n for="nsfw">This video contains mature or explicit content</label>
<my-help tooltipPlacement="top" helpType="custom" i18n-customHtml customHtml="Some instances do not list NSFW videos by default."></my-help>
</div>
<div class="form-group form-group-checkbox">
<input type="checkbox" id="commentsEnabled" formControlName="commentsEnabled" />
<label for="commentsEnabled"></label>
2018-06-04 10:21:17 -04:00
<label i18n for="commentsEnabled">Enable video comments</label>
</div>
2017-12-07 05:15:19 -05:00
<div class="form-group form-group-checkbox">
<input type="checkbox" id="waitTranscoding" formControlName="waitTranscoding" />
<label for="waitTranscoding"></label>
<label i18n for="waitTranscoding">Wait transcoding before publishing the video</label>
<my-help
tooltipPlacement="top" helpType="custom" i18n-customHtml
customHtml="If you decide to not wait transcoding before publishing the video, it can be unplayable until it transcoding ends."
></my-help>
</div>
2017-12-07 08:48:47 -05:00
</div>
</tab>
2018-06-05 10:31:52 -04:00
<tab i18n-heading heading="Advanced settings">
2018-02-20 10:13:05 -05:00
<div class="col-md-12 advanced-settings">
<div class="form-group">
<my-video-image
2018-06-04 10:21:17 -04:00
i18n-inputLabel inputLabel="Upload thumbnail" inputName="thumbnailfile" formControlName="thumbnailfile"
previewWidth="200px" previewHeight="110px"
></my-video-image>
</div>
<div class="form-group">
<my-video-image
2018-06-04 10:21:17 -04:00
i18n-inputLabel inputLabel="Upload preview" inputName="previewfile" formControlName="previewfile"
previewWidth="360px" previewHeight="200px"
></my-video-image>
</div>
2018-02-20 10:13:05 -05:00
<div class="form-group">
2018-06-04 10:21:17 -04:00
<label i18n for="support">Support</label>
<my-help helpType="markdownEnhanced" i18n-preHtml preHtml="Short text to tell people how they can support you (membership platform...)."></my-help>
2018-02-20 10:13:05 -05:00
<my-markdown-textarea
2018-06-04 10:21:17 -04:00
id="support" formControlName="support" textareaWidth="500px" [previewColumn]="true" markdownType="enhanced"
[classes]="{ 'input-error': formErrors['support'] }"
2018-02-20 10:13:05 -05:00
></my-markdown-textarea>
<div *ngIf="formErrors.support" class="form-error">
{{ formErrors.support }}
</div>
</div>
2017-12-20 08:29:55 -05:00
</div>
</tab>
2017-12-07 05:15:19 -05:00
</tabset>
2018-01-03 04:12:36 -05:00
2017-12-07 05:15:19 -05:00
</div>