84 lines
3.9 KiB
Text
84 lines
3.9 KiB
Text
- nav_bar_profile = controller.try(:nav_bar_profile)
|
||
|
||
.new-header{ class: current_page?(root_path) ? nil : "new-header-with-border" }
|
||
.header-inner-content
|
||
|
||
.flex.align-center
|
||
= link_to root_path_for_profile(nav_bar_profile), class: "header-logo" do
|
||
%img{ src: image_url("header/logo-ds.svg"), alt: "demarches-simplifiees.fr" }
|
||
|
||
- if nav_bar_profile == :gestionnaire && gestionnaire_signed_in?
|
||
- current_url = request.path_info
|
||
%ul.header-tabs
|
||
- if current_gestionnaire.visible_procedures.count > 0
|
||
%li
|
||
= link_to "Procédures", gestionnaire_procedures_path, class: (controller_name != 'avis') ? "tab-link active" : 'tab-link'
|
||
- if current_gestionnaire.avis.count > 0
|
||
%li
|
||
= link_to gestionnaire_avis_index_path, class: (controller_name == 'avis') ? "tab-link active" : 'tab-link' do
|
||
Avis
|
||
- avis_counter = current_gestionnaire.avis.without_answer.count
|
||
- if avis_counter > 0
|
||
%span.badge.warning= avis_counter
|
||
%li
|
||
.tab-link.contact-link
|
||
Contact
|
||
.contact-details
|
||
Vous avez besoin d’aide ? Contactez-nous :
|
||
%br
|
||
– par téléphone : 01 76 42 02 87
|
||
%br
|
||
– par email : <a href="mailto:contact@demarches-simplifiees.fr">contact@demarches-simplifiees.fr</a>
|
||
|
||
- if nav_bar_profile == :user
|
||
%ul.header-tabs
|
||
%li
|
||
= link_to "Mes dossiers", users_dossiers_path, class: 'tab-link'
|
||
|
||
%ul.header-right-content
|
||
- if nav_bar_profile == :gestionnaire && gestionnaire_signed_in?
|
||
%li
|
||
.header-search
|
||
= form_tag gestionnaire_recherche_path, method: :get, class: "form" do
|
||
= text_field_tag "q", "#{@search_terms if @search_terms.present?}", placeholder: "Rechercher un dossier"
|
||
%button{ title: "Rechercher" }
|
||
= image_tag "icons/search-blue.svg"
|
||
|
||
- if gestionnaire_signed_in? || user_signed_in?
|
||
%li
|
||
.header-menu-opener
|
||
= image_tag "icons/account-circle.svg", onclick: "javascript:DS.toggleHeaderMenu(event);", title: "Mon compte"
|
||
%ul.header-menu
|
||
%li
|
||
.menu-item{ title: current_email }
|
||
= current_email
|
||
- if administration_signed_in?
|
||
%li
|
||
= link_to manager_root_path, class: "menu-item menu-link" do
|
||
= image_tag "icons/super-admin.svg"
|
||
Passer en super-admin
|
||
- if SwitchDeviseProfileService.new(warden).multiple_devise_profile_connect?
|
||
- if user_signed_in? && nav_bar_profile != :user
|
||
%li
|
||
= link_to users_dossiers_path, class: "menu-item menu-link" do
|
||
= image_tag "icons/switch-profile.svg"
|
||
Passer en usager
|
||
- if gestionnaire_signed_in? && nav_bar_profile != :gestionnaire
|
||
%li
|
||
= link_to gestionnaire_procedures_path, class: "menu-item menu-link" do
|
||
= image_tag "icons/switch-profile.svg"
|
||
Passer en accompagnateur
|
||
- if administrateur_signed_in? && nav_bar_profile != :administrateur
|
||
%li
|
||
= link_to admin_procedures_path, class: "menu-item menu-link" do
|
||
= image_tag "icons/switch-profile.svg"
|
||
Passer en administrateur
|
||
|
||
%li
|
||
= link_to destroy_user_session_path, method: :delete, class: "menu-item menu-link" do
|
||
= image_tag "icons/sign-out.svg"
|
||
Se déconnecter
|
||
|
||
- elsif request.path != new_user_session_path
|
||
%li
|
||
= link_to "Connexion", new_user_session_path, class: "button secondary"
|