]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-add-components/video-send.ts
Refractor notification service
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add-components / video-send.ts
1 import { EventEmitter, OnInit } from '@angular/core'
2 import { LoadingBarService } from '@ngx-loading-bar/core'
3 import { AuthService, Notifier, ServerService } from '@app/core'
4 import { catchError, switchMap, tap } from 'rxjs/operators'
5 import { FormReactive } from '@app/shared'
6 import { VideoConstant, VideoPrivacy } from '../../../../../../shared'
7 import { VideoService } from '@app/shared/video/video.service'
8 import { VideoCaptionEdit } from '@app/shared/video-caption/video-caption-edit.model'
9 import { VideoCaptionService } from '@app/shared/video-caption'
10 import { VideoEdit } from '@app/shared/video/video-edit.model'
11 import { populateAsyncUserVideoChannels } from '@app/shared/misc/utils'
12 import { CanComponentDeactivateResult } from '@app/shared/guards/can-deactivate-guard.service'
13
14 export abstract class VideoSend extends FormReactive implements OnInit {
15 userVideoChannels: { id: number, label: string, support: string }[] = []
16 videoPrivacies: VideoConstant<VideoPrivacy>[] = []
17 videoCaptions: VideoCaptionEdit[] = []
18
19 firstStepPrivacyId = 0
20 firstStepChannelId = 0
21
22 abstract firstStepDone: EventEmitter<string>
23 abstract firstStepError: EventEmitter<void>
24 protected abstract readonly DEFAULT_VIDEO_PRIVACY: VideoPrivacy
25
26 protected loadingBar: LoadingBarService
27 protected notifier: Notifier
28 protected authService: AuthService
29 protected serverService: ServerService
30 protected videoService: VideoService
31 protected videoCaptionService: VideoCaptionService
32
33 abstract canDeactivate (): CanComponentDeactivateResult
34
35 ngOnInit () {
36 this.buildForm({})
37
38 populateAsyncUserVideoChannels(this.authService, this.userVideoChannels)
39 .then(() => this.firstStepChannelId = this.userVideoChannels[ 0 ].id)
40
41 this.serverService.videoPrivaciesLoaded
42 .subscribe(
43 () => {
44 this.videoPrivacies = this.serverService.getVideoPrivacies()
45
46 this.firstStepPrivacyId = this.DEFAULT_VIDEO_PRIVACY
47 })
48 }
49
50 checkForm () {
51 this.forceCheck()
52
53 return this.form.valid
54 }
55
56 protected updateVideoAndCaptions (video: VideoEdit) {
57 this.loadingBar.start()
58
59 return this.videoService.updateVideo(video)
60 .pipe(
61 // Then update captions
62 switchMap(() => this.videoCaptionService.updateCaptions(video.id, this.videoCaptions)),
63 tap(() => this.loadingBar.complete()),
64 catchError(err => {
65 this.loadingBar.complete()
66 throw err
67 })
68 )
69 }
70 }