137 lines
4.6 KiB
Ruby
137 lines
4.6 KiB
Ruby
# frozen_string_literal: true
|
||
|
||
module Administrateurs
|
||
class AttestationTemplateV2sController < AdministrateurController
|
||
before_action :retrieve_procedure
|
||
before_action :ensure_feature_active
|
||
before_action :retrieve_attestation_template
|
||
before_action :preload_revisions, only: [:edit, :update, :create]
|
||
|
||
def show
|
||
preview_dossier = @procedure.dossier_for_preview(current_user)
|
||
|
||
@body = @attestation_template.render_attributes_for(dossier: preview_dossier).fetch(:body)
|
||
|
||
respond_to do |format|
|
||
format.html do
|
||
render layout: 'attestation'
|
||
end
|
||
|
||
format.pdf do
|
||
html = render_to_string('/administrateurs/attestation_template_v2s/show', layout: 'attestation', formats: [:html])
|
||
|
||
pdf = WeasyprintService.generate_pdf(html, procedure_id: @procedure.id, path: request.path, user_id: current_user.id)
|
||
|
||
send_data(pdf, filename: 'attestation.pdf', type: 'application/pdf', disposition: 'inline')
|
||
end
|
||
end
|
||
end
|
||
|
||
def edit
|
||
@buttons = [
|
||
[
|
||
['Gras', 'bold', 'bold'],
|
||
['Italic', 'italic', 'italic'],
|
||
['Souligner', 'underline', 'underline']
|
||
],
|
||
[
|
||
['Titre', 'title', :hidden], # only for "title" section, without any action possible
|
||
['Sous titre', 'heading2', 'h-1'],
|
||
['Titre de section', 'heading3', 'h-2']
|
||
],
|
||
[
|
||
['Liste à puces', 'bulletList', 'list-unordered'],
|
||
['Liste numérotée', 'orderedList', 'list-ordered']
|
||
],
|
||
[
|
||
['Aligner à gauche', 'left', 'align-left'],
|
||
['Aligner au centre', 'center', 'align-center'],
|
||
['Aligner à droite', 'right', 'align-right']
|
||
],
|
||
[
|
||
['Undo', 'undo', 'arrow-go-back-line'],
|
||
['Redo', 'redo', 'arrow-go-forward-line']
|
||
]
|
||
]
|
||
|
||
@attestation_template.validate
|
||
end
|
||
|
||
def update
|
||
attestation_params = editor_params
|
||
|
||
# toggle activation
|
||
if @attestation_template.persisted? && @attestation_template.activated? != cast_bool(attestation_params[:activated])
|
||
@procedure.attestation_templates.v2.update_all(activated: attestation_params[:activated])
|
||
render :update && return
|
||
end
|
||
|
||
if @attestation_template.published? && should_edit_draft?
|
||
@attestation_template = @attestation_template.dup
|
||
@attestation_template.state = :draft
|
||
@attestation_template.procedure = @procedure
|
||
end
|
||
|
||
@attestation_template.assign_attributes(attestation_params)
|
||
|
||
if @attestation_template.invalid?
|
||
flash.alert = "L’attestation contient des erreurs et n'a pas pu être enregistrée. Corriger les erreurs."
|
||
else
|
||
# - draft just published
|
||
if @attestation_template.published? && should_edit_draft?
|
||
published = @procedure.attestation_templates.published
|
||
|
||
@attestation_template.transaction do
|
||
were_published = published.destroy_all
|
||
@attestation_template.save!
|
||
flash.notice = were_published.any? ? "La nouvelle version de l’attestation a été publiée." : "L’attestation a été publiée."
|
||
end
|
||
|
||
redirect_to edit_admin_procedure_attestation_template_v2_path(@procedure)
|
||
else
|
||
# - draft updated
|
||
# - or, attestation already published, without need for publication (draft procedure)
|
||
@attestation_template.save!
|
||
render :update
|
||
end
|
||
end
|
||
end
|
||
|
||
def create = update
|
||
|
||
def reset
|
||
@procedure.attestation_templates_v2.draft&.destroy_all
|
||
|
||
flash.notice = "Les modifications ont été réinitialisées."
|
||
redirect_to edit_admin_procedure_attestation_template_v2_path(@procedure)
|
||
end
|
||
|
||
private
|
||
|
||
def ensure_feature_active
|
||
redirect_to root_path if !@procedure.feature_enabled?(:attestation_v2)
|
||
end
|
||
|
||
def retrieve_attestation_template
|
||
v2s = @procedure.attestation_templates_v2
|
||
@attestation_template = v2s.find(&:draft?) || v2s.find(&:published?) || build_default_attestation
|
||
end
|
||
|
||
def build_default_attestation
|
||
state = should_edit_draft? ? :draft : :published
|
||
@procedure.attestation_templates.build(version: 2, json_body: AttestationTemplate::TIPTAP_BODY_DEFAULT, activated: true, state:)
|
||
end
|
||
|
||
def should_edit_draft?
|
||
if @procedure.brouillon?
|
||
@procedure.attestation_templates.v1.published.any?
|
||
else
|
||
true
|
||
end
|
||
end
|
||
|
||
def editor_params
|
||
params.required(:attestation_template).permit(:activated, :official_layout, :label_logo, :label_direction, :tiptap_body, :footer, :logo, :signature, :activated, :state)
|
||
end
|
||
end
|
||
end
|