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