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'
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>
20 protected formValidatorService: FormValidatorService,
21 private authService: AuthService,
22 private notifier: Notifier,
23 private userService: UserService,
24 private serverService: ServerService,
30 get availableThemes () {
31 return this.serverService.getConfig().theme.registered
40 this.userInformationLoaded
42 this.form.patchValue({
43 theme: this.user.theme
48 updateInterfaceSettings () {
49 const theme = this.form.value['theme']
51 const details: UserUpdateMe = {
55 this.userService.updateMyProfile(details).subscribe(
57 this.authService.refreshUserInformation()
59 this.notifier.success(this.i18n('Interface settings updated.'))
62 err => this.notifier.error(err.message)