PeerTube/client/src/app/+videos/+video-edit/video-update.component.ts

140 lines
4.1 KiB
TypeScript
Raw Normal View History

2018-05-15 11:55:51 +02:00
import { map, switchMap } from 'rxjs/operators'
import { Component, HostListener, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { Notifier } from '@app/core'
2020-08-11 16:07:53 +02:00
import { FormReactive, FormValidatorService, SelectChannelItem } from '@app/shared/shared-forms'
2020-06-23 14:10:17 +02:00
import { VideoCaptionEdit, VideoCaptionService, VideoDetails, VideoEdit, VideoService } from '@app/shared/shared-main'
import { LoadingBarService } from '@ngx-loading-bar/core'
import { LiveVideo, VideoPrivacy } from '@shared/models'
import { hydrateFormFromVideo } from './shared/video-edit-utils'
2016-03-14 13:50:19 +01:00
@Component({
selector: 'my-videos-update',
styleUrls: [ './shared/video-edit.component.scss' ],
templateUrl: './video-update.component.html'
2016-03-14 13:50:19 +01:00
})
export class VideoUpdateComponent extends FormReactive implements OnInit {
2017-10-25 16:43:19 +02:00
video: VideoEdit
userVideoChannels: SelectChannelItem[] = []
videoCaptions: VideoCaptionEdit[] = []
liveVideo: LiveVideo
2016-09-09 22:16:51 +02:00
2018-02-16 17:24:47 +01:00
isUpdatingVideo = false
schedulePublicationPossible = false
2018-12-11 14:52:50 +01:00
waitTranscodingEnabled = true
2016-03-14 13:50:19 +01:00
private updateDone = false
constructor (
2018-06-05 10:58:45 +02:00
protected formValidatorService: FormValidatorService,
private route: ActivatedRoute,
private router: Router,
private notifier: Notifier,
2017-12-20 14:29:55 +01:00
private videoService: VideoService,
private loadingBar: LoadingBarService,
private videoCaptionService: VideoCaptionService
) {
super()
2016-09-09 22:16:51 +02:00
}
2016-03-14 13:50:19 +01:00
ngOnInit () {
2018-06-05 10:58:45 +02:00
this.buildForm({})
2018-07-16 18:09:31 +02:00
this.route.data
.pipe(map(data => data.videoData))
.subscribe(({ video, videoChannels, videoCaptions, liveVideo }) => {
2018-07-16 18:09:31 +02:00
this.video = new VideoEdit(video)
this.userVideoChannels = videoChannels
this.videoCaptions = videoCaptions
this.liveVideo = liveVideo
2018-05-15 11:55:51 +02:00
this.schedulePublicationPossible = this.video.privacy === VideoPrivacy.PRIVATE
2019-11-21 17:01:24 +01:00
const videoFiles = (video as VideoDetails).getFiles()
2018-12-11 14:52:50 +01:00
if (videoFiles.length > 1) { // Already transcoded
this.waitTranscodingEnabled = false
}
// FIXME: Angular does not detect the change inside this subscription, so use the patched setTimeout
setTimeout(() => hydrateFormFromVideo(this.form, this.video, true))
2018-07-16 18:09:31 +02:00
},
2018-07-16 18:09:31 +02:00
err => {
console.error(err)
this.notifier.error(err.message)
2018-07-16 18:09:31 +02:00
}
)
}
@HostListener('window:beforeunload', [ '$event' ])
onUnload (event: any) {
const { text, canDeactivate } = this.canDeactivate()
if (canDeactivate) return
event.returnValue = text
return text
}
canDeactivate (): { canDeactivate: boolean, text?: string } {
if (this.updateDone === true) return { canDeactivate: true }
const text = $localize`You have unsaved changes! If you leave, your changes will be lost.`
for (const caption of this.videoCaptions) {
if (caption.action) return { canDeactivate: false, text }
}
return { canDeactivate: this.formChanged === false, text }
}
checkForm () {
this.forceCheck()
return this.form.valid
}
update () {
if (this.checkForm() === false
|| this.isUpdatingVideo === true) {
return
}
this.video.patch(this.form.value)
2020-08-06 16:14:58 +02:00
this.loadingBar.useRef().start()
2018-02-16 17:24:47 +01:00
this.isUpdatingVideo = true
2018-07-12 19:02:00 +02:00
// Update the video
this.videoService.updateVideo(this.video)
2018-07-12 19:02:00 +02:00
.pipe(
// Then update captions
switchMap(() => this.videoCaptionService.updateCaptions(this.video.id, this.videoCaptions))
)
.subscribe(
() => {
this.updateDone = true
2018-07-12 19:02:00 +02:00
this.isUpdatingVideo = false
2020-08-06 16:14:58 +02:00
this.loadingBar.useRef().complete()
this.notifier.success($localize`Video updated.`)
2018-07-12 19:02:00 +02:00
this.router.navigate([ '/videos/watch', this.video.uuid ])
},
err => {
2020-08-06 16:14:58 +02:00
this.loadingBar.useRef().complete()
2018-07-12 19:02:00 +02:00
this.isUpdatingVideo = false
this.notifier.error(err.message)
2018-07-12 19:02:00 +02:00
console.error(err)
}
)
2016-03-14 13:50:19 +01:00
}
hydratePluginFieldsFromVideo () {
if (!this.video.pluginData) return
this.form.patchValue({
pluginData: this.video.pluginData
})
}
2016-03-14 13:50:19 +01:00
}