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
2020-03-27 15:27:40 +01:00
-# only display the coronavirus to usagers (instructeurs know there are delays) when they are logged in, or on the public pages.
- if user_signed_in?
- if dossier.present? && feature_enabled_for?(:coronavirus_banner, dossier.procedure)
= render partial: 'layouts/coronavirus_banner'
- else
- if procedure.present? && feature_enabled_for?(:coronavirus_banner, procedure)
= render partial: 'layouts/coronavirus_banner'
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-05-14 14:50:14 +02:00
= link_to root_path_for_profile(nav_bar_profile), class: 'header-logo justify-center', title: "Aller à la page d'accueil de demarches-simplifiees.fr" do
= image_tag 'marianne.svg', alt: 'Liberté, égalité, fraternité', width: '65px'
= link_to root_path_for_profile(nav_bar_profile), class: 'header-logo justify-center', title: "Aller à la page d'accueil de demarches-simplifiees.fr" do
2019-11-25 15:59:58 +01:00
%span.big.site-title> demarches-simplifiees.fr
%span.small.site-title> d-s.fr
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
2019-09-17 15:07:58 +02:00
- if current_instructeur.procedures.count > 0
2017-09-06 11:13:59 +02:00
%li
2019-08-06 11:02:54 +02:00
= active_link_to "Démarches", instructeur_procedures_path, active: :inclusive, class: 'tab-link'
- if current_instructeur.avis.count > 0
2017-09-06 11:13:59 +02:00
%li
2019-08-06 11:02:54 +02:00
= active_link_to instructeur_avis_index_path, active: :inclusive, class: 'tab-link' do
2017-09-20 15:49:49 +02:00
Avis
2019-08-06 11:02:54 +02:00
- avis_counter = current_instructeur.avis.without_answer.count
2017-09-20 15:49:49 +02:00
- 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
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'