aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-change-password
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-09-05 14:59:15 +0200
committerChocobozzz <me@florianbigard.com>2018-09-05 15:00:25 +0200
commitb0ee41df7d6de2f77d30e7bb47c245c0b33019d4 (patch)
treeeafdc2bc0a8facd7a3b779d3998eb696f0177473 /client/src/app/+my-account/my-account-settings/my-account-change-password
parent4c8e4e04d1b3f0f207e9155df393ceeb23dc2172 (diff)
downloadPeerTube-b0ee41df7d6de2f77d30e7bb47c245c0b33019d4.tar.gz
PeerTube-b0ee41df7d6de2f77d30e7bb47c245c0b33019d4.tar.zst
PeerTube-b0ee41df7d6de2f77d30e7bb47c245c0b33019d4.zip
Clean up change password validation
Diffstat (limited to 'client/src/app/+my-account/my-account-settings/my-account-change-password')
-rw-r--r--client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html8
-rw-r--r--client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts35
2 files changed, 16 insertions, 27 deletions
diff --git a/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html b/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html
index 913b570cb..ab6df52be 100644
--- a/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html
+++ b/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html
@@ -6,7 +6,6 @@
6 <input 6 <input
7 type="password" id="new-password" i18n-placeholder placeholder="New password" 7 type="password" id="new-password" i18n-placeholder placeholder="New password"
8 formControlName="new-password" [ngClass]="{ 'input-error': formErrors['new-password'] }" 8 formControlName="new-password" [ngClass]="{ 'input-error': formErrors['new-password'] }"
9 (change)="validateNewPassword()" (blur)="printAnError()"
10 > 9 >
11 <div *ngIf="formErrors['new-password']" class="form-error"> 10 <div *ngIf="formErrors['new-password']" class="form-error">
12 {{ formErrors['new-password'] }} 11 {{ formErrors['new-password'] }}
@@ -14,8 +13,11 @@
14 13
15 <input 14 <input
16 type="password" id="new-confirmed-password" i18n-placeholder placeholder="Confirm new password" 15 type="password" id="new-confirmed-password" i18n-placeholder placeholder="Confirm new password"
17 formControlName="new-confirmed-password" (change)="validateNewPassword()" (blur)="printAnError()" 16 formControlName="new-confirmed-password"
18 > 17 >
18 <div *ngIf="formErrors['new-confirmed-password']" class="form-error">
19 {{ formErrors['new-confirmed-password'] }}
20 </div>
19 21
20 <input type="submit" i18n-value value="Change password" [disabled]="!form.valid || unsendable"> 22 <input type="submit" i18n-value value="Change password" [disabled]="!form.valid">
21</form> 23</form>
diff --git a/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts b/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts
index 0707d8f9a..57a706b0f 100644
--- a/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts
+++ b/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts
@@ -4,6 +4,7 @@ import { FormReactive, UserService } from '../../../shared'
4import { I18n } from '@ngx-translate/i18n-polyfill' 4import { I18n } from '@ngx-translate/i18n-polyfill'
5import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' 5import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
6import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service' 6import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
7import { filter } from 'rxjs/operators'
7 8
8@Component({ 9@Component({
9 selector: 'my-account-change-password', 10 selector: 'my-account-change-password',
@@ -12,7 +13,6 @@ import { UserValidatorsService } from '@app/shared/forms/form-validators/user-va
12}) 13})
13export class MyAccountChangePasswordComponent extends FormReactive implements OnInit { 14export class MyAccountChangePasswordComponent extends FormReactive implements OnInit {
14 error: string = null 15 error: string = null
15 unsendable = true // default to true to not have to not the if in change password
16 16
17 constructor ( 17 constructor (
18 protected formValidatorService: FormValidatorService, 18 protected formValidatorService: FormValidatorService,
@@ -27,36 +27,23 @@ export class MyAccountChangePasswordComponent extends FormReactive implements On
27 ngOnInit () { 27 ngOnInit () {
28 this.buildForm({ 28 this.buildForm({
29 'new-password': this.userValidatorsService.USER_PASSWORD, 29 'new-password': this.userValidatorsService.USER_PASSWORD,
30 'new-confirmed-password': this.userValidatorsService.USER_PASSWORD 30 'new-confirmed-password': this.userValidatorsService.USER_CONFIRM_PASSWORD
31 }) 31 })
32 }
33 32
34 validateNewPassword () { 33 const confirmPasswordControl = this.form.get('new-confirmed-password')
35 if (this.form.value['new-password'] && this.form.value['new-confirmed-password']) {
36 if (this.form.value['new-password'] === this.form.value['new-confirmed-password']) {
37 this.error = null
38 this.unsendable = false
39 return
40 }
41 }
42 this.unsendable = true
43 }
44 34
45 printAnError () { 35 confirmPasswordControl.valueChanges
46 console.log(this.unsendable) 36 .pipe(filter(v => v !== this.form.value[ 'new-password' ]))
47 this.validateNewPassword() 37 .subscribe(() => confirmPasswordControl.setErrors({ matchPassword: true }))
48 if (this.unsendable) {
49 this.error = this.i18n('The new password and the confirmed password do not correspond.')
50 }
51 } 38 }
52 39
53 changePassword () { 40 changePassword () {
54 if (this.unsendable) { 41 this.userService.changePassword(this.form.value[ 'new-password' ]).subscribe(
55 return 42 () => {
56 } 43 this.notificationsService.success(this.i18n('Success'), this.i18n('Password updated.'))
57 44
58 this.userService.changePassword(this.form.value['new-password']).subscribe( 45 this.form.reset()
59 () => this.notificationsService.success(this.i18n('Success'), this.i18n('Password updated.')), 46 },
60 47
61 err => this.error = err.message 48 err => this.error = err.message
62 ) 49 )