1 import { Component, Input, OnInit } from '@angular/core'
2 import { Notifier, ServerService } from '@app/core'
3 import { ServerConfig, 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'
11 selector: 'my-account-interface-settings',
12 templateUrl: './my-account-interface-settings.component.html',
13 styleUrls: [ './my-account-interface-settings.component.scss' ]
15 export class MyAccountInterfaceSettingsComponent extends FormReactive implements OnInit {
16 @Input() user: User = null
17 @Input() userInformationLoaded: Subject<any>
19 private serverConfig: ServerConfig
22 protected formValidatorService: FormValidatorService,
23 private authService: AuthService,
24 private notifier: Notifier,
25 private userService: UserService,
26 private serverService: ServerService,
32 get availableThemes () {
33 return this.serverConfig.theme.registered
38 this.serverConfig = this.serverService.getTmpConfig()
39 this.serverService.getConfig()
40 .subscribe(config => this.serverConfig = config)
46 this.userInformationLoaded
48 this.form.patchValue({
49 theme: this.user.theme
54 updateInterfaceSettings () {
55 const theme = this.form.value['theme']
57 const details: UserUpdateMe = {
61 this.userService.updateMyProfile(details).subscribe(
63 this.authService.refreshUserInformation()
65 this.notifier.success(this.i18n('Interface settings updated.'))
68 err => this.notifier.error(err.message)