From 293bb959a194ccda424e51e4e09ae03ac3040d66 Mon Sep 17 00:00:00 2001 From: Alice <alice.poggioli@hotmail.fr> Date: Tue, 15 Oct 2019 09:12:03 +0200 Subject: [PATCH] Fix the bug on the pircture refresh. --- .../entrepreneur/components/header.pug | 2 +- src/includes/mentor/components/header.pug | 2 +- src/scripts/coopstarter.js | 27 ++++++++++++------- 3 files changed, 19 insertions(+), 12 deletions(-) diff --git a/src/includes/entrepreneur/components/header.pug b/src/includes/entrepreneur/components/header.pug index 2e707496..5d66d6b9 100644 --- a/src/includes/entrepreneur/components/header.pug +++ b/src/includes/entrepreneur/components/header.pug @@ -19,7 +19,7 @@ //- input.ico_droite.ico_search .dropdownWrapper - sib-display#user-account-picture.dropdownLabel( + sib-display#entrepreneur-account-picture.dropdownLabel( bind-user fields='account.picture', widget-account.picture='cs-account-picture' diff --git a/src/includes/mentor/components/header.pug b/src/includes/mentor/components/header.pug index 0f09c647..7ea9889c 100644 --- a/src/includes/mentor/components/header.pug +++ b/src/includes/mentor/components/header.pug @@ -19,7 +19,7 @@ //- input.ico_droite.ico_search .dropdownWrapper - sib-display#user-account-picture.dropdownLabel( + sib-display#mentor-account-picture.dropdownLabel( bind-user fields='account.picture', widget-account.picture='cs-account-picture' diff --git a/src/scripts/coopstarter.js b/src/scripts/coopstarter.js index f0c921e4..3514385e 100644 --- a/src/scripts/coopstarter.js +++ b/src/scripts/coopstarter.js @@ -513,20 +513,24 @@ jQuery(document).ready(function($) { refreshList("improvement-dialog-form", "pending-resources"); refreshList("entrepreneur_profile_creation", "entrepreneur_info"); refreshList("entrepreneur_profile_creation", "entrepreneur_contact"); - refreshList("entrepreneur_profile_creation", "user-account-picture"); + refreshList("entrepreneur_profile_creation", "entrepreneur-account-picture"); refreshList("mentor_profile_creation", "mentor_info"); refreshList("mentor_profile_creation", "mentor_complementary"); refreshList("mentor_profile_creation", "mentor_contact"); - refreshList("mentor_profile_creation", "user-account-picture"); + refreshList("mentor_profile_creation", "mentor-account-picture"); refreshList("entrepreneur_profile_edition", "entrepreneur_info"); refreshList("entrepreneur_profile_edition", "entrepreneur_contact"); - refreshList("entrepreneur_profile_edition", "user-account-picture"); + refreshList("entrepreneur_profile_edition", "entrepreneur-account-picture"); refreshList("mentor_profile_edition", "mentor_info"); refreshList("mentor_profile_edition", "mentor_complementary"); refreshList("mentor_profile_edition", "mentor_contact"); - refreshList("mentor_profile_edition", "user-account-picture"); + refreshList("mentor_profile_edition", "mentor-account-picture"); refreshList("change_status_request", "request-list"); + addProperFilterToSearchComponents("entrepreneur-resource-list"); + addProperFilterToSearchComponents("mentor-database"); + addProperFilterToSearchComponents("public-resource-list"); + var header_dropdown = $(".dropdownWrapper"), drop_choices = header_dropdown.find(".dropdownLabel"); @@ -611,11 +615,14 @@ jQuery(document).ready(function($) { //Correct the native default of pagination refreshPagination(); - }, 3000); - - //In the entrepreneur dashboard, we set data from the display form to the hidden ones. - addProperFilterToSearchComponents("entrepreneur-resource-list"); - addProperFilterToSearchComponents("mentor-database"); - addProperFilterToSearchComponents("public-resource-list"); + var forms = baseElement.querySelectorAll(".resource_by_step"); + forms.forEach(form => { + form.addEventListener("populate", e => { + let tab = document.getElementById("type1"); + selectHiddenManagementForType(tab, form); + }) + }) + + }, 3000); }); -- GitLab