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
|
|
|
|
2019-11-25 17:16:48 +01:00
|
|
|
%header.new-header{ class: current_page?(root_path) ? nil : "new-header-with-border", role: 'banner' }
|
2017-04-04 14:37:16 +02:00
|
|
|
.header-inner-content
|
2017-07-03 16:01:44 +02:00
|
|
|
|
2020-05-14 14:50:14 +02:00
|
|
|
.flex.align-center.justify-center
|
2019-08-30 17:12:29 +02:00
|
|
|
- if params[:controller] == 'users/commencer'
|
|
|
|
= link_to 'Revenir en arrière', url_for(:back), class: "button", title: "Revenir sur le site de mon administration"
|
|
|
|
- else
|
2020-06-03 14:55:36 +02:00
|
|
|
- root_profile_link, root_profile_libelle = root_path_info_for_profile(nav_bar_profile)
|
|
|
|
= link_to root_profile_link, class: 'header-logo justify-center', title: root_profile_libelle do
|
2020-11-21 00:15:31 +01:00
|
|
|
= image_tag HEADER_LOGO_SRC, alt: HEADER_LOGO_ALT, width: HEADER_LOGO_WIDTH, height: HEADER_LOGO_HEIGHT, loading: 'lazy'
|
2020-07-22 10:32:20 +02:00
|
|
|
%span.big.site-title>
|
|
|
|
= APPLICATION_NAME
|
|
|
|
%span.small.site-title>
|
|
|
|
= APPLICATION_SHORTNAME
|
2017-07-03 16:01:44 +02:00
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
- if nav_bar_profile == :instructeur && instructeur_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
|
2021-04-23 14:56:17 +02:00
|
|
|
- if current_instructeur.procedures.any?
|
2017-09-06 11:13:59 +02:00
|
|
|
%li
|
2020-07-22 10:04:32 +02:00
|
|
|
= active_link_to "Démarches", instructeur_procedures_path, active: ['dossiers','procedures'].include?(controller_name), class: 'tab-link'
|
2021-04-23 14:56:17 +02:00
|
|
|
- if current_instructeur.user.expert && current_expert.avis_summary[:total] > 0
|
2021-03-26 20:25:14 +01:00
|
|
|
%li
|
|
|
|
= active_link_to expert_all_avis_path, active: controller_name == 'avis', class: 'tab-link' do
|
|
|
|
Avis
|
2021-04-23 14:56:17 +02:00
|
|
|
- if current_expert.avis_summary[:unanswered] > 0
|
|
|
|
%span.badge.warning= current_expert.avis_summary[:unanswered]
|
2021-03-26 20:25:14 +01:00
|
|
|
|
2021-03-22 10:07:51 +01:00
|
|
|
- if nav_bar_profile == :expert && expert_signed_in?
|
2021-03-26 20:25:14 +01:00
|
|
|
%ul.header-tabs
|
2021-04-23 14:56:17 +02:00
|
|
|
- if current_expert.user.instructeur && current_instructeur.procedures.any?
|
2021-03-26 20:25:14 +01:00
|
|
|
%li
|
|
|
|
= active_link_to "Démarches", instructeur_procedures_path, active: ['dossiers','procedures'].include?(controller_name), class: 'tab-link'
|
|
|
|
|
2021-04-23 14:56:17 +02:00
|
|
|
- if current_expert.avis_summary[:total] > 0
|
2017-09-06 11:13:59 +02:00
|
|
|
%li
|
2021-03-22 10:07:51 +01:00
|
|
|
= active_link_to expert_all_avis_path, active: controller_name == 'avis', class: 'tab-link' do
|
2017-09-20 15:49:49 +02:00
|
|
|
Avis
|
2021-04-23 14:56:17 +02:00
|
|
|
- if current_expert.avis_summary[:unanswered] > 0
|
|
|
|
%span.badge.warning= current_expert.avis_summary[:unanswered]
|
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
|
2019-08-06 11:02:54 +02:00
|
|
|
- if nav_bar_profile == :instructeur && instructeur_signed_in?
|
2017-06-22 14:56:59 +02:00
|
|
|
%li
|
2020-04-03 15:09:57 +02:00
|
|
|
= render partial: 'layouts/search_dossiers_form', locals: { search_endpoint: instructeur_recherche_path }
|
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
|
2020-04-03 15:09:57 +02:00
|
|
|
= render partial: 'layouts/search_dossiers_form', locals: { search_endpoint: recherche_dossiers_path }
|
2018-07-17 11:40:19 +02:00
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
- if instructeur_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
|
2019-11-19 09:06:55 +01:00
|
|
|
- if dossier.present? && nav_bar_profile == :user
|
|
|
|
= render partial: 'shared/help/help_dropdown_dossier', locals: { dossier: dossier }
|
2019-03-25 16:04:30 +01:00
|
|
|
|
2019-11-19 09:06:55 +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-28 11:14:01 +01:00
|
|
|
|
2019-11-19 09:06:55 +01:00
|
|
|
- elsif nav_bar_profile == :instructeur
|
|
|
|
= render partial: 'shared/help/help_dropdown_instructeur'
|
2019-03-25 16:04:30 +01:00
|
|
|
|
2019-11-19 09:06:55 +01:00
|
|
|
- else
|
|
|
|
= render partial: 'shared/help/help_button'
|