]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/users/user-edit/user-password.component.ts
provide specific engine boundaries for nodejs and yarn
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / users / user-edit / user-password.component.ts
CommitLineData
b426edd4 1import { Component, Input, OnInit } from '@angular/core'
328c78bc 2import { ActivatedRoute, Router } from '@angular/router'
328c78bc 3import { UserService } from '@app/shared/users/user.service'
b426edd4 4import { Notifier } from '../../../core'
328c78bc
RK
5import { User, UserUpdate } from '../../../../../../shared'
6import { I18n } from '@ngx-translate/i18n-polyfill'
7import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
8import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
328c78bc
RK
9import { FormReactive } from '../../../shared'
10
11@Component({
12 selector: 'my-user-password',
13 templateUrl: './user-password.component.html',
14 styleUrls: [ './user-password.component.scss' ]
15})
b426edd4 16export class UserPasswordComponent extends FormReactive implements OnInit {
328c78bc 17 error: string
328c78bc
RK
18 username: string
19 showPassword = false
20
2c2baef6
RK
21 @Input() userId: number
22
328c78bc
RK
23 constructor (
24 protected formValidatorService: FormValidatorService,
328c78bc 25 private userValidatorsService: UserValidatorsService,
b426edd4 26 private notifier: Notifier,
328c78bc
RK
27 private userService: UserService,
28 private i18n: I18n
29 ) {
30 super()
31 }
32
33 ngOnInit () {
34 this.buildForm({
35 password: this.userValidatorsService.USER_PASSWORD
36 })
328c78bc
RK
37 }
38
328c78bc
RK
39 formValidated () {
40 this.error = undefined
41
42 const userUpdate: UserUpdate = this.form.value
43
44 this.userService.updateUser(this.userId, userUpdate).subscribe(
45 () => {
b426edd4 46 this.notifier.success(
328c78bc
RK
47 this.i18n('Password changed for user {{username}}.', { username: this.username })
48 )
49 },
50
51 err => this.error = err.message
52 )
53 }
54
328c78bc
RK
55 togglePasswordVisibility () {
56 this.showPassword = !this.showPassword
57 }
58
59 getFormButtonTitle () {
60 return this.i18n('Update user password')
61 }
328c78bc 62}