X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideos%2F%2Bvideo-edit%2Fvideo-add-components%2Fvideo-go-live.component.ts;h=8e035b6bbba9c1141b4a57c7f6b8fbe2631a0540;hb=8ee37c5f38b0f9b7e97239197d5590109c163250;hp=870a70d3d6e8c8f9f897b55394530197e5afe306;hpb=a056ca4813c82f490dcd31ac97a64d6bf76d3dcc;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts index 870a70d3d..8e035b6bb 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts +++ b/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts @@ -1,11 +1,12 @@ import { forkJoin } from 'rxjs' -import { Component, EventEmitter, OnInit, Output } from '@angular/core' +import { AfterViewChecked, AfterViewInit, Component, EventEmitter, OnInit, Output } from '@angular/core' import { Router } from '@angular/router' -import { AuthService, CanComponentDeactivate, Notifier, ServerService } from '@app/core' +import { AuthService, CanComponentDeactivate, HooksService, Notifier, ServerService } from '@app/core' import { scrollToTop } from '@app/helpers' import { FormValidatorService } from '@app/shared/shared-forms' -import { LiveVideoService, VideoCaptionService, VideoEdit, VideoService } from '@app/shared/shared-main' +import { VideoCaptionService, VideoEdit, VideoService } from '@app/shared/shared-main' +import { LiveVideoService } from '@app/shared/shared-video-live' import { LoadingBarService } from '@ngx-loading-bar/core' import { LiveVideo, LiveVideoCreate, LiveVideoUpdate, ServerErrorCode, VideoPrivacy } from '@shared/models' import { VideoSend } from './video-send' @@ -18,7 +19,7 @@ import { VideoSend } from './video-send' './video-send.scss' ] }) -export class VideoGoLiveComponent extends VideoSend implements OnInit, CanComponentDeactivate { +export class VideoGoLiveComponent extends VideoSend implements OnInit, AfterViewInit, CanComponentDeactivate { @Output() firstStepDone = new EventEmitter() @Output() firstStepError = new EventEmitter() @@ -40,7 +41,8 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, CanCompon protected videoService: VideoService, protected videoCaptionService: VideoCaptionService, private liveVideoService: LiveVideoService, - private router: Router + private router: Router, + private hooks: HooksService ) { super() } @@ -49,13 +51,19 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, CanCompon super.ngOnInit() } + ngAfterViewInit () { + this.hooks.runAction('action:go-live.init', 'video-edit') + } + canDeactivate () { return { canDeactivate: true } } goLive () { + const name = 'Live' + const video: LiveVideoCreate = { - name: 'Live', + name, privacy: VideoPrivacy.PRIVATE, nsfw: this.serverConfig.instance.isNSFW, waitTranscoding: true, @@ -64,8 +72,6 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, CanCompon channelId: this.firstStepChannelId } - this.firstStepDone.emit(name) - // Go live in private mode, but correctly fill the update form with the first user choice const toPatch = Object.assign({}, video, { privacy: this.firstStepPrivacyId }) this.form.patchValue(toPatch) @@ -76,6 +82,8 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, CanCompon this.videoUUID = res.video.uuid this.isInUpdateForm = true + this.firstStepDone.emit(name) + this.fetchVideoLive() }, @@ -106,7 +114,8 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, CanCompon video.uuid = this.videoUUID const liveVideoUpdate: LiveVideoUpdate = { - saveReplay: this.form.value.saveReplay + saveReplay: this.form.value.saveReplay, + permanentLive: this.form.value.permanentLive } // Update the video @@ -133,6 +142,10 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, CanCompon return this.serverConfig.live.maxDuration / 1000 } + isWaitTranscodingEnabled () { + return this.form.value['saveReplay'] === true + } + private fetchVideoLive () { this.liveVideoService.getVideoLive(this.videoId) .subscribe(