aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-live/live-stream-information.component.html
blob: 99c7dbd4c792d3d79650cadfd11bbad652519395 (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
<ng-template #modal let-close="close" let-dismiss="dismiss">
  <div class="modal-header">
    <h4 i18n class="modal-title">Live information</h4>

    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="dismiss()"></my-global-icon>
  </div>

  <div class="modal-body" *ngIf="live">
    <div>
      <div class="pt-badge badge-blue" *ngIf="live.permanentLive" i18n>Permanent/Recurring live</div>
      <div class="pt-badge badge-blue" *ngIf="live.saveReplay" i18n>Replay will be saved</div>
    </div>

    <div class="alert pt-alert-primary">
      <my-live-documentation-link></my-live-documentation-link>
    </div>

    <div *ngIf="live.rtmpUrl" class="form-group">
      <label for="liveVideoRTMPUrl" i18n>Live RTMP Url</label>
      <my-input-text inputId="liveVideoRTMPUrl" [value]="live.rtmpUrl" [withToggle]="false" [withCopy]="true" [show]="true" [readonly]="true"></my-input-text>
    </div>

    <div *ngIf="live.rtmpsUrl" class="form-group">
      <label for="liveVideoRTMPSUrl" i18n>Live RTMPS Url</label>
      <my-input-text inputId="liveVideoRTMPSUrl" [value]="live.rtmpsUrl" [withToggle]="false" [withCopy]="true" [show]="true" [readonly]="true"></my-input-text>
    </div>

    <div class="form-group">
      <label for="liveVideoStreamKey" i18n>Live stream key</label>
      <my-input-text inputId="liveVideoStreamKey" [value]="live.streamKey" [withCopy]="true" [readonly]="true"></my-input-text>

      <div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
    </div>

    <div class="journal">
      <label i18n>Latest live sessions</label>

      <div class="journal-session" *ngFor="let session of latestLiveSessions">
        <span i18n class="pt-badge badge-success" *ngIf="!getErrorLabel(session)">Success</span>
        <span class="pt-badge badge-danger" *ngIf="getErrorLabel(session)">{{ getErrorLabel(session) }}</span>

        <span i18n>Started on {{ session.startDate | date:'medium' }}</span>
        <span i18n *ngIf="session.endDate">Ended on {{ session.endDate | date:'medium' }}</span>
        <a i18n *ngIf="session.replayVideo" [routerLink]="getVideoUrl(session.replayVideo)" target="_blank">Go to replay</a>
      </div>
    </div>
  </div>

  <div class="modal-footer">
    <div class="form-group inputs">
      <input type="button" role="button" i18n-value value="Close" class="peertube-button grey-button" (click)="dismiss()" />

      <my-edit-button
        i18n-label label="Update live settings"
        [routerLink]="[ '/videos', 'update', video.uuid ]" (click)="dismiss()"
      ></my-edit-button>
    </div>
  </div>
</ng-template>