aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+manage/video-channel-edit/video-channel-edit.component.html
blob: 966a350d1dd9fc66703cc98240b87d97c35a82ca (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>

<div class="margin-content pt-4">
  <form role="form" (ngSubmit)="formValidated()" [formGroup]="form">

    <div class="row"> <!-- channel grid -->
      <div class="col-12 col-lg-4 col-xl-3">
        <div *ngIf="isCreation()" class="video-channel-title" i18n>NEW CHANNEL</div>
        <div *ngIf="!isCreation() && videoChannel" class="video-channel-title" i18n>CHANNEL</div>
      </div>

      <div class="col-12 col-lg-8 col-xl-9">
        <label i18n>Banner image of the channel</label>

        <my-actor-banner-edit
          *ngIf="videoChannel" [previewImage]="isCreation()" class="d-block mb-4"
          [actor]="videoChannel" (bannerChange)="onBannerChange($event)" (bannerDelete)="onBannerDelete()"
        ></my-actor-banner-edit>

        <my-actor-avatar-edit
          *ngIf="videoChannel" [previewImage]="isCreation()" class="d-block mb-4"
          [actor]="videoChannel" (avatarChange)="onAvatarChange($event)" (avatarDelete)="onAvatarDelete()"
          [displayUsername]="!isCreation()" [displaySubscribers]="!isCreation()"
        ></my-actor-avatar-edit>

        <div class="form-group" *ngIf="isCreation()">
          <label i18n for="name">Name</label>

          <div class="input-group">
            <input
              type="text" id="name" i18n-placeholder placeholder="Example: my_channel"
              formControlName="name" [ngClass]="{ 'input-error': formErrors['name'] }" class="form-control w-auto flex-grow-1 d-block"
            >
            <div class="input-group-text">@{{ instanceHost }}</div>
          </div>
          <div *ngIf="formErrors['name']" class="form-error">
            {{ formErrors['name'] }}
          </div>
        </div>

        <div class="form-group">
          <label i18n for="display-name">Display name</label>
          <input
            type="text" id="display-name" class="form-control d-block"
            formControlName="display-name" [ngClass]="{ 'input-error': formErrors['display-name'] }"
          >
          <div *ngIf="formErrors['display-name']" class="form-error">
            {{ formErrors['display-name'] }}
          </div>
        </div>

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

        <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 the channel (membership platform...).<br /><br />
      When a video is uploaded in this channel, the video support field will be automatically filled by this text."
          ></my-help>

          <my-markdown-textarea
            id="support" formControlName="support" class="d-block"
            markdownType="enhanced" [formError]="formErrors['support']"
          ></my-markdown-textarea>
        </div>

        <div class="form-group" *ngIf="isBulkUpdateVideosDisplayed()">
          <my-peertube-checkbox
            inputName="bulkVideosSupportUpdate" formControlName="bulkVideosSupportUpdate"
            i18n-labelText labelText="Overwrite support field of all videos of this channel"
          ></my-peertube-checkbox>
        </div>

      </div>
    </div>

    <div class="row"> <!-- submit placement block -->
      <div class="col-md-7 col-xl-5"></div>
      <div class="col-md-5 col-xl-5 d-inline-flex">
        <input type="submit" class="peertube-button orange-button" value="{{ getFormButtonTitle() }}" [disabled]="!form.valid">
      </div>
    </div>
  </form>
</div>