Skip to content

Commit

Permalink
feat(routing): replace contact information with turbo_stream
Browse files Browse the repository at this point in the history
  • Loading branch information
E-L-T committed May 17, 2024
1 parent 75e568a commit 1e53d06
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 29 deletions.
30 changes: 30 additions & 0 deletions app/views/shared/dossiers/_update_contact_information.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#contact_information
- service = @dossier&.service || @procedure.service
- if service.present?
%h3.fr-footer__top-cat= I18n.t('users.procedure_footer.managed_by.header')
.fr-footer__top-link.fr-pb-2w
%span{ lang: :fr }= service.pretty_nom
%div{ lang: :fr }
= render SimpleFormatComponent.new(service.adresse, class_names_map: {paragraph: 'fr-footer__content-desc'})
%h3.fr-footer__top-cat= I18n.t('users.procedure_footer.contact.header')
%ul.fr-footer__top-list
- if @dossier.present? && @dossier.messagerie_available?
%li
= link_to I18n.t('users.procedure_footer.contact.in_app_mail.link'), messagerie_dossier_path(@dossier), class: 'fr-footer__top-link'
- elsif service.present?
%li
%span.fr-footer__top-link
= I18n.t('users.procedure_footer.contact.email.link')
= link_to service.email, "mailto:#{service.email}", class: "fr-footer__top-link"

- if service.present?
- if service.telephone.present? || service.horaires.present?
%li
- horaires = "#{I18n.t('users.procedure_footer.contact.schedule.prefix')}#{formatted_horaires(service.horaires)}"
- if service.telephone.present?
= link_to service.telephone_url, class: 'fr-footer__top-link' do
%p
= I18n.t('users.procedure_footer.contact.phone.link', service_telephone: service.telephone)
- if service.horaires.present?
%p
= horaires
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
= turbo_stream.replace "contact_information", partial: 'shared/dossiers/update_contact_information'
30 changes: 1 addition & 29 deletions app/views/users/_procedure_footer.html.haml
Original file line number Diff line number Diff line change
@@ -1,37 +1,9 @@
%footer.fr-footer.footer-procedure#footer{ role: "contentinfo" }
- service = dossier&.service || procedure.service
.fr-footer__top.fr-mb-0
.fr-container
.fr-grid-row.fr-grid-row--start.fr-grid-row--gutters
.fr-col-12.fr-col-sm-4.fr-col-md-4
- if service.present?
%h3.fr-footer__top-cat= I18n.t('users.procedure_footer.managed_by.header')
.fr-footer__top-link.fr-pb-2w
%span{ lang: :fr }= service.pretty_nom
%div{ lang: :fr }
= render SimpleFormatComponent.new(service.adresse, class_names_map: {paragraph: 'fr-footer__content-desc'})
%h3.fr-footer__top-cat= I18n.t('users.procedure_footer.contact.header')
%ul.fr-footer__top-list
- if dossier.present? && dossier.messagerie_available?
%li
= link_to I18n.t('users.procedure_footer.contact.in_app_mail.link'), messagerie_dossier_path(dossier), class: 'fr-footer__top-link'
- elsif service.present?
%li
%span.fr-footer__top-link
= I18n.t('users.procedure_footer.contact.email.link')
= link_to service.email, "mailto:#{service.email}", class: "fr-footer__top-link"

- if service.present?
- if service.telephone.present? || service.horaires.present?
%li
- horaires = "#{I18n.t('users.procedure_footer.contact.schedule.prefix')}#{formatted_horaires(service.horaires)}"
- if service.telephone.present?
= link_to service.telephone_url, class: 'fr-footer__top-link' do
%p
= I18n.t('users.procedure_footer.contact.phone.link', service_telephone: service.telephone)
- if service.horaires.present?
%p
= horaires
= render partial: 'shared/dossiers/update_contact_information'

- politiques = politiques_conservation_de_donnees(procedure)
- if politiques.present?
Expand Down
1 change: 1 addition & 0 deletions app/views/users/dossiers/update.turbo_stream.haml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
= render partial: 'shared/dossiers/update_champs', locals: { to_show: @to_show, to_hide: @to_hide, to_update: @to_update, dossier: @dossier }
= turbo_stream.update "contact_information", partial: 'shared/dossiers/update_contact_information'

0 comments on commit 1e53d06

Please sign in to comment.