aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/account/account-settings/account-details/account-details.component.ts
blob: d835c53e502440b5b333bd84be17069c984bb596 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                        
                                                       
                                                             


                                                                 


                                 

                                                   


                                                                             
                            
 
                      
 


                         
 
               

                                     


                                                       
           

   
                
                                        

                                            
 
                                                                       

   

                    

   

                                                      
                                   
                 
     
 
                     
                                                        
             
                                                                            
 
                                                 

        
                                     
     

   
import { Component, Input, OnInit } from '@angular/core'
import { FormBuilder, FormGroup } from '@angular/forms'
import { NotificationsService } from 'angular2-notifications'
import { UserUpdateMe } from '../../../../../../shared'
import { AuthService } from '../../../core'
import { FormReactive, User, UserService } from '../../../shared'

@Component({
  selector: 'my-account-details',
  templateUrl: './account-details.component.html',
  styleUrls: [ './account-details.component.scss' ]
})

export class AccountDetailsComponent extends FormReactive implements OnInit {
  @Input() user: User = null

  error: string = null

  form: FormGroup
  formErrors = {}
  validationMessages = {}

  constructor (
    private authService: AuthService,
    private formBuilder: FormBuilder,
    private notificationsService: NotificationsService,
    private userService: UserService
  ) {
    super()
  }

  buildForm () {
    this.form = this.formBuilder.group({
      displayNSFW: [ this.user.displayNSFW ]
    })

    this.form.valueChanges.subscribe(data => this.onValueChanged(data))
  }

  ngOnInit () {
    this.buildForm()
  }

  updateDetails () {
    const displayNSFW = this.form.value['displayNSFW']
    const details: UserUpdateMe = {
      displayNSFW
    }

    this.error = null
    this.userService.updateMyDetails(details).subscribe(
      () => {
        this.notificationsService.success('Success', 'Information updated.')

        this.authService.refreshUserInformation()
      },

      err => this.error = err.message
    )
  }
}