]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+admin/overview/users/user-edit/user-password.component.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / overview / users / user-edit / user-password.component.ts
... / ...
CommitLineData
1import { Component, Input, OnInit } from '@angular/core'
2import { Notifier } from '@app/core'
3import { USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators'
4import { FormReactive, FormReactiveService } from '@app/shared/shared-forms'
5import { UserAdminService } from '@app/shared/shared-users'
6import { UserUpdate } from '@shared/models'
7
8@Component({
9 selector: 'my-user-password',
10 templateUrl: './user-password.component.html',
11 styleUrls: [ './user-password.component.scss' ]
12})
13export class UserPasswordComponent extends FormReactive implements OnInit {
14 @Input() userId: number
15 @Input() username: string
16
17 error: string
18 showPassword = false
19
20 constructor (
21 protected formReactiveService: FormReactiveService,
22 private notifier: Notifier,
23 private userAdminService: UserAdminService
24 ) {
25 super()
26 }
27
28 ngOnInit () {
29 this.buildForm({
30 password: USER_PASSWORD_VALIDATOR
31 })
32 }
33
34 formValidated () {
35 this.error = undefined
36
37 const userUpdate: UserUpdate = this.form.value
38
39 this.userAdminService.updateUser(this.userId, userUpdate)
40 .subscribe({
41 next: () => this.notifier.success($localize`Password changed for user ${this.username}.`),
42
43 error: err => {
44 this.error = err.message
45 }
46 })
47 }
48
49 togglePasswordVisibility () {
50 this.showPassword = !this.showPassword
51 }
52
53 getFormButtonTitle () {
54 return $localize`Update user password`
55 }
56}