2018-08-09 08:55:06 -04:00
|
|
|
<div class="video-edit" [formGroup]="form">
|
|
|
|
<ngb-tabset class="root-tabset bootstrap">
|
|
|
|
|
|
|
|
<ngb-tab i18n-title title="Basic info">
|
|
|
|
<ng-template ngbTabContent>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8">
|
|
|
|
<div class="form-group">
|
|
|
|
<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-09-04 05:01:54 -04:00
|
|
|
<label i18n class="label-tags">Tags</label>
|
|
|
|
<my-help i18n-preHtml preHtml="Tags could be used to suggest relevant recommendations.</br>Press Enter to add a new tag."></my-help>
|
2018-08-09 08:55:06 -04:00
|
|
|
<tag-input
|
|
|
|
[validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
|
2018-09-28 09:13:01 -04:00
|
|
|
i18n-placeholder placeholder="+ Tag" i18n-secondaryPlaceholder secondaryPlaceholder="Enter a new tag"
|
2018-08-09 08:55:06 -04:00
|
|
|
formControlName="tags" maxItems="5" modelAsStrings="true"
|
|
|
|
></tag-input>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<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>
|
2018-02-16 10:35:32 -05:00
|
|
|
</div>
|
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
<div class="col-md-4">
|
|
|
|
<div class="form-group">
|
|
|
|
<label i18n>Channel</label>
|
|
|
|
<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">
|
|
|
|
<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">
|
|
|
|
<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">
|
|
|
|
<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">
|
|
|
|
<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>
|
|
|
|
<option *ngIf="schedulePublicationPossible" [value]="SPECIAL_SCHEDULED_PRIVACY">Scheduled</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div *ngIf="formErrors.privacy" class="form-error">
|
|
|
|
{{ formErrors.privacy }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div *ngIf="schedulePublicationEnabled" class="form-group">
|
|
|
|
<label i18n for="schedulePublicationAt">Schedule publication ({{ calendarTimezone }})</label>
|
|
|
|
<p-calendar
|
|
|
|
id="schedulePublicationAt" formControlName="schedulePublicationAt" [dateFormat]="calendarDateFormat"
|
|
|
|
[locale]="calendarLocale" [minDate]="minScheduledDate" [showTime]="true" [hideOnDateTimeSelect]="true"
|
|
|
|
>
|
|
|
|
</p-calendar>
|
|
|
|
|
|
|
|
<div *ngIf="formErrors.schedulePublicationAt" class="form-error">
|
|
|
|
{{ formErrors.schedulePublicationAt }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<my-peertube-checkbox
|
|
|
|
inputName="nsfw" formControlName="nsfw"
|
|
|
|
i18n-labelText labelText="This video contains mature or explicit content"
|
|
|
|
i18n-helpHtml helpHtml="Some instances do not list videos containing mature or explicit content by default."
|
|
|
|
></my-peertube-checkbox>
|
|
|
|
|
|
|
|
<my-peertube-checkbox
|
2018-12-11 08:52:50 -05:00
|
|
|
*ngIf="waitTranscodingEnabled"
|
2018-08-09 08:55:06 -04:00
|
|
|
inputName="waitTranscoding" formControlName="waitTranscoding"
|
|
|
|
i18n-labelText labelText="Wait transcoding before publishing the video"
|
|
|
|
i18n-helpHtml helpHtml="If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends."
|
|
|
|
></my-peertube-checkbox>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-09 08:55:06 -04:00
|
|
|
</ng-template>
|
|
|
|
</ngb-tab>
|
|
|
|
|
|
|
|
<ngb-tab i18n-title title="Captions">
|
|
|
|
<ng-template ngbTabContent>
|
|
|
|
<div class="captions">
|
|
|
|
|
|
|
|
<div class="captions-header">
|
|
|
|
<a (click)="openAddCaptionModal()" class="create-caption">
|
2019-01-16 10:05:40 -05:00
|
|
|
<my-global-icon iconName="add"></my-global-icon>
|
2018-08-09 08:55:06 -04:00
|
|
|
<ng-container i18n>Add another caption</ng-container>
|
|
|
|
</a>
|
2018-02-16 10:35:32 -05:00
|
|
|
</div>
|
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
<div class="form-group" *ngFor="let videoCaption of videoCaptions">
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
<div class="caption-entry">
|
|
|
|
<ng-container *ngIf="!videoCaption.action">
|
|
|
|
<a
|
|
|
|
i18n-title title="See the subtitle file" class="caption-entry-label" target="_blank" rel="noopener noreferrer"
|
|
|
|
[href]="videoCaption.captionPath"
|
|
|
|
>{{ videoCaption.language.label }}</a>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2018-09-21 10:48:42 -04:00
|
|
|
<div i18n class="caption-entry-state">Already uploaded ✔</div>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
<span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Delete</span>
|
|
|
|
</ng-container>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
<ng-container *ngIf="videoCaption.action === 'CREATE'">
|
|
|
|
<span class="caption-entry-label">{{ videoCaption.language.label }}</span>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2018-09-21 10:48:42 -04:00
|
|
|
<div i18n class="caption-entry-state caption-entry-state-create">Will be created on update</div>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
<span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel create</span>
|
|
|
|
</ng-container>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
<ng-container *ngIf="videoCaption.action === 'REMOVE'">
|
|
|
|
<span class="caption-entry-label">{{ videoCaption.language.label }}</span>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2018-09-21 10:48:42 -04:00
|
|
|
<div i18n class="caption-entry-state caption-entry-state-delete">Will be deleted on update</div>
|
2018-06-15 10:52:15 -04:00
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
<span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel deletion</span>
|
|
|
|
</ng-container>
|
|
|
|
</div>
|
2018-06-15 10:52:15 -04:00
|
|
|
</div>
|
|
|
|
|
2018-09-21 10:48:42 -04:00
|
|
|
<div i18n class="no-caption" *ngIf="videoCaptions?.length === 0">
|
2018-08-09 08:55:06 -04:00
|
|
|
No captions for now.
|
2018-07-12 13:02:00 -04:00
|
|
|
</div>
|
|
|
|
|
2018-02-16 10:35:32 -05:00
|
|
|
</div>
|
2018-08-09 08:55:06 -04:00
|
|
|
</ng-template>
|
|
|
|
</ngb-tab>
|
|
|
|
|
|
|
|
<ngb-tab i18n-title title="Advanced settings">
|
|
|
|
<ng-template ngbTabContent>
|
2019-02-11 08:33:47 -05:00
|
|
|
<div class="row advanced-settings">
|
|
|
|
<div class="col-md-12 col-xl-8">
|
|
|
|
<div class="form-group">
|
2019-03-06 09:36:44 -05:00
|
|
|
<my-image-upload
|
2019-02-11 08:33:47 -05:00
|
|
|
i18n-inputLabel inputLabel="Upload thumbnail" inputName="thumbnailfile" formControlName="thumbnailfile"
|
|
|
|
previewWidth="200px" previewHeight="110px"
|
2019-03-06 09:36:44 -05:00
|
|
|
></my-image-upload>
|
2019-02-11 08:33:47 -05:00
|
|
|
</div>
|
2018-02-16 10:35:32 -05:00
|
|
|
|
2019-02-11 08:33:47 -05:00
|
|
|
<div class="form-group">
|
2019-03-06 09:36:44 -05:00
|
|
|
<my-image-upload
|
2019-02-11 08:33:47 -05:00
|
|
|
i18n-inputLabel inputLabel="Upload preview" inputName="previewfile" formControlName="previewfile"
|
|
|
|
previewWidth="360px" previewHeight="200px"
|
2019-03-06 09:36:44 -05:00
|
|
|
></my-image-upload>
|
2019-02-11 08:33:47 -05:00
|
|
|
</div>
|
2018-02-20 10:13:05 -05:00
|
|
|
|
2019-02-11 08:33:47 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<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>
|
|
|
|
<my-markdown-textarea
|
|
|
|
id="support" formControlName="support" textareaWidth="500px" [previewColumn]="true" markdownType="enhanced"
|
|
|
|
[classes]="{ 'input-error': formErrors['support'] }"
|
|
|
|
></my-markdown-textarea>
|
|
|
|
<div *ngIf="formErrors.support" class="form-error">
|
|
|
|
{{ formErrors.support }}
|
|
|
|
</div>
|
2018-08-09 08:55:06 -04:00
|
|
|
</div>
|
2018-02-20 10:13:05 -05:00
|
|
|
</div>
|
2019-02-11 06:00:19 -05:00
|
|
|
|
2019-02-11 08:33:47 -05:00
|
|
|
<div class="col-md-12 col-xl-4">
|
|
|
|
<div class="form-group originally-published-at">
|
|
|
|
<label i18n for="originallyPublishedAt">Original publication date</label>
|
|
|
|
<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>
|
|
|
|
<p-calendar
|
|
|
|
id="originallyPublishedAt" formControlName="originallyPublishedAt" [dateFormat]="calendarDateFormat"
|
|
|
|
[locale]="calendarLocale" [showTime]="true" [hideOnDateTimeSelect]="true" [monthNavigator]="true" [yearNavigator]="true" [yearRange]="myYearRange"
|
|
|
|
>
|
|
|
|
</p-calendar>
|
|
|
|
|
|
|
|
<div *ngIf="formErrors.originallyPublishedAt" class="form-error">
|
|
|
|
{{ formErrors.originallyPublishedAt }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<my-peertube-checkbox
|
|
|
|
inputName="commentsEnabled" formControlName="commentsEnabled"
|
|
|
|
i18n-labelText labelText="Enable video comments"
|
|
|
|
></my-peertube-checkbox>
|
2019-02-11 06:00:19 -05:00
|
|
|
|
2019-02-11 08:33:47 -05:00
|
|
|
<my-peertube-checkbox
|
|
|
|
inputName="downloadEnabled" formControlName="downloadEnabled"
|
|
|
|
i18n-labelText labelText="Enable download"
|
|
|
|
></my-peertube-checkbox>
|
|
|
|
</div>
|
2018-02-20 10:13:05 -05:00
|
|
|
</div>
|
2018-08-09 08:55:06 -04:00
|
|
|
</ng-template>
|
|
|
|
</ngb-tab>
|
2017-12-07 05:15:19 -05:00
|
|
|
|
2018-08-09 08:55:06 -04:00
|
|
|
</ngb-tabset>
|
2018-01-03 04:12:36 -05:00
|
|
|
|
2017-12-07 05:15:19 -05:00
|
|
|
</div>
|
2018-07-12 13:02:00 -04:00
|
|
|
|
|
|
|
<my-video-caption-add-modal
|
2018-07-16 08:22:16 -04:00
|
|
|
#videoCaptionAddModal [existingCaptions]="existingCaptions" (captionAdded)="onCaptionAdded($event)"
|
2018-09-04 05:01:54 -04:00
|
|
|
></my-video-caption-add-modal>
|