2018-05-30 18:45:46 +02:00
|
|
|
|
/ We can't use &. because the controller may not implement #nav_bar_profile
|
2018-02-12 16:26:56 +01:00
|
|
|
|
- nav_bar_profile = controller.try(:nav_bar_profile)
|
|
|
|
|
|
2017-06-22 14:56:59 +02:00
|
|
|
|
.new-header{ class: current_page?(root_path) ? nil : "new-header-with-border" }
|
2017-04-04 14:37:16 +02:00
|
|
|
|
.header-inner-content
|
2017-07-03 16:01:44 +02:00
|
|
|
|
|
|
|
|
|
.flex.align-center
|
2018-03-08 13:54:26 +01:00
|
|
|
|
= link_to root_path_for_profile(nav_bar_profile), class: "header-logo" do
|
2018-03-08 15:24:22 +01:00
|
|
|
|
%img{ src: image_url("header/logo-ds.svg"), alt: "demarches-simplifiees.fr" }
|
2017-07-03 16:01:44 +02:00
|
|
|
|
|
2018-02-12 16:26:56 +01:00
|
|
|
|
- if nav_bar_profile == :gestionnaire && gestionnaire_signed_in?
|
2017-09-06 11:13:59 +02:00
|
|
|
|
- current_url = request.path_info
|
2017-08-28 10:46:27 +02:00
|
|
|
|
%ul.header-tabs
|
2018-02-19 19:25:34 +01:00
|
|
|
|
- if current_gestionnaire.visible_procedures.count > 0
|
2017-09-06 11:13:59 +02:00
|
|
|
|
%li
|
2018-06-20 16:02:41 +02:00
|
|
|
|
= active_link_to "Procédures", gestionnaire_procedures_path, active: :inclusive, class: 'tab-link'
|
2017-09-06 11:13:59 +02:00
|
|
|
|
- if current_gestionnaire.avis.count > 0
|
|
|
|
|
%li
|
2018-06-20 16:02:41 +02:00
|
|
|
|
= active_link_to gestionnaire_avis_index_path, active: :inclusive, class: 'tab-link' do
|
2017-09-20 15:49:49 +02:00
|
|
|
|
Avis
|
|
|
|
|
- avis_counter = current_gestionnaire.avis.without_answer.count
|
|
|
|
|
- if avis_counter > 0
|
|
|
|
|
%span.badge.warning= avis_counter
|
2017-11-21 16:26:12 +01:00
|
|
|
|
%li
|
|
|
|
|
.tab-link.contact-link
|
|
|
|
|
Contact
|
|
|
|
|
.contact-details
|
|
|
|
|
Vous avez besoin d’aide ? Contactez-nous :
|
|
|
|
|
%br
|
2018-06-25 11:12:42 +02:00
|
|
|
|
– par téléphone :
|
|
|
|
|
= link_to CONTACT_PHONE, "tel:#{CONTACT_PHONE}"
|
2017-11-21 16:26:12 +01:00
|
|
|
|
%br
|
2018-06-25 11:26:37 +02:00
|
|
|
|
– par email :
|
|
|
|
|
= link_to CONTACT_EMAIL, "mailto:#{CONTACT_EMAIL}"
|
2017-04-04 14:37:16 +02:00
|
|
|
|
|
2018-02-26 16:54:10 +01:00
|
|
|
|
- if nav_bar_profile == :user
|
|
|
|
|
%ul.header-tabs
|
|
|
|
|
%li
|
2018-06-25 14:47:13 +02:00
|
|
|
|
= active_link_to "Dossiers", dossiers_path, active: :inclusive, class: 'tab-link'
|
2018-02-26 16:54:10 +01:00
|
|
|
|
|
2017-06-22 14:56:59 +02:00
|
|
|
|
%ul.header-right-content
|
2018-02-12 16:26:56 +01:00
|
|
|
|
- if nav_bar_profile == :gestionnaire && gestionnaire_signed_in?
|
2017-06-22 14:56:59 +02:00
|
|
|
|
%li
|
|
|
|
|
.header-search
|
2018-02-21 13:42:12 +01:00
|
|
|
|
= form_tag gestionnaire_recherche_path, method: :get, class: "form" do
|
2018-01-11 19:04:39 +01:00
|
|
|
|
= text_field_tag "q", "#{@search_terms if @search_terms.present?}", placeholder: "Rechercher un dossier"
|
2017-06-22 14:56:59 +02:00
|
|
|
|
%button{ title: "Rechercher" }
|
|
|
|
|
= image_tag "icons/search-blue.svg"
|
2018-02-12 16:26:56 +01:00
|
|
|
|
|
|
|
|
|
- if gestionnaire_signed_in? || user_signed_in?
|
2017-06-22 16:45:57 +02:00
|
|
|
|
%li
|
|
|
|
|
.header-menu-opener
|
2018-02-28 16:07:52 +01:00
|
|
|
|
= image_tag "icons/account-circle.svg", onclick: "javascript:DS.toggleHeaderMenu(event);", title: "Mon compte"
|
2017-06-22 16:45:57 +02:00
|
|
|
|
%ul.header-menu
|
|
|
|
|
%li
|
|
|
|
|
.menu-item{ title: current_email }
|
|
|
|
|
= current_email
|
2017-09-05 16:31:32 +02:00
|
|
|
|
- if administration_signed_in?
|
|
|
|
|
%li
|
2018-01-16 17:09:25 +01:00
|
|
|
|
= link_to manager_root_path, class: "menu-item menu-link" do
|
2017-09-05 16:31:32 +02:00
|
|
|
|
= image_tag "icons/super-admin.svg"
|
|
|
|
|
Passer en super-admin
|
2017-06-26 14:01:54 +02:00
|
|
|
|
- if SwitchDeviseProfileService.new(warden).multiple_devise_profile_connect?
|
2018-04-09 15:13:37 +02:00
|
|
|
|
- if user_signed_in? && nav_bar_profile != :user
|
2017-06-26 14:01:54 +02:00
|
|
|
|
%li
|
|
|
|
|
= link_to users_dossiers_path, class: "menu-item menu-link" do
|
|
|
|
|
= image_tag "icons/switch-profile.svg"
|
|
|
|
|
Passer en usager
|
2018-02-21 15:00:33 +01:00
|
|
|
|
- if gestionnaire_signed_in? && nav_bar_profile != :gestionnaire
|
2017-06-26 14:01:54 +02:00
|
|
|
|
%li
|
2018-02-21 15:06:21 +01:00
|
|
|
|
= link_to gestionnaire_procedures_path, class: "menu-item menu-link" do
|
2017-06-26 14:01:54 +02:00
|
|
|
|
= image_tag "icons/switch-profile.svg"
|
|
|
|
|
Passer en accompagnateur
|
2018-02-21 15:00:33 +01:00
|
|
|
|
- if administrateur_signed_in? && nav_bar_profile != :administrateur
|
2017-06-26 14:01:54 +02:00
|
|
|
|
%li
|
|
|
|
|
= link_to admin_procedures_path, class: "menu-item menu-link" do
|
|
|
|
|
= image_tag "icons/switch-profile.svg"
|
|
|
|
|
Passer en administrateur
|
|
|
|
|
|
2017-06-22 16:45:57 +02:00
|
|
|
|
%li
|
|
|
|
|
= link_to destroy_user_session_path, method: :delete, class: "menu-item menu-link" do
|
|
|
|
|
= image_tag "icons/sign-out.svg"
|
|
|
|
|
Se déconnecter
|
2017-06-22 14:56:59 +02:00
|
|
|
|
|
|
|
|
|
- elsif request.path != new_user_session_path
|
|
|
|
|
%li
|
2017-06-26 11:40:28 +02:00
|
|
|
|
= link_to "Connexion", new_user_session_path, class: "button secondary"
|