Skip to content
Snippets Groups Projects
Commit dfa65ec1 authored by Jérémie BRISON's avatar Jérémie BRISON
Browse files

fix(form): bug homePage blink on editForm

parent c68f9baf
No related branches found
No related tags found
4 merge requests!85Recette,!84Dev,!74Fix/claim with form,!72Feat/edit structure
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
[content]="'Il vous faudra de nouveau remplir le formulaire si vous quittez'" [content]="'Il vous faudra de nouveau remplir le formulaire si vous quittez'"
(closed)="hasRedirectionAccepted($event)" (closed)="hasRedirectionAccepted($event)"
></app-modal-confirmation> ></app-modal-confirmation>
<div class="content" [ngClass]="{ editMode: isEditMode }"> <div class="content" *ngIf="!isLoading" [ngClass]="{ editMode: isEditMode }">
<div class="returnBtnSection" *ngIf="isEditMode && currentPage != 0"> <div class="returnBtnSection" *ngIf="isEditMode && currentPage != 0">
<button class="btn-primary previous" (click)="goToSpecificPage(0, false)"> <button class="btn-primary previous" (click)="goToSpecificPage(0, false)">
<div class="rowBtn" fxLayout="row" fxLayoutAlign="center center"> <div class="rowBtn" fxLayout="row" fxLayoutAlign="center center">
......
...@@ -62,6 +62,7 @@ export class FormComponent implements OnInit { ...@@ -62,6 +62,7 @@ export class FormComponent implements OnInit {
public userAcceptSavedDate = false; public userAcceptSavedDate = false;
public showMenu = false; public showMenu = false;
public isEditMode = false; public isEditMode = false;
public isLoading = false;
constructor( constructor(
private structureService: StructureService, private structureService: StructureService,
...@@ -72,11 +73,13 @@ export class FormComponent implements OnInit { ...@@ -72,11 +73,13 @@ export class FormComponent implements OnInit {
) {} ) {}
async ngOnInit(): Promise<void> { async ngOnInit(): Promise<void> {
this.isLoading = true;
this.profileService.getProfile().then((user: User) => { this.profileService.getProfile().then((user: User) => {
this.profile = user; this.profile = user;
}); });
await this.setCategories(); await this.setCategories();
// Check if it's a new structure or edit structure // Check if it's a new structure or edit structure
this.isLoading = false;
if (history.state.data) { if (history.state.data) {
this.isEditMode = true; this.isEditMode = true;
this.initForm(new Structure(history.state.data)); this.initForm(new Structure(history.state.data));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment