PeerTube/client/src/app/+reset-password/reset-password.component.ts
Chocobozzz 338633ce72
Remove barrels
They can prevent tree shaking
2024-03-05 10:52:32 +01:00

64 lines
2.2 KiB
TypeScript

import { Component, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { Notifier, UserService } from '@app/core'
import { RESET_PASSWORD_CONFIRM_VALIDATOR } from '@app/shared/form-validators/reset-password-validators'
import { USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators'
import { FormReactive } from '@app/shared/shared-forms/form-reactive'
import { FormReactiveService } from '@app/shared/shared-forms/form-reactive.service'
import { InputTextComponent } from '../shared/shared-forms/input-text.component'
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
@Component({
templateUrl: './reset-password.component.html',
styleUrls: [ './reset-password.component.scss' ],
standalone: true,
imports: [ FormsModule, ReactiveFormsModule, InputTextComponent ]
})
export class ResetPasswordComponent extends FormReactive implements OnInit {
private userId: number
private verificationString: string
constructor (
protected formReactiveService: FormReactiveService,
private userService: UserService,
private notifier: Notifier,
private router: Router,
private route: ActivatedRoute
) {
super()
}
ngOnInit () {
this.buildForm({
'password': USER_PASSWORD_VALIDATOR,
'password-confirm': RESET_PASSWORD_CONFIRM_VALIDATOR
})
this.userId = this.route.snapshot.queryParams['userId']
this.verificationString = this.route.snapshot.queryParams['verificationString']
if (!this.userId || !this.verificationString) {
this.notifier.error($localize`Unable to find user id or verification string.`)
this.router.navigate([ '/' ])
}
}
resetPassword () {
this.userService.resetPassword(this.userId, this.verificationString, this.form.value.password)
.subscribe({
next: () => {
this.notifier.success($localize`Your password has been successfully reset!`)
this.router.navigate([ '/login' ])
},
error: err => this.notifier.error(err.message)
})
}
isConfirmedPasswordValid () {
const values = this.form.value
return values.password === values['password-confirm']
}
}