From 74daf9003cc4c3acf9ff78cc8915aa07e0a308f4 Mon Sep 17 00:00:00 2001 From: Jeremie BRISON <ext.sopra.jbrison@grandlyon.com> Date: Thu, 4 Feb 2021 09:13:23 +0100 Subject: [PATCH] fix(form): fix and clean code --- src/app/form/form.component.ts | 48 +++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/src/app/form/form.component.ts b/src/app/form/form.component.ts index 8eac73449..462aff5f3 100644 --- a/src/app/form/form.component.ts +++ b/src/app/form/form.component.ts @@ -25,44 +25,47 @@ export class FormComponent implements OnInit { @Input() public idStructure?: string; @Input() public isEditMode: boolean = true; public profile: User; - public structureForm: FormGroup; - public createdStructure: Structure; + // Form var + public structureForm: FormGroup; + public accountForm: FormGroup; + public hoursForm: FormGroup; public labelsQualifications: Category; public publics: Category; public accessModality: Category; public publicsAccompaniment: Category; - public equipmentsAndServices: { module: Module; openned: boolean }[] = []; public proceduresAccompaniment: Category; + public equipmentsAndServices: { module: Module; openned: boolean }[] = []; public trainingCategories: { category: Category; openned: boolean }[] = []; - public structureId: string; - - //New var form + // Page and progress var public currentPage = 0; public progressStatus = 0; public nbPagesForm = 25; - public accountForm: FormGroup; public isPageValid: boolean; public pagesValidation = []; - public isShowConfirmPassword = false; - public isShowPassword = false; - public hoursForm: FormGroup; - public userAcceptSavedDate = false; - public showMenu = false; - //collapse var + // Collapse var public showWebsite: boolean; public showSocialNetwork: boolean; public showPublicsAccompaniment: boolean; public showProceduresAccompaniment: boolean; + // ModalExit var + public showConfirmationModal = false; + private resolve: Function; + + // Condition form + public isShowConfirmPassword = false; + public isShowPassword = false; + public userAcceptSavedDate = false; + public showMenu = false; + constructor( private structureService: StructureService, private searchService: SearchService, private profileService: ProfileService, - private router: Router, private authService: AuthService ) {} @@ -70,14 +73,20 @@ export class FormComponent implements OnInit { this.profileService.getProfile().then((user: User) => { this.profile = user; }); + + // Check if it's a new structure or edit structure if (this.idStructure) { this.structureService.getStructure(this.idStructure).subscribe((structure) => { this.initForm(structure); - this.structureId = structure._id; + this.idStructure = structure._id; }); } else { this.initForm(new Structure()); } + this.setCategories(); + } + + private setCategories(): void { this.searchService.getCategoriesAccompaniment().subscribe((categories: Category[]) => { this.proceduresAccompaniment = categories[0]; }); @@ -109,7 +118,6 @@ export class FormComponent implements OnInit { } }); }); - this.searchService.getCategoriesTraining().subscribe((categories: Category[]) => { categories.forEach((categ) => { this.trainingCategories.push({ category: categ, openned: false }); @@ -149,12 +157,12 @@ export class FormComponent implements OnInit { }), contactMail: new FormControl(structure.contactMail, [ Validators.required, - Validators.pattern('[a-z0-9.-]+@[a-z0-9.-]+[.][a-z]{2,3}'), + Validators.pattern('[a-z0-9.-]+@[a-z0-9.-]+[.][a-z]{2,3}'), //NOSONAR ]), contactPhone: new FormControl(structure.contactPhone, [ Validators.required, - Validators.pattern('([0-9]{2} ){4}[0-9]{2}'), - ]), //NOSONAR + Validators.pattern('([0-9]{2} ){4}[0-9]{2}'), //NOSONAR + ]), website: new FormControl(structure.website, [Validators.pattern('(www[.])[a-z0-9.-]*[.][a-z]{2,3}')]), //NOSONAR facebook: new FormControl(structure.facebook, Validators.pattern('(facebook.com/[a-z0-9A-Z.-]{1,})')), //NOSONAR twitter: new FormControl(structure.twitter, Validators.pattern('(twitter.com/[a-z0-9A-Z.-]{1,})')), //NOSONAR @@ -556,8 +564,6 @@ export class FormComponent implements OnInit { return new Promise((resolve) => this.showModal(resolve)); } } - public showConfirmationModal = false; - private resolve: Function; private showModal(resolve: Function): void { this.showConfirmationModal = true; -- GitLab