f7055072f462e022e11126e91119b29eda9a797a
[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 { Subject } from 'rxjs'
9
10 @Component({
11   selector: 'my-account-interface-settings',
12   templateUrl: './my-account-interface-settings.component.html',
13   styleUrls: [ './my-account-interface-settings.component.scss' ]
14 })
15 export class MyAccountInterfaceSettingsComponent extends FormReactive implements OnInit {
16   @Input() user: User = null
17   @Input() userInformationLoaded: Subject<any>
18
19   constructor (
20     protected formValidatorService: FormValidatorService,
21     private authService: AuthService,
22     private notifier: Notifier,
23     private userService: UserService,
24     private serverService: ServerService,
25     private i18n: I18n
26   ) {
27     super()
28   }
29
30   get availableThemes () {
31     return this.serverService.getConfig().theme.registered
32   }
33
34   ngOnInit () {
35     this.buildForm({
36       theme: null
37     })
38
39     this.userInformationLoaded
40       .subscribe(() => {
41         this.form.patchValue({
42           theme: this.user.theme
43         })
44       })
45   }
46
47   updateInterfaceSettings () {
48     const theme = this.form.value['theme']
49
50     const details: UserUpdateMe = {
51       theme
52     }
53
54     this.userService.updateMyProfile(details).subscribe(
55       () => {
56         this.notifier.success(this.i18n('Interface settings updated.'))
57
58         window.location.reload()
59       },
60
61       err => this.notifier.error(err.message)
62     )
63   }
64 }