mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import { Component, Input, OnInit } from '@angular/core'
|
|
import { Notifier, UserService } from '@app/core'
|
|
import { USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators'
|
|
import { FormReactive, FormValidatorService } from '@app/shared/shared-forms'
|
|
import { UserUpdate } from '@shared/models'
|
|
|
|
@Component({
|
|
selector: 'my-user-password',
|
|
templateUrl: './user-password.component.html',
|
|
styleUrls: [ './user-password.component.scss' ]
|
|
})
|
|
export class UserPasswordComponent extends FormReactive implements OnInit {
|
|
error: string
|
|
username: string
|
|
showPassword = false
|
|
|
|
@Input() userId: number
|
|
|
|
constructor (
|
|
protected formValidatorService: FormValidatorService,
|
|
private notifier: Notifier,
|
|
private userService: UserService
|
|
) {
|
|
super()
|
|
}
|
|
|
|
ngOnInit () {
|
|
this.buildForm({
|
|
password: USER_PASSWORD_VALIDATOR
|
|
})
|
|
}
|
|
|
|
formValidated () {
|
|
this.error = undefined
|
|
|
|
const userUpdate: UserUpdate = this.form.value
|
|
|
|
this.userService.updateUser(this.userId, userUpdate).subscribe(
|
|
() => {
|
|
this.notifier.success($localize`Password changed for user ${this.username}.`)
|
|
},
|
|
|
|
err => this.error = err.message
|
|
)
|
|
}
|
|
|
|
togglePasswordVisibility () {
|
|
this.showPassword = !this.showPassword
|
|
}
|
|
|
|
getFormButtonTitle () {
|
|
return $localize`Update user password`
|
|
}
|
|
}
|