add info about who created the batch and when in alert
This commit is contained in:
parent
1e7add3b6e
commit
9deb452ac0
4 changed files with 6 additions and 0 deletions
|
@ -58,3 +58,4 @@ en:
|
||||||
in_progress: A bulk action is processing
|
in_progress: A bulk action is processing
|
||||||
link_text: Refresh this webpage
|
link_text: Refresh this webpage
|
||||||
after_link_text: to check if the process is over.
|
after_link_text: to check if the process is over.
|
||||||
|
context: This bulk action was created by %{mail}, %{time_ago}
|
||||||
|
|
|
@ -58,3 +58,4 @@ fr:
|
||||||
in_progress: Une action de masse est en cours
|
in_progress: Une action de masse est en cours
|
||||||
link_text: Recharger la page
|
link_text: Recharger la page
|
||||||
after_link_text: pour voir si l'opération est finie.
|
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}
|
||||||
|
|
|
@ -14,3 +14,6 @@
|
||||||
%p
|
%p
|
||||||
= link_to t('.link_text'), instructeur_procedure_path(@procedure, statut: params["statut"]), data: { action: 'turbo-poll#refresh' }
|
= link_to t('.link_text'), instructeur_procedure_path(@procedure, statut: params["statut"]), data: { action: 'turbo-poll#refresh' }
|
||||||
= t('.after_link_text')
|
= t('.after_link_text')
|
||||||
|
|
||||||
|
%p.fr-mt-2w
|
||||||
|
%small= t('.context', mail: @batch.instructeur.email, time_ago: time_ago_in_words(@batch.created_at))
|
||||||
|
|
|
@ -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_selector('.fr-alert--info') }
|
||||||
it { is_expected.to have_text("Une action de masse est en cours") }
|
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("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
|
end
|
||||||
|
|
||||||
context 'finished and success' do
|
context 'finished and success' do
|
||||||
|
|
Loading…
Reference in a new issue