add info about who created the batch and when in alert

This commit is contained in:
Lisa Durand 2023-05-11 17:13:02 +02:00
parent 1e7add3b6e
commit 9deb452ac0
4 changed files with 6 additions and 0 deletions

View file

@ -58,3 +58,4 @@ en:
in_progress: A bulk action is processing
link_text: Refresh this webpage
after_link_text: to check if the process is over.
context: This bulk action was created by %{mail}, %{time_ago}

View file

@ -58,3 +58,4 @@ fr:
in_progress: Une action de masse est en cours
link_text: Recharger la page
after_link_text: pour voir si l'opération est finie.
context: Cette opération a été lancée par %{mail}, il y a %{time_ago}

View file

@ -14,3 +14,6 @@
%p
= link_to t('.link_text'), instructeur_procedure_path(@procedure, statut: params["statut"]), data: { action: 'turbo-poll#refresh' }
= t('.after_link_text')
%p.fr-mt-2w
%small= t('.context', mail: @batch.instructeur.email, time_ago: time_ago_in_words(@batch.created_at))

View file

@ -23,6 +23,7 @@ RSpec.describe Dossiers::BatchAlertComponent, type: :component do
it { is_expected.to have_selector('.fr-alert--info') }
it { is_expected.to have_text("Une action de masse est en cours") }
it { is_expected.to have_text("1/2 dossiers ont été archivés") }
it { is_expected.to have_text("Cette opération a été lancée par #{instructeur.email}, il y a moins d'une minute") }
end
context 'finished and success' do