aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.html
blob: ecec6045baac48b218a161b008ec14a720215e6c (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
<div *ngIf="!isInUpdateForm" class="upload-video-container">
  <div class="first-step-block">
    <my-global-icon class="upload-icon" iconName="upload" aria-hidden="true"></my-global-icon>

    <div class="form-group">
      <label i18n for="first-step-channel">Channel</label>
      <my-select-channel
        labelForId="first-step-channel" [items]="userVideoChannels" [(ngModel)]="firstStepChannelId"
      ></my-select-channel>
    </div>

    <div class="form-group">
      <label i18n for="first-step-privacy">Privacy</label>
      <my-select-options
        labelForId="first-step-privacy" [items]="videoPrivacies" [(ngModel)]="firstStepPrivacyId"
      ></my-select-options>
    </div>

    <div class="form-group live-type">
      <div class="peertube-radio-container">
        <input type="radio" id="permanentLiveFalse" [(ngModel)]="firstStepPermanentLive" [value]="false">
        <label i18n for="permanentLiveFalse" class="radio">Normal live</label>

        <span class="form-group-description">{{ getNormalLiveDescription() }}</span>
      </div>

      <div class="peertube-radio-container">
        <input type="radio" id="permanentLiveTrue" [(ngModel)]="firstStepPermanentLive" [value]="true">
        <label i18n for="permanentLiveTrue" class="radio">Permanent/recurring live</label>

        <span class="form-group-description" i18n>{{ getPermanentLiveDescription() }}</span>
      </div>
    </div>

    <input
      [disabled]="firstStepPermanentLive !== true && firstStepPermanentLive !== false"
      type="button" i18n-value value="Go Live" (click)="goLive()"
    />
  </div>
</div>

<div *ngIf="error" class="alert alert-danger">
  <div i18n>Sorry, but something went wrong</div>
  {{ error }}
</div>

<div class="alert alert-info" i18n *ngIf="isInUpdateForm && getMaxLiveDuration() >= 0">
  Max live duration is {{ getMaxLiveDuration() | myDurationFormatter }}.
  If your live reaches this limit, it will be automatically terminated.
</div>

<!-- Hidden because we want to load the component -->
<form [hidden]="!isInUpdateForm" novalidate [formGroup]="form">
  <my-video-edit
    [form]="form" [formErrors]="formErrors" [videoCaptions]="videoCaptions"
    [forbidScheduledPublication]="true" [waitTranscodingEnabled]="isWaitTranscodingEnabled()"
    [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" [liveVideo]="liveVideo"
    type="go-live"
  ></my-video-edit>

  <div class="submit-container">
    <my-button className="orange-button" i18n-label label="Update" icon="circle-tick"
      (click)="updateSecondStep()"
      [disabled]="!form.valid"
    ></my-button>
  </div>
</form>