]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/video-add-components/video-send.ts
Merge branch 'constant-registry' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add-components / video-send.ts
CommitLineData
67ed6552 1import { catchError, switchMap, tap } from 'rxjs/operators'
21e493d4 2import { SelectChannelItem } from 'src/types/select-options-item.model'
a02b93ce 3import { Directive, EventEmitter, OnInit } from '@angular/core'
67ed6552 4import { AuthService, CanComponentDeactivateResult, Notifier, ServerService } from '@app/core'
9556ce48 5import { listUserChannels } from '@app/helpers'
21e493d4 6import { FormReactive } from '@app/shared/shared-forms'
67ed6552 7import { VideoCaptionEdit, VideoCaptionService, VideoEdit, VideoService } from '@app/shared/shared-main'
43620009 8import { LoadingBarService } from '@ngx-loading-bar/core'
2989628b 9import { HTMLServerConfig, VideoConstant, VideoPrivacy } from '@shared/models'
43620009 10
583eb04b 11@Directive()
a02b93ce 12// tslint:disable-next-line: directive-class-suffix
c199c427 13export abstract class VideoSend extends FormReactive implements OnInit {
9abd170d 14 userVideoChannels: SelectChannelItem[] = []
8cd7faaa 15 videoPrivacies: VideoConstant<VideoPrivacy>[] = []
43620009
C
16 videoCaptions: VideoCaptionEdit[] = []
17
a3f45a2a
C
18 firstStepPrivacyId: VideoPrivacy
19 firstStepChannelId: number
43620009 20
78848714 21 abstract firstStepDone: EventEmitter<string>
7373507f 22 abstract firstStepError: EventEmitter<void>
43620009
C
23
24 protected loadingBar: LoadingBarService
f8b2c1b4 25 protected notifier: Notifier
43620009 26 protected authService: AuthService
a3f45a2a 27
43620009
C
28 protected serverService: ServerService
29 protected videoService: VideoService
30 protected videoCaptionService: VideoCaptionService
a3f45a2a 31
2989628b 32 protected serverConfig: HTMLServerConfig
43620009 33
a3f45a2a
C
34 protected highestPrivacy: VideoPrivacy
35
c199c427 36 abstract canDeactivate (): CanComponentDeactivateResult
43620009
C
37
38 ngOnInit () {
39 this.buildForm({})
40
9556ce48
C
41 listUserChannels(this.authService)
42 .subscribe(channels => {
43 this.userVideoChannels = channels
44 this.firstStepChannelId = this.userVideoChannels[0].id
45 })
43620009 46
2989628b 47 this.serverConfig = this.serverService.getHTMLConfig()
ba430d75
C
48
49 this.serverService.getVideoPrivacies()
43620009 50 .subscribe(
ba430d75 51 privacies => {
29510651 52 const { videoPrivacies, defaultPrivacyId } = this.videoService.explainedPrivacyLabels(privacies)
43620009 53
29510651
RK
54 this.videoPrivacies = videoPrivacies
55 this.firstStepPrivacyId = defaultPrivacyId
a3f45a2a
C
56
57 this.highestPrivacy = this.videoService.getHighestAvailablePrivacy(privacies)
43620009
C
58 })
59 }
60
61 checkForm () {
62 this.forceCheck()
63
64 return this.form.valid
65 }
66
67 protected updateVideoAndCaptions (video: VideoEdit) {
a02b93ce 68 this.loadingBar.useRef().start()
43620009
C
69
70 return this.videoService.updateVideo(video)
71 .pipe(
72 // Then update captions
73 switchMap(() => this.videoCaptionService.updateCaptions(video.id, this.videoCaptions)),
a02b93ce 74 tap(() => this.loadingBar.useRef().complete()),
43620009 75 catchError(err => {
a02b93ce 76 this.loadingBar.useRef().complete()
43620009
C
77 throw err
78 })
79 )
80 }
81}