aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-edit.component.html
blob: 303fc46f7033942268105c8c8ddfbf13df2ea8b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<div i18n class="form-sub-title" *ngIf="isCreation() === true">Create a new playlist</div>

<div *ngIf="error" class="alert alert-danger">{{ error }}</div>

<form role="form" (ngSubmit)="formValidated()" [formGroup]="form">
  <div class="row">
    <div class="col-md-12 col-xl-6">
      <div class="form-group">
        <label i18n for="displayName">Display name</label>
        <input
          type="text" id="displayName"
          formControlName="displayName" [ngClass]="{ 'input-error': formErrors['displayName'] }"
        >
        <div *ngIf="formErrors['displayName']" class="form-error">
          {{ formErrors['displayName'] }}
        </div>
      </div>

      <div class="form-group">
        <label i18n for="description">Description</label>
        <textarea
          id="description" formControlName="description"
          [ngClass]="{ 'input-error': formErrors['description'] }"
        ></textarea>
        <div *ngIf="formErrors.description" class="form-error">
          {{ formErrors.description }}
        </div>
      </div>
    </div>

    <div class="col-md-12 col-xl-6">
      <div class="form-group">
        <label i18n for="privacy">Privacy</label>
        <div class="peertube-select-container">
          <select id="privacy" formControlName="privacy">
            <option *ngFor="let privacy of videoPlaylistPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
          </select>
        </div>

        <div *ngIf="formErrors.privacy" class="form-error">
          {{ formErrors.privacy }}
        </div>
      </div>

      <div class="form-group">
        <label i18n>Channel</label>
        <div class="peertube-select-container">
          <select formControlName="videoChannelId">
            <option></option>
            <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
          </select>
        </div>

        <div *ngIf="formErrors['videoChannelId']" class="form-error">
          {{ formErrors['videoChannelId'] }}
        </div>
      </div>

      <div class="form-group">
        <my-image-upload
          i18n-inputLabel inputLabel="Upload thumbnail" inputName="thumbnailfile" formControlName="thumbnailfile"
          previewWidth="200px" previewHeight="110px"
        ></my-image-upload>
      </div>
    </div>
  </div>

  <input type="submit" value="{{ getFormButtonTitle() }}" [disabled]="!form.valid">
</form>