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