feat(groupe-instructeur): instructeur can add signature in attestation

This commit is contained in:
Christophe Robillard 2023-09-21 13:51:04 +02:00 committed by krichtof
parent ad10335888
commit c02e6f2a77
4 changed files with 56 additions and 0 deletions

View file

@ -1,5 +1,7 @@
module Instructeurs
class GroupeInstructeursController < InstructeurController
include UninterlacePngConcern
ITEMS_PER_PAGE = 25
def index
@ -13,6 +15,26 @@ module Instructeurs
@instructeurs = paginated_instructeurs
end
def add_signature
@procedure = procedure
@groupe_instructeur = groupe_instructeur
@instructeurs = paginated_instructeurs
signature_file = params[:groupe_instructeur][:signature]
if params[:groupe_instructeur].nil? || signature_file.blank?
flash[:alert] = "Aucun fichier joint pour le tampon de l'attestation"
render :show
else
file = uninterlace_png(signature_file)
params[:groupe_instructeur][:signature] = file
if @groupe_instructeur.update(signature: file)
redirect_to instructeur_groupe_path(@procedure, @groupe_instructeur),
notice: "Le tampon de l'attestation a bien été ajouté"
end
end
end
def add_instructeur
instructeur = Instructeur.by_email(instructeur_email) ||
create_instructeur(instructeur_email)

View file

@ -65,3 +65,18 @@
%p= service.telephone
- if service.horaires.present?
%p= service.horaires
.card.mt-2
= render NestedForms::FormOwnerComponent.new
= form_with url: { action: :add_signature }, method: :post, html: { multipart: true } do |f|
.card-title Tampon de l'attestation
.fr-upload-group.fr-mb-4w
%p.fr-text--sm.fr-text-mention--grey.fr-mb-1w
Dimensions conseillées : au minimum 500 px de largeur ou de hauteur.
= render Attachment::EditComponent.new(attached_file: @groupe_instructeur.signature, direct_upload: false)
.fr-btns-group.fr-btns-group--inline
= f.submit 'Ajouter le tampon', class: 'fr-btn'
- if @groupe_instructeur.signature.persisted?
= link_to("Prévisualiser", preview_attestation_admin_procedure_groupe_instructeur_path(@groupe_instructeur.procedure, @groupe_instructeur), class: "fr-btn fr-btn--secondary", **external_link_attributes)

View file

@ -395,6 +395,7 @@ Rails.application.routes.draw do
member do
post 'add_instructeur'
delete 'remove_instructeur'
post 'add_signature'
end
end

View file

@ -103,4 +103,22 @@ describe Instructeurs::GroupeInstructeursController, type: :controller do
it { expect(response).to redirect_to(instructeur_groupe_path(procedure, gi_1_1)) }
end
end
describe '#add_signature' do
let(:signature) { fixture_file_upload('spec/fixtures/files/black.png', 'image/png') }
before do
post :add_signature,
params: {
procedure_id: procedure.id,
id: gi_1_2.id,
groupe_instructeur: {
signature: signature
}
}
end
it { expect(response).to redirect_to(instructeur_groupe_path(procedure, gi_1_2)) }
it { expect(gi_1_2.reload.signature).to be_attached }
end
end