aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/+register/steps/register-step-user.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+signup/+register/steps/register-step-user.component.ts')
-rw-r--r--client/src/app/+signup/+register/steps/register-step-user.component.ts63
1 files changed, 63 insertions, 0 deletions
diff --git a/client/src/app/+signup/+register/steps/register-step-user.component.ts b/client/src/app/+signup/+register/steps/register-step-user.component.ts
new file mode 100644
index 000000000..b89e38a28
--- /dev/null
+++ b/client/src/app/+signup/+register/steps/register-step-user.component.ts
@@ -0,0 +1,63 @@
1import { concat, of } from 'rxjs'
2import { pairwise } from 'rxjs/operators'
3import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
4import { FormGroup } from '@angular/forms'
5import {
6 USER_DISPLAY_NAME_REQUIRED_VALIDATOR,
7 USER_EMAIL_VALIDATOR,
8 USER_PASSWORD_VALIDATOR,
9 USER_USERNAME_VALIDATOR
10} from '@app/shared/form-validators/user-validators'
11import { FormReactive, FormValidatorService } from '@app/shared/shared-forms'
12import { UserSignupService } from '@app/shared/shared-users'
13
14@Component({
15 selector: 'my-register-step-user',
16 templateUrl: './register-step-user.component.html',
17 styleUrls: [ './step.component.scss' ]
18})
19export class RegisterStepUserComponent extends FormReactive implements OnInit {
20 @Input() videoUploadDisabled = false
21 @Input() requiresEmailVerification = false
22
23 @Output() formBuilt = new EventEmitter<FormGroup>()
24
25 constructor (
26 protected formValidatorService: FormValidatorService,
27 private userSignupService: UserSignupService
28 ) {
29 super()
30 }
31
32 get instanceHost () {
33 return window.location.host
34 }
35
36 ngOnInit () {
37 this.buildForm({
38 displayName: USER_DISPLAY_NAME_REQUIRED_VALIDATOR,
39 username: USER_USERNAME_VALIDATOR,
40 password: USER_PASSWORD_VALIDATOR,
41 email: USER_EMAIL_VALIDATOR
42 })
43
44 setTimeout(() => this.formBuilt.emit(this.form))
45
46 concat(
47 of(''),
48 this.form.get('displayName').valueChanges
49 ).pipe(pairwise())
50 .subscribe(([ oldValue, newValue ]) => this.onDisplayNameChange(oldValue, newValue))
51 }
52
53 getMinPasswordLengthMessage () {
54 return USER_PASSWORD_VALIDATOR.MESSAGES.minlength
55 }
56
57 private onDisplayNameChange (oldDisplayName: string, newDisplayName: string) {
58 const username = this.form.value['username'] || ''
59
60 const newUsername = this.userSignupService.getNewUsername(oldDisplayName, newDisplayName, username)
61 this.form.patchValue({ username: newUsername })
62 }
63}