]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/shared/video-edit.component.ts
Better label for video privacies
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.component.ts
CommitLineData
40e87e9e
C
1import { Component, Input, OnDestroy, OnInit, ViewChild } from '@angular/core'
2import { FormArray, FormControl, FormGroup, ValidatorFn, Validators } from '@angular/forms'
ff249f49 3import { ActivatedRoute, Router } from '@angular/router'
e309822b 4import { FormReactiveValidationMessages, VideoValidatorsService } from '@app/shared'
ff249f49 5import { NotificationsService } from 'angular2-notifications'
63c4db6d 6import { ServerService } from '../../../core/server'
63c4db6d 7import { VideoEdit } from '../../../shared/video/video-edit.model'
74af5145 8import { map } from 'rxjs/operators'
d18d6478 9import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
bbe0f064 10import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar'
40e87e9e
C
11import { VideoCaptionService } from '@app/shared/video-caption'
12import { VideoCaptionAddModalComponent } from '@app/videos/+video-edit/shared/video-caption-add-modal.component'
13import { VideoCaptionEdit } from '@app/shared/video-caption/video-caption-edit.model'
14import { removeElementFromArray } from '@app/shared/misc/utils'
8cd7faaa 15import { VideoConstant, VideoPrivacy } from '../../../../../../shared'
ff249f49
C
16
17@Component({
18 selector: 'my-video-edit',
19 styleUrls: [ './video-edit.component.scss' ],
20 templateUrl: './video-edit.component.html'
21})
40e87e9e 22export class VideoEditComponent implements OnInit, OnDestroy {
ff249f49
C
23 @Input() form: FormGroup
24 @Input() formErrors: { [ id: string ]: string } = {}
e309822b 25 @Input() validationMessages: FormReactiveValidationMessages = {}
8cd7faaa 26 @Input() videoPrivacies: VideoConstant<VideoPrivacy>[] = []
74af5145 27 @Input() userVideoChannels: { id: number, label: string, support: string }[] = []
bbe0f064 28 @Input() schedulePublicationPossible = true
40e87e9e
C
29 @Input() videoCaptions: VideoCaptionEdit[] = []
30
31 @ViewChild('videoCaptionAddModal') videoCaptionAddModal: VideoCaptionAddModalComponent
bbe0f064
C
32
33 // So that it can be accessed in the template
34 readonly SPECIAL_SCHEDULED_PRIVACY = VideoEdit.SPECIAL_SCHEDULED_PRIVACY
ff249f49 35
8cd7faaa
C
36 videoCategories: VideoConstant<number>[] = []
37 videoLicences: VideoConstant<number>[] = []
ef4c78da 38 videoLanguages: VideoConstant<string>[] = []
ff249f49 39
e309822b
C
40 tagValidators: ValidatorFn[]
41 tagValidatorsMessages: { [ name: string ]: string }
ff249f49 42
bbe0f064
C
43 schedulePublicationEnabled = false
44
bbe0f064
C
45 calendarLocale: any = {}
46 minScheduledDate = new Date()
47
48 calendarTimezone: string
49 calendarDateFormat: string
ff249f49 50
40e87e9e 51 private schedulerInterval
0f7fedc3 52 private firstPatchDone = false
772d5642 53 private initialVideoCaptions: string[] = []
40e87e9e 54
ff249f49 55 constructor (
d18d6478 56 private formValidatorService: FormValidatorService,
e309822b 57 private videoValidatorsService: VideoValidatorsService,
40e87e9e 58 private videoCaptionService: VideoCaptionService,
ff249f49
C
59 private route: ActivatedRoute,
60 private router: Router,
61 private notificationsService: NotificationsService,
bbe0f064
C
62 private serverService: ServerService,
63 private i18nPrimengCalendarService: I18nPrimengCalendarService
e309822b
C
64 ) {
65 this.tagValidators = this.videoValidatorsService.VIDEO_TAGS.VALIDATORS
66 this.tagValidatorsMessages = this.videoValidatorsService.VIDEO_TAGS.MESSAGES
bbe0f064
C
67
68 this.calendarLocale = this.i18nPrimengCalendarService.getCalendarLocale()
69 this.calendarTimezone = this.i18nPrimengCalendarService.getTimezone()
70 this.calendarDateFormat = this.i18nPrimengCalendarService.getDateFormat()
e309822b 71 }
ff249f49 72
f4001cf4
C
73 get existingCaptions () {
74 return this.videoCaptions
75 .filter(c => c.action !== 'REMOVE')
76 .map(c => c.language.id)
77 }
78
ff249f49 79 updateForm () {
d18d6478
C
80 const defaultValues = {
81 nsfw: 'false',
82 commentsEnabled: 'true',
2186386c 83 waitTranscoding: 'true',
d18d6478
C
84 tags: []
85 }
86 const obj = {
e309822b
C
87 name: this.videoValidatorsService.VIDEO_NAME,
88 privacy: this.videoValidatorsService.VIDEO_PRIVACY,
89 channelId: this.videoValidatorsService.VIDEO_CHANNEL,
d18d6478
C
90 nsfw: null,
91 commentsEnabled: null,
2186386c 92 waitTranscoding: null,
e309822b
C
93 category: this.videoValidatorsService.VIDEO_CATEGORY,
94 licence: this.videoValidatorsService.VIDEO_LICENCE,
95 language: this.videoValidatorsService.VIDEO_LANGUAGE,
96 description: this.videoValidatorsService.VIDEO_DESCRIPTION,
d18d6478
C
97 tags: null,
98 thumbnailfile: null,
99 previewfile: null,
bbe0f064
C
100 support: this.videoValidatorsService.VIDEO_SUPPORT,
101 schedulePublicationAt: this.videoValidatorsService.VIDEO_SCHEDULE_PUBLICATION_AT
d18d6478 102 }
ff249f49 103
d18d6478
C
104 this.formValidatorService.updateForm(
105 this.form,
106 this.formErrors,
107 this.validationMessages,
108 obj,
109 defaultValues
110 )
74af5145 111
40e87e9e
C
112 this.form.addControl('captions', new FormArray([
113 new FormGroup({
114 language: new FormControl(),
115 captionfile: new FormControl()
116 })
117 ]))
118
bbe0f064
C
119 this.trackChannelChange()
120 this.trackPrivacyChange()
121 }
122
123 ngOnInit () {
124 this.updateForm()
125
126 this.videoCategories = this.serverService.getVideoCategories()
127 this.videoLicences = this.serverService.getVideoLicences()
128 this.videoLanguages = this.serverService.getVideoLanguages()
129
40e87e9e 130 this.schedulerInterval = setInterval(() => this.minScheduledDate = new Date(), 1000 * 60) // Update every minute
772d5642
C
131
132 this.initialVideoCaptions = this.videoCaptions.map(c => c.language.id)
40e87e9e
C
133 }
134
135 ngOnDestroy () {
136 if (this.schedulerInterval) clearInterval(this.schedulerInterval)
137 }
138
40e87e9e 139 onCaptionAdded (caption: VideoCaptionEdit) {
f4001cf4
C
140 const existingCaption = this.videoCaptions.find(c => c.language.id === caption.language.id)
141
142 // Replace existing caption?
143 if (existingCaption) {
144 Object.assign(existingCaption, caption, { action: 'CREATE' as 'CREATE' })
ad774752
C
145 } else {
146 this.videoCaptions.push(
147 Object.assign(caption, { action: 'CREATE' as 'CREATE' })
148 )
f4001cf4
C
149 }
150
ad774752 151 this.sortVideoCaptions()
40e87e9e
C
152 }
153
772d5642
C
154 async deleteCaption (caption: VideoCaptionEdit) {
155 // Caption recovers his former state
156 if (caption.action && this.initialVideoCaptions.indexOf(caption.language.id) !== -1) {
157 caption.action = undefined
158 return
159 }
160
40e87e9e
C
161 // This caption is not on the server, just remove it from our array
162 if (caption.action === 'CREATE') {
163 removeElementFromArray(this.videoCaptions, caption)
164 return
165 }
166
167 caption.action = 'REMOVE' as 'REMOVE'
168 }
169
170 openAddCaptionModal () {
171 this.videoCaptionAddModal.show()
bbe0f064
C
172 }
173
ad774752
C
174 private sortVideoCaptions () {
175 this.videoCaptions.sort((v1, v2) => {
176 if (v1.language.label < v2.language.label) return -1
177 if (v1.language.label === v2.language.label) return 0
178
179 return 1
180 })
181 }
182
bbe0f064
C
183 private trackPrivacyChange () {
184 // We will update the "support" field depending on the channel
185 this.form.controls[ 'privacy' ]
186 .valueChanges
187 .pipe(map(res => parseInt(res.toString(), 10)))
188 .subscribe(
189 newPrivacyId => {
0f7fedc3 190
bbe0f064
C
191 this.schedulePublicationEnabled = newPrivacyId === this.SPECIAL_SCHEDULED_PRIVACY
192
193 // Value changed
194 const scheduleControl = this.form.get('schedulePublicationAt')
195 const waitTranscodingControl = this.form.get('waitTranscoding')
196
197 if (this.schedulePublicationEnabled) {
198 scheduleControl.setValidators([ Validators.required ])
199
200 waitTranscodingControl.disable()
201 waitTranscodingControl.setValue(false)
202 } else {
203 scheduleControl.clearValidators()
204
205 waitTranscodingControl.enable()
0f7fedc3
C
206
207 // Do not update the control value on first patch (values come from the server)
208 if (this.firstPatchDone === true) {
209 waitTranscodingControl.setValue(true)
210 }
bbe0f064
C
211 }
212
213 scheduleControl.updateValueAndValidity()
214 waitTranscodingControl.updateValueAndValidity()
0f7fedc3
C
215
216 this.firstPatchDone = true
217
bbe0f064
C
218 }
219 )
220 }
221
222 private trackChannelChange () {
74af5145 223 // We will update the "support" field depending on the channel
2186386c 224 this.form.controls[ 'channelId' ]
74af5145
C
225 .valueChanges
226 .pipe(map(res => parseInt(res.toString(), 10)))
227 .subscribe(
228 newChannelId => {
2186386c
C
229 const oldChannelId = parseInt(this.form.value[ 'channelId' ], 10)
230 const currentSupport = this.form.value[ 'support' ]
74af5145
C
231
232 // Not initialized yet
233 if (isNaN(newChannelId)) return
234 const newChannel = this.userVideoChannels.find(c => c.id === newChannelId)
d18d6478 235 if (!newChannel) return
74af5145
C
236
237 // First time we set the channel?
238 if (isNaN(oldChannelId)) return this.updateSupportField(newChannel.support)
239 const oldChannel = this.userVideoChannels.find(c => c.id === oldChannelId)
240
241 if (!newChannel || !oldChannel) {
242 console.error('Cannot find new or old channel.')
243 return
244 }
245
246 // If the current support text is not the same than the old channel, the user updated it.
247 // We don't want the user to lose his text, so stop here
248 if (currentSupport && currentSupport !== oldChannel.support) return
249
250 // Update the support text with our new channel
251 this.updateSupportField(newChannel.support)
252 }
253 )
ff249f49
C
254 }
255
74af5145
C
256 private updateSupportField (support: string) {
257 return this.form.patchValue({ support: support || '' })
258 }
ff249f49 259}