2019-03-13 16:48:38 +01:00
|
|
|
|
-# We can't use &. because the controller may not implement #nav_bar_profile
|
2019-03-28 11:14:01 +01:00
|
|
|
|
- nav_bar_profile = controller.try(:nav_bar_profile) || :guest
|
2019-03-13 16:48:38 +01:00
|
|
|
|
- dossier = controller.try(:dossier_for_help)
|
2019-03-28 11:14:01 +01:00
|
|
|
|
- procedure = controller.try(:procedure_for_help)
|
2018-02-12 16:26:56 +01:00
|
|
|
|
|
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
|
2019-03-13 17:24:18 +01:00
|
|
|
|
= link_to '', root_path_for_profile(nav_bar_profile), class: "header-logo", title: "Revenir à l’accueil"
|
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-09-05 14:48:42 +02:00
|
|
|
|
= active_link_to "Démarches", 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-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-27 14:47:02 +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
|
|
|
|
|
2018-07-17 11:40:19 +02:00
|
|
|
|
- if nav_bar_profile == :user && user_signed_in? && current_user.dossiers.count > 2
|
|
|
|
|
%li
|
|
|
|
|
.header-search
|
|
|
|
|
= form_tag recherche_dossiers_path, method: :post, class: "form" do
|
|
|
|
|
= text_field_tag :dossier_id, "", placeholder: "Numéro de dossier"
|
|
|
|
|
%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
|
2019-03-28 11:33:45 +01:00
|
|
|
|
= render partial: 'layouts/account_dropdown', locals: { nav_bar_profile: nav_bar_profile }
|
2017-06-26 14:01:54 +02:00
|
|
|
|
|
2017-06-22 14:56:59 +02:00
|
|
|
|
- elsif request.path != new_user_session_path
|
2018-12-24 15:07:18 +01:00
|
|
|
|
- if request.path == new_user_registration_path
|
|
|
|
|
%li
|
|
|
|
|
Vous avez déjà un compte ?
|
2017-06-22 14:56:59 +02:00
|
|
|
|
%li
|
2017-06-26 11:40:28 +02:00
|
|
|
|
= link_to "Connexion", new_user_session_path, class: "button secondary"
|
2019-03-11 17:27:05 +01:00
|
|
|
|
|
|
|
|
|
%li
|
|
|
|
|
.header-help
|
2019-03-28 11:14:01 +01:00
|
|
|
|
- if dossier.present? && nav_bar_profile == :user
|
2019-03-25 16:04:30 +01:00
|
|
|
|
= render partial: 'shared/help/help_dropdown_dossier', locals: { dossier: dossier }
|
|
|
|
|
|
2019-03-28 11:14:01 +01:00
|
|
|
|
- elsif procedure.present? && (nav_bar_profile == :user || nav_bar_profile == :guest)
|
|
|
|
|
= render partial: 'shared/help/help_dropdown_procedure', locals: { procedure: procedure }
|
|
|
|
|
|
2019-03-19 14:48:26 +01:00
|
|
|
|
- elsif nav_bar_profile == :gestionnaire
|
2019-03-25 16:04:30 +01:00
|
|
|
|
= render partial: 'shared/help/help_dropdown_gestionnaire'
|
|
|
|
|
|
2019-03-13 16:48:38 +01:00
|
|
|
|
- else
|
2019-03-25 16:04:30 +01:00
|
|
|
|
= render partial: 'shared/help/help_button'
|