Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

9449 ETQ instructeur ou admin, je peux apposer sur une attestation un tampon dédié à un groupe instructeur #9507

Merged
merged 13 commits into from
Sep 29, 2023

Conversation

krichtof
Copy link
Contributor

@krichtof krichtof commented Sep 22, 2023

close #9449

Voici ce qu'apporte cette PR.

  • en tant qu'admin ou instructeur, je peux apposer sur une attestation un tampon dédié à un groupe instructeur. Ce tampon remplacera le tampon de la procédure

  • bug corrigé : lorsque le tampon (pour l'attestation en général ou pour un groupe instructeur en particulier) est un fichier png non interlacé, l'image n'est plus altérée.

  • bug corrigé : il n'y a plus d'erreur lorsqu'on tente de supprimer le tampon et le remplacer par un autre.

Sur la page du groupe instructeur

Capture d’écran 2023-09-22 à 10 11 30

Sur la page de l'attestation

Capture d’écran 2023-09-22 à 10 18 17

@krichtof krichtof force-pushed the 9449-signature-groupe-instructeur branch 2 times, most recently from b36f234 to f3f5b29 Compare September 22, 2023 08:03
krichtof and others added 12 commits September 22, 2023 10:24
Co-Authored-By: Christophe Robillard <christophe.robillard@beta.gouv.fr>
Co-Authored-By: Christophe Robillard <christophe.robillard@beta.gouv.fr>
Co-Authored-By: Christophe Robillard <christophe.robillard@beta.gouv.fr>
Co-Authored-By: Christophe Robillard <christophe.robillard@beta.gouv.fr>
Co-Authored-By: Christophe Robillard <christophe.robillard@beta.gouv.fr>
Co-Authored-By: Christophe Robillard <christophe.robillard@beta.gouv.fr>
Co-Authored-By: Christophe Robillard <christophe.robillard@beta.gouv.fr>
@krichtof krichtof force-pushed the 9449-signature-groupe-instructeur branch from f3f5b29 to da06295 Compare September 22, 2023 08:24
@krichtof krichtof marked this pull request as ready for review September 22, 2023 08:35
@krichtof krichtof changed the title 9449 signature groupe instructeur 9449 ETQ instructeur ou admin, je peux apposer un tampon dédié à un groupe instructeur Sep 22, 2023
@krichtof krichtof changed the title 9449 ETQ instructeur ou admin, je peux apposer un tampon dédié à un groupe instructeur 9449 ETQ instructeur ou admin, je peux apposer sur une attestation un tampon dédié à un groupe instructeur Sep 22, 2023
@krichtof krichtof force-pushed the 9449-signature-groupe-instructeur branch from eadf75f to da06295 Compare September 26, 2023 14:25
Copy link
Member

@LeSim LeSim left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

super, mega, top

Comment on lines 93 to 101
def signature_to_render(params)
dossier = params.fetch(:dossier, false)
groupe_instructeur = dossier ? dossier.groupe_instructeur : params[:groupe_instructeur]
if groupe_instructeur && groupe_instructeur.signature.attached?
groupe_instructeur.signature
else
signature
end
end
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Proposition, je sais pas si c'est mieux.

Il y a beaucoup de ternaire du à la présence ou non du dossier dans les méthodes render_attributes_for et signature_to_render.

je propose de faire le test de présence de dossier une fois pour toute dans le render_attributes_for

def render_attributes_for(params = {})
    attributes = 
    {
      created_at: Time.zone.now,
      footer: params.fetch(:footer, footer),
      logo: params.fetch(:logo, logo.attached? ? logo : nil),
    }

  dossier = params[:dossier]

  if dossier.present?
    attributes.merge({
      title: replace_tags(title, dossier),
      body: replace_tags(body, dossier),
      signature: signature_to_render(dossier.groupe_instructeur)
    })
  else
    attributes.merge(
  {
      title: params.fetch(:title, title),
      body: params.fetch(:body, body),
      signature: signature_to_render(params[:groupe_instructeur])
    }
)
  end
end
Suggested change
def signature_to_render(params)
dossier = params.fetch(:dossier, false)
groupe_instructeur = dossier ? dossier.groupe_instructeur : params[:groupe_instructeur]
if groupe_instructeur && groupe_instructeur.signature.attached?
groupe_instructeur.signature
else
signature
end
end
def signature_to_render(groupe_instructeur)
if groupe_instructeur&.signature&.attached?
groupe_instructeur.signature
else
signature
end
end

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Je trouve ta proposition beaucoup plus lisible ! Merci 😊
Je viens de la commiter

@krichtof krichtof force-pushed the 9449-signature-groupe-instructeur branch from 6c4d040 to d9ed18f Compare September 29, 2023 13:33
Co-Authored-By: simon lehericey <mail@simon.lehericey.net>
@krichtof krichtof force-pushed the 9449-signature-groupe-instructeur branch from d9ed18f to f5d77a5 Compare September 29, 2023 13:37
@krichtof krichtof added this pull request to the merge queue Sep 29, 2023
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Sep 29, 2023
@krichtof krichtof added this pull request to the merge queue Sep 29, 2023
Merged via the queue into main with commit 428ae4a Sep 29, 2023
15 checks passed
@krichtof krichtof deleted the 9449-signature-groupe-instructeur branch September 29, 2023 14:33
@sentry-io
Copy link

sentry-io bot commented Oct 2, 2023

Suspect Issues

This pull request was deployed and Sentry observed the following issues:

  • ‼️ **NoMethodError: undefined method []' for nil:NilClass (NoMethodError)** Administrateurs::GroupeInstructeursController#a...` View Issue

Did you find this useful? React with a 👍 or 👎

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ETQ Administrateur, je veux pouvoir utiliser une signature du groupe instructeur dans l'attestation
3 participants