Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 1x 3x | /* eslint-disable ish-custom-rules/no-intelligence-in-artifacts */ import { ChangeDetectionStrategy, Component, DestroyRef, OnInit, inject } from '@angular/core'; import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; import { AbstractControl, UntypedFormGroup } from '@angular/forms'; import { ActivatedRoute } from '@angular/router'; import { FormlyFieldConfig, FormlyFormOptions } from '@ngx-formly/core'; import { Observable, take, tap } from 'rxjs'; import { AccountFacade } from 'ish-core/facades/account.facade'; import { FeatureToggleService } from 'ish-core/feature-toggle.module'; import { Address } from 'ish-core/models/address/address.model'; import { HttpError } from 'ish-core/models/http-error/http-error.model'; import { FeatureEventService } from 'ish-core/utils/feature-event/feature-event.service'; import { whenTruthy } from 'ish-core/utils/operators'; import { markAsDirtyRecursive } from 'ish-shared/forms/utils/form-utils'; import { RegistrationConfigType, RegistrationFormConfigurationService, } from './services/registration-form-configuration/registration-form-configuration.service'; /** * The Registration Page Container renders the customer registration form using the {@link RegistrationFormComponent} * */ @Component({ templateUrl: './registration-page.component.html', changeDetection: ChangeDetectionStrategy.OnPush, }) export class RegistrationPageComponent implements OnInit { error$: Observable<HttpError>; constructor( private route: ActivatedRoute, private registrationFormConfiguration: RegistrationFormConfigurationService, private accountFacade: AccountFacade, private featureToggleService: FeatureToggleService, private featureEventService: FeatureEventService ) {} private submitted = false; loading$: Observable<boolean>; private registrationConfig: RegistrationConfigType; fields: FormlyFieldConfig[]; model: Record<string, unknown>; options: FormlyFormOptions; form = new UntypedFormGroup({}); private destroyRef = inject(DestroyRef); ngOnInit() { this.error$ = this.registrationFormConfiguration.getErrorSources().pipe( whenTruthy(), tap(() => this.clearCaptchaToken()) ); const snapshot = this.route.snapshot; this.model = this.registrationFormConfiguration.extractModel(snapshot); this.registrationConfig = this.registrationFormConfiguration.extractConfig(snapshot); this.options = this.registrationFormConfiguration.getOptions(this.registrationConfig, this.model); this.fields = this.registrationFormConfiguration.getFields(this.registrationConfig); this.loading$ = this.accountFacade.userLoading$; } cancelForm() { this.registrationFormConfiguration.cancelRegistrationForm(this.registrationConfig); } onCreate() { Iif (this.form.invalid) { markAsDirtyRecursive(this.form); this.submitted = true; return; } // keep-localization-pattern: ^customer\..*\.error$ if (this.featureToggleService.enabled('addressDoctor')) { const id = this.featureEventService.sendNotification('addressDoctor', 'check-address', { address: this.form.get('address').value, }); this.featureEventService .eventResultListener$('addressDoctor', 'check-address', id) .pipe(whenTruthy(), take(1), takeUntilDestroyed(this.destroyRef)) .subscribe(({ data }) => { Iif (data) { this.onCreateWithSuggestion(data); } }); } else { this.submitRegistrationForm(); } } private onCreateWithSuggestion(address: Address) { Object.keys(this.form.get('address').value).forEach(key => (this.form.get('address').get(key) as AbstractControl).setValue(address[key as keyof Address]) ); this.submitRegistrationForm(); } private submitRegistrationForm() { this.registrationFormConfiguration.submitRegistrationForm(this.form, this.registrationConfig, this.model); } /** return boolean to set submit button enabled/disabled */ get submitDisabled(): boolean { return this.form.invalid && this.submitted; } private clearCaptchaToken() { this.form.get('captcha')?.setValue(undefined); } } |