feat(routing): replace contact information with turbo_stream
This commit is contained in:
parent
f860745629
commit
f30057e585
3 changed files with 33 additions and 29 deletions
|
@ -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
|
|
@ -1,37 +1,9 @@
|
||||||
%footer.fr-footer.footer-procedure#footer{ role: "contentinfo" }
|
%footer.fr-footer.footer-procedure#footer{ role: "contentinfo" }
|
||||||
- service = dossier&.service || procedure.service
|
|
||||||
.fr-footer__top.fr-mb-0
|
.fr-footer__top.fr-mb-0
|
||||||
.fr-container
|
.fr-container
|
||||||
.fr-grid-row.fr-grid-row--start.fr-grid-row--gutters
|
.fr-grid-row.fr-grid-row--start.fr-grid-row--gutters
|
||||||
.fr-col-12.fr-col-sm-4.fr-col-md-4
|
.fr-col-12.fr-col-sm-4.fr-col-md-4
|
||||||
- if service.present?
|
= render partial: 'shared/dossiers/update_contact_information', locals: { dossier: dossier, procedure: procedure }
|
||||||
%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
|
|
||||||
|
|
||||||
- politiques = politiques_conservation_de_donnees(procedure)
|
- politiques = politiques_conservation_de_donnees(procedure)
|
||||||
- if politiques.present?
|
- if politiques.present?
|
||||||
|
|
|
@ -5,3 +5,5 @@
|
||||||
= turbo_stream.append('contenu', render(Dossiers::InvalidIneligibiliteRulesComponent.new(dossier: @dossier)))
|
= turbo_stream.append('contenu', render(Dossiers::InvalidIneligibiliteRulesComponent.new(dossier: @dossier)))
|
||||||
- else @ineligibilite_rules_is_computable
|
- else @ineligibilite_rules_is_computable
|
||||||
= turbo_stream.remove(dom_id(@dossier, :ineligibilite_rules_broken))
|
= turbo_stream.remove(dom_id(@dossier, :ineligibilite_rules_broken))
|
||||||
|
|
||||||
|
= turbo_stream.update "contact_information", partial: 'shared/dossiers/update_contact_information', locals: { dossier: @dossier, procedure: @procedure }
|
||||||
|
|
Loading…
Reference in a new issue