]> 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'
12import { VideoConstant } from '@shared/models'
13import { VideoPlaylistPrivacy } from '@shared/models/videos/playlist/video-playlist-privacy.model'
14import { VideoPlaylist } from '@app/shared/video-playlist/video-playlist.model'
15
16@Component({
17 selector: 'my-account-video-playlist-update',
18 templateUrl: './my-account-video-playlist-edit.component.html',
19 styleUrls: [ './my-account-video-playlist-edit.component.scss' ]
20})
21export class MyAccountVideoPlaylistUpdateComponent extends MyAccountVideoPlaylistEdit implements OnInit, OnDestroy {
22 error: string
23 videoPlaylistToUpdate: VideoPlaylist
24 videoPlaylistPrivacies: VideoConstant<VideoPlaylistPrivacy>[] = []
25
26 private paramsSub: Subscription
27
28 constructor (
29 protected formValidatorService: FormValidatorService,
30 private authService: AuthService,
31 private videoPlaylistValidatorsService: VideoPlaylistValidatorsService,
32 private notifier: Notifier,
33 private router: Router,
34 private route: ActivatedRoute,
35 private videoPlaylistService: VideoPlaylistService,
36 private i18n: I18n,
37 private serverService: ServerService
38 ) {
39 super()
40 }
41
42 ngOnInit () {
43 this.buildForm({
978c9d49 44 displayName: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_DISPLAY_NAME,
830b4faf
C
45 privacy: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_PRIVACY,
46 description: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_DESCRIPTION,
47 videoChannelId: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_CHANNEL_ID,
48 thumbnailfile: null
49 })
50
978c9d49
C
51 this.form.get('privacy').valueChanges.subscribe(privacy => {
52 this.videoPlaylistValidatorsService.setChannelValidator(this.form.get('videoChannelId'), privacy)
53 })
54
830b4faf
C
55 populateAsyncUserVideoChannels(this.authService, this.userVideoChannels)
56
57 this.paramsSub = this.route.params.subscribe(routeParams => {
58 const videoPlaylistId = routeParams['videoPlaylistId']
59
60 this.videoPlaylistService.getVideoPlaylist(videoPlaylistId).subscribe(
61 videoPlaylistToUpdate => {
62 this.videoPlaylistToUpdate = videoPlaylistToUpdate
63
64 this.hydrateFormFromPlaylist()
65
66 this.serverService.videoPlaylistPrivaciesLoaded.subscribe(
67 () => {
68 this.videoPlaylistPrivacies = this.serverService.getVideoPlaylistPrivacies()
69 .filter(p => {
70 // If the playlist is not private, we cannot put it in private anymore
71 return this.videoPlaylistToUpdate.privacy.id === VideoPlaylistPrivacy.PRIVATE ||
72 p.id !== VideoPlaylistPrivacy.PRIVATE
73 })
74 }
75 )
76 },
77
78 err => this.error = err.message
79 )
80 })
81 }
82
83 ngOnDestroy () {
84 if (this.paramsSub) this.paramsSub.unsubscribe()
85 }
86
87 formValidated () {
88 this.error = undefined
89
90 const body = this.form.value
91 const videoPlaylistUpdate: VideoPlaylistUpdate = {
978c9d49
C
92 displayName: body.displayName,
93 privacy: body.privacy,
830b4faf
C
94 description: body.description || null,
95 videoChannelId: body.videoChannelId || null,
96 thumbnailfile: body.thumbnailfile || undefined
97 }
98
99 this.videoPlaylistService.updateVideoPlaylist(this.videoPlaylistToUpdate, videoPlaylistUpdate).subscribe(
100 () => {
101 this.notifier.success(
102 this.i18n('Playlist {{videoPlaylistName}} updated.', { videoPlaylistName: videoPlaylistUpdate.displayName })
103 )
104
105 this.router.navigate([ '/my-account', 'video-playlists' ])
106 },
107
108 err => this.error = err.message
109 )
110 }
111
112 isCreation () {
113 return false
114 }
115
116 getFormButtonTitle () {
117 return this.i18n('Update')
118 }
119
120 private hydrateFormFromPlaylist () {
121 this.form.patchValue({
978c9d49 122 displayName: this.videoPlaylistToUpdate.displayName,
830b4faf
C
123 privacy: this.videoPlaylistToUpdate.privacy.id,
124 description: this.videoPlaylistToUpdate.description,
125 videoChannelId: this.videoPlaylistToUpdate.videoChannel ? this.videoPlaylistToUpdate.videoChannel.id : null
126 })
127
128 fetch(this.videoPlaylistToUpdate.thumbnailUrl)
129 .then(response => response.blob())
130 .then(data => {
131 this.form.patchValue({
132 thumbnailfile: data
133 })
134 })
135 }
136}