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