4fb82808285a5012959e4a0666b4514bfab68fa8
[oweals/peertube.git] /
1 import { Component, Input, OnInit } from '@angular/core'
2 import { Notifier, ServerService } from '@app/core'
3 import { UserUpdateMe } from '../../../../../../shared'
4 import { AuthService } from '../../../core'
5 import { FormReactive, User, UserService } from '../../../shared'
6 import { I18n } from '@ngx-translate/i18n-polyfill'
7 import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
8 import { forkJoin, Subject } from 'rxjs'
9 import { SelectItem } from 'primeng/api'
10 import { first } from 'rxjs/operators'
11
12 @Component({
13   selector: 'my-account-video-settings',
14   templateUrl: './my-account-video-settings.component.html',
15   styleUrls: [ './my-account-video-settings.component.scss' ]
16 })
17 export class MyAccountVideoSettingsComponent extends FormReactive implements OnInit {
18   @Input() user: User = null
19   @Input() userInformationLoaded: Subject<any>
20
21   languageItems: SelectItem[] = []
22
23   constructor (
24     protected formValidatorService: FormValidatorService,
25     private authService: AuthService,
26     private notifier: Notifier,
27     private userService: UserService,
28     private serverService: ServerService,
29     private i18n: I18n
30   ) {
31     super()
32   }
33
34   ngOnInit () {
35     this.buildForm({
36       nsfwPolicy: null,
37       webTorrentEnabled: null,
38       autoPlayVideo: null,
39       videoLanguages: null
40     })
41
42     forkJoin([
43       this.serverService.videoLanguagesLoaded.pipe(first()),
44       this.userInformationLoaded.pipe(first())
45     ]).subscribe(() => {
46       const languages = this.serverService.getVideoLanguages()
47
48       this.languageItems = [ { label: this.i18n('Unknown language'), value: '_unknown' } ]
49       this.languageItems = this.languageItems
50                                .concat(languages.map(l => ({ label: l.label, value: l.id })))
51
52       const videoLanguages = this.user.videoLanguages
53         ? this.user.videoLanguages
54         : this.languageItems.map(l => l.value)
55
56       this.form.patchValue({
57         nsfwPolicy: this.user.nsfwPolicy,
58         webTorrentEnabled: this.user.webTorrentEnabled,
59         autoPlayVideo: this.user.autoPlayVideo === true,
60         videoLanguages
61       })
62     })
63   }
64
65   updateDetails () {
66     const nsfwPolicy = this.form.value[ 'nsfwPolicy' ]
67     const webTorrentEnabled = this.form.value['webTorrentEnabled']
68     const autoPlayVideo = this.form.value['autoPlayVideo']
69
70     let videoLanguages: string[] = this.form.value['videoLanguages']
71     if (Array.isArray(videoLanguages)) {
72       if (videoLanguages.length === this.languageItems.length) {
73         videoLanguages = null // null means "All"
74       } else if (videoLanguages.length > 20) {
75         this.notifier.error('Too many languages are enabled. Please enable them all or stay below 20 enabled languages.')
76         return
77       } else if (videoLanguages.length === 0) {
78         this.notifier.error('You need to enabled at least 1 video language.')
79         return
80       }
81     }
82
83     const details: UserUpdateMe = {
84       nsfwPolicy,
85       webTorrentEnabled,
86       autoPlayVideo,
87       videoLanguages
88     }
89
90     this.userService.updateMyProfile(details).subscribe(
91       () => {
92         this.notifier.success(this.i18n('Video settings updated.'))
93
94         this.authService.refreshUserInformation()
95       },
96
97       err => this.notifier.error(err.message)
98     )
99   }
100
101   getDefaultVideoLanguageLabel () {
102     return this.i18n('No language')
103   }
104
105   getSelectedVideoLanguageLabel () {
106     return this.i18n('{{\'{0} languages selected')
107   }
108 }