aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.component.html
blob: f87df87dfcd747b7ee234eeaa45a553d10134965 (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
<my-actor-avatar-info
  *ngIf="isCreation() === false && videoChannelToUpdate"
  [actor]="videoChannelToUpdate" (avatarChange)="onAvatarChange($event)"
></my-actor-avatar-info>

<div i18n class="form-sub-title" *ngIf="isCreation() === true">Create a video channel</div>

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

<form role="form" (ngSubmit)="formValidated()" [formGroup]="form">
  <div class="form-group" *ngIf="isCreation() === true">
    <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'] }"
      >
      <div class="input-group-append">
        <span class="input-group-text">@{{ instanceHost }}</span>
      </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"
      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"
      [ngClass]="{ 'input-error': formErrors['description'] }"
    ></textarea>
    <div *ngIf="formErrors.description" class="form-error">
      {{ formErrors.description }}
    </div>
  </div>

  <div class="form-group">
    <label for="support">Support</label>
    <my-help
      helpType="markdownEnhanced" i18n-preHtml preHtml="Short text to tell people how they can support your channel (membership platform...).<br /><br />
When you will upload a video in this channel, the video support field will be automatically filled by this text."
    ></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>
  </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>

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