]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component.ts
Fix tokens loading
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-playlists / my-account-video-playlist-update.component.ts
CommitLineData
67ed6552
C
1import { forkJoin, Subscription } from 'rxjs'
2import { map, switchMap } from 'rxjs/operators'
830b4faf
C
3import { Component, OnDestroy, OnInit } from '@angular/core'
4import { ActivatedRoute, Router } from '@angular/router'
5import { AuthService, Notifier, ServerService } from '@app/core'
67ed6552 6import { populateAsyncUserVideoChannels } from '@app/helpers'
7ed1edbb
C
7import {
8 setPlaylistChannelValidator,
9 VIDEO_PLAYLIST_CHANNEL_ID_VALIDATOR,
10 VIDEO_PLAYLIST_DESCRIPTION_VALIDATOR,
11 VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR,
12 VIDEO_PLAYLIST_PRIVACY_VALIDATOR
13} from '@app/shared/form-validators/video-playlist-validators'
14import { FormValidatorService } from '@app/shared/shared-forms'
67ed6552 15import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist'
67ed6552
C
16import { VideoPlaylistUpdate } from '@shared/models'
17import { MyAccountVideoPlaylistEdit } from './my-account-video-playlist-edit'
830b4faf
C
18
19@Component({
20 selector: 'my-account-video-playlist-update',
21 templateUrl: './my-account-video-playlist-edit.component.html',
22 styleUrls: [ './my-account-video-playlist-edit.component.scss' ]
23})
24export class MyAccountVideoPlaylistUpdateComponent extends MyAccountVideoPlaylistEdit implements OnInit, OnDestroy {
25 error: string
26 videoPlaylistToUpdate: VideoPlaylist
830b4faf
C
27
28 private paramsSub: Subscription
29
30 constructor (
31 protected formValidatorService: FormValidatorService,
32 private authService: AuthService,
830b4faf
C
33 private notifier: Notifier,
34 private router: Router,
35 private route: ActivatedRoute,
36 private videoPlaylistService: VideoPlaylistService,
830b4faf
C
37 private serverService: ServerService
38 ) {
39 super()
40 }
41
42 ngOnInit () {
43 this.buildForm({
7ed1edbb
C
44 displayName: VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR,
45 privacy: VIDEO_PLAYLIST_PRIVACY_VALIDATOR,
46 description: VIDEO_PLAYLIST_DESCRIPTION_VALIDATOR,
47 videoChannelId: VIDEO_PLAYLIST_CHANNEL_ID_VALIDATOR,
830b4faf
C
48 thumbnailfile: null
49 })
50
978c9d49 51 this.form.get('privacy').valueChanges.subscribe(privacy => {
7ed1edbb 52 setPlaylistChannelValidator(this.form.get('videoChannelId'), privacy)
978c9d49
C
53 })
54
830b4faf 55 populateAsyncUserVideoChannels(this.authService, this.userVideoChannels)
851f5daa 56 .catch(err => console.error('Cannot populate user video channels.', err))
830b4faf 57
851f5daa
C
58 this.paramsSub = this.route.params
59 .pipe(
60 map(routeParams => routeParams['videoPlaylistId']),
ba430d75
C
61 switchMap(videoPlaylistId => {
62 return forkJoin([
63 this.videoPlaylistService.getVideoPlaylist(videoPlaylistId),
64 this.serverService.getVideoPlaylistPrivacies()
65 ])
66 })
851f5daa
C
67 )
68 .subscribe(
ba430d75 69 ([ videoPlaylistToUpdate, videoPlaylistPrivacies]) => {
851f5daa 70 this.videoPlaylistToUpdate = videoPlaylistToUpdate
ba430d75 71 this.videoPlaylistPrivacies = videoPlaylistPrivacies
830b4faf 72
851f5daa
C
73 this.hydrateFormFromPlaylist()
74 },
830b4faf 75
851f5daa
C
76 err => this.error = err.message
77 )
830b4faf
C
78 }
79
80 ngOnDestroy () {
81 if (this.paramsSub) this.paramsSub.unsubscribe()
82 }
83
84 formValidated () {
85 this.error = undefined
86
87 const body = this.form.value
88 const videoPlaylistUpdate: VideoPlaylistUpdate = {
978c9d49
C
89 displayName: body.displayName,
90 privacy: body.privacy,
830b4faf
C
91 description: body.description || null,
92 videoChannelId: body.videoChannelId || null,
93 thumbnailfile: body.thumbnailfile || undefined
94 }
95
96 this.videoPlaylistService.updateVideoPlaylist(this.videoPlaylistToUpdate, videoPlaylistUpdate).subscribe(
97 () => {
66357162 98 this.notifier.success($localize`Playlist ${videoPlaylistUpdate.displayName} updated.`)
830b4faf
C
99 this.router.navigate([ '/my-account', 'video-playlists' ])
100 },
101
102 err => this.error = err.message
103 )
104 }
105
106 isCreation () {
107 return false
108 }
109
110 getFormButtonTitle () {
66357162 111 return $localize`Update`
830b4faf
C
112 }
113
114 private hydrateFormFromPlaylist () {
115 this.form.patchValue({
978c9d49 116 displayName: this.videoPlaylistToUpdate.displayName,
830b4faf
C
117 privacy: this.videoPlaylistToUpdate.privacy.id,
118 description: this.videoPlaylistToUpdate.description,
119 videoChannelId: this.videoPlaylistToUpdate.videoChannel ? this.videoPlaylistToUpdate.videoChannel.id : null
120 })
121
122 fetch(this.videoPlaylistToUpdate.thumbnailUrl)
123 .then(response => response.blob())
124 .then(data => {
125 this.form.patchValue({
126 thumbnailfile: data
127 })
128 })
129 }
130}