Merge branch 'main' into helpscout/1987597382
This commit is contained in:
commit
44f366d7f4
73 changed files with 215 additions and 365 deletions
|
@ -15,3 +15,16 @@ select {
|
|||
.button.primary {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
// fix firefox < 80 not supporting "appearance: auto" on inputs
|
||||
// scss-lint:disable DuplicateProperty
|
||||
input[type="checkbox"] {
|
||||
-moz-appearance: checkbox;
|
||||
-moz-appearance: auto;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
-moz-appearance: radio;
|
||||
-moz-appearance: auto;
|
||||
}
|
||||
// scss-lint:enable DuplicateProperty
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::AddressComponent < ApplicationComponent
|
||||
class EditableChamp::AddressComponent < EditableChamp::EditableChampBaseComponent
|
||||
include ApplicationHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::AnnuaireEducationComponent < ApplicationComponent
|
||||
class EditableChamp::AnnuaireEducationComponent < EditableChamp::EditableChampBaseComponent
|
||||
include ApplicationHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::CarteComponent < ApplicationComponent
|
||||
class EditableChamp::CarteComponent < EditableChamp::EditableChampBaseComponent
|
||||
include ApplicationHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
class EditableChamp::ChampLabelComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
include StringToHtmlHelper
|
||||
|
||||
def initialize(form:, champ:, seen_at: nil)
|
||||
@form, @champ, @seen_at = form, champ, seen_at
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
= # we do this trick because some html elements should use 'label' and some should be plain paragraphs
|
||||
- if @champ.html_label?
|
||||
= @form.label @champ.main_value_name, id: champ.labelledby_id, for: champ.input_id do
|
||||
= render partial: 'shared/dossiers/editable_champs/champ_label_content', locals: { champ: champ, seen_at: seen_at }
|
||||
= @form.label @champ.main_value_name, id: @champ.labelledby_id, for: @champ.input_id do
|
||||
= render EditableChamp::ChampLabelContentComponent.new champ: @champ, seen_at: @seen_at
|
||||
- else
|
||||
.@form-label.mb-4
|
||||
= render partial: 'shared/dossiers/editable_champs/champ_label_content', locals: { champ: champ, seen_at: seen_at }
|
||||
.form-label.mb-4
|
||||
= render EditableChamp::ChampLabelContentComponent.new champ: @champ, seen_at: @seen_at
|
||||
|
||||
- if @champ.description.present?
|
||||
.notice{ id: @champ.describedby_id }= string_to_html(champ.description)
|
||||
.notice{ id: @champ.describedby_id }= string_to_html(@champ.description)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
class EditableChamp::ChampLabelContentComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
def initialize(champ:, seen_at: nil)
|
||||
@champ, @seen_at = champ, seen_at
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
- if @champ.type_de_champ.mandatory?
|
||||
%span.mandatory *
|
||||
|
||||
- if @champ.updated_at.present? && seen_at.present?
|
||||
%span.updated-at{ class: highlight_if_unseen_class(seen_at, @champ.updated_at) }
|
||||
- if @champ.updated_at.present? && @seen_at.present?
|
||||
%span.updated-at{ class: highlight_if_unseen_class(@seen_at, @champ.updated_at) }
|
||||
= "modifié le #{try_format_datetime(@champ.updated_at)}"
|
||||
|
||||
- if @champ.rebased_at.present? && champ.rebased_at > (seen_at || champ.updated_at) && current_user.owns_or_invite?(champ.dossier)
|
||||
- if @champ.rebased_at.present? && @champ.rebased_at > (@seen_at || @champ.updated_at) && controller.current_user.owns_or_invite?(@champ.dossier)
|
||||
%span.updated-at.highlighted
|
||||
Le type de ce @champ où sa description a été modifiée par l'administration. Vérifier son contenu.
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::CheckboxComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::CheckboxComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::CiviliteComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::CiviliteComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::CnafComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::CnafComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::CommunesComponent < ApplicationComponent
|
||||
class EditableChamp::CommunesComponent < EditableChamp::EditableChampBaseComponent
|
||||
include ApplicationHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::DateComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::DateComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
class EditableChamp::DatetimeComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
|
||||
class EditableChamp::DatetimeComponent < EditableChamp::EditableChampBaseComponent
|
||||
def datetime_start_year(date)
|
||||
if date == nil || date.year == 0 || date.year >= Date.today.year - 1
|
||||
Date.today.year - 1
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::DecimalNumberComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::DecimalNumberComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::DepartementsComponent < ApplicationComponent
|
||||
class EditableChamp::DepartementsComponent < EditableChamp::EditableChampBaseComponent
|
||||
include ApplicationHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::DgfipComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::DgfipComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::DossierLinkComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::DossierLinkComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::DropDownListComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::DropDownListComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::DropDownOtherInputComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::DropDownOtherInputComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
class EditableChamp::EditableChampBaseComponent < ApplicationComponent
|
||||
def initialize(form:, champ:, seen_at: nil)
|
||||
@form, @champ, @seen_at = form, champ, seen_at
|
||||
end
|
||||
end
|
|
@ -1,5 +1,45 @@
|
|||
class EditableChamp::EditableChampComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
include StringToHtmlHelper
|
||||
|
||||
def initialize(form:, champ:, seen_at: nil)
|
||||
@form, @champ, @seen_at = form, champ, seen_at
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def has_label?(champ)
|
||||
types_without_label = [TypeDeChamp.type_champs.fetch(:header_section), TypeDeChamp.type_champs.fetch(:explication)]
|
||||
!types_without_label.include?(@champ.type_champ)
|
||||
end
|
||||
|
||||
def component_class
|
||||
"EditableChamp::#{@champ.type_champ.camelcase}Component".constantize
|
||||
end
|
||||
|
||||
def html_options
|
||||
{
|
||||
class: "editable-champ-#{@champ.type_champ} #{'hidden' if !@champ.visible?}",
|
||||
id: @champ.input_group_id,
|
||||
data: { controller: stimulus_controller }
|
||||
}
|
||||
end
|
||||
|
||||
def stimulus_controller
|
||||
if !@champ.repetition? && @champ.fillable?
|
||||
# This is an editable champ. Lets find what controllers it might need.
|
||||
controllers = []
|
||||
|
||||
# This is a public champ – it can have an autosave controller.
|
||||
if @champ.public?
|
||||
controllers << 'autosave'
|
||||
end
|
||||
|
||||
# This is a dropdown champ. Activate special behaviours it might have.
|
||||
if @champ.simple_drop_down_list? || @champ.linked_drop_down_list?
|
||||
controllers << 'champ-dropdown'
|
||||
end
|
||||
|
||||
controllers.join(' ')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
.editable-@champ{ class: "editable-champ-#{champ.type_champ} #{champ.visible? ? '' : 'hidden'}", id: champ.input_group_id, data: editable_champ_controller(champ) }
|
||||
.editable-champ{ html_options }
|
||||
- if @champ.repetition?
|
||||
%h3.header-subsection= @champ.libelle
|
||||
- if @champ.description.present?
|
||||
%p.notice= string_to_html(@champ.description, false)
|
||||
|
||||
- elsif has_label?(@champ)
|
||||
= render partial: 'shared/dossiers/editable_champs/champ_label', locals: { form: @form, champ: champ, seen_at: defined?(seen_at) ? seen_at : nil }
|
||||
= render EditableChamp::ChampLabelComponent.new form: @form, champ: @champ, seen_at: @seen_at
|
||||
- if @champ.type_champ == "titre_identite"
|
||||
%p.notice Carte nationale d’identité (uniquement le recto), passeport, titre de séjour ou autre justificatif d’identité. Formats acceptés : jpg/png
|
||||
|
||||
= @form.hidden_field :id, value: @champ.id, data: champ.repetition? ? { id: true } : {}
|
||||
= render partial: "shared/dossiers/editable_champs/#{champ.type_champ}", locals: { form: @form, champ: champ }
|
||||
= @form.hidden_field :id, value: @champ.id, data: @champ.repetition? ? { id: true } : {}
|
||||
= render component_class.new(form: @form, champ: @champ, seen_at: @seen_at)
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::EmailComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::EmailComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::EngagementComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::EngagementComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::ExplicationComponent < ApplicationComponent
|
||||
class EditableChamp::ExplicationComponent < EditableChamp::EditableChampBaseComponent
|
||||
include StringToHtmlHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::HeaderSectionComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::HeaderSectionComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::IbanComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::IbanComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::IntegerNumberComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::IntegerNumberComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
class EditableChamp::LinkedDropDownListComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::LinkedDropDownListComponent < EditableChamp::EditableChampBaseComponent
|
||||
include StringToHtmlHelper
|
||||
end
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
- if @champ.type_de_champ.mandatory?
|
||||
%span.mandatory *
|
||||
- if @champ.drop_down_secondary_description.present?
|
||||
.notice{ id: "#{@champ.describedby_id}-secondary" }= helpers.string_to_html(@champ.drop_down_secondary_description)
|
||||
.notice{ id: "#{@champ.describedby_id}-secondary" }= string_to_html(@champ.drop_down_secondary_description)
|
||||
= @form.select :secondary_value,
|
||||
@champ.secondary_options[@champ.primary_value],
|
||||
{},
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::MesriComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::MesriComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::MultipleDropDownListComponent < ApplicationComponent
|
||||
class EditableChamp::MultipleDropDownListComponent < EditableChamp::EditableChampBaseComponent
|
||||
include ApplicationHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::NumberComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::NumberComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::PaysComponent < ApplicationComponent
|
||||
class EditableChamp::PaysComponent < EditableChamp::EditableChampBaseComponent
|
||||
include ApplicationHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::PhoneComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::PhoneComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::PieceJustificativeComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::PieceJustificativeComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::PoleEmploiComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::PoleEmploiComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::RegionsComponent < ApplicationComponent
|
||||
class EditableChamp::RegionsComponent < EditableChamp::EditableChampBaseComponent
|
||||
include ApplicationHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::RepetitionComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::RepetitionComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.repetition{ id: dom_id(@champ, :rows) }
|
||||
- @champ.rows.each do |champs|
|
||||
= render EditableChamp::RepetitionRowComponent.new(form: @form, champ: @champ, row: champs)
|
||||
= render EditableChamp::RepetitionRowComponent.new(form: @form, champ: @champ, row: champs, seen_at: @seen_at)
|
||||
|
||||
.actions{ 'data-turbo': 'true' }
|
||||
= link_to champs_repetition_path(@champ.id), data: { turbo_method: :post }, class: 'button add-row' do
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
class EditableChamp::RepetitionRowComponent < ApplicationComponent
|
||||
def initialize(form:, champ:, row:)
|
||||
@form, @champ, @row = form, champ, row
|
||||
def initialize(form:, champ:, row:, seen_at: nil)
|
||||
@form, @champ, @row, @seen_at = form, champ, row, seen_at
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
.row{ id: row_dom_id }
|
||||
- @row.each do |champ|
|
||||
= fields_for champ.input_name, champ do |form|
|
||||
= render partial: 'shared/dossiers/editable_champs/editable_champ', locals: { form: form, champ: champ }
|
||||
= render EditableChamp::EditableChampComponent.new form: form, champ: champ, seen_at: @seen_at
|
||||
|
||||
.flex.row-reverse{ 'data-turbo': 'true' }
|
||||
= link_to champs_repetition_path(@champ.id, champ_ids: @row.map(&:id), row_id: row_dom_id), data: { turbo_method: :delete }, class: 'button danger remove-row' do
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::SiretComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::SiretComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::TextComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::TextComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
class EditableChamp::TextareaComponent < ApplicationComponent
|
||||
class EditableChamp::TextareaComponent < EditableChamp::EditableChampBaseComponent
|
||||
include HtmlToStringHelper
|
||||
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::TitreIdentiteComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::TitreIdentiteComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
class EditableChamp::YesNoComponent < ApplicationComponent
|
||||
def initialize(form:, champ:)
|
||||
@form, @champ = form, champ
|
||||
end
|
||||
class EditableChamp::YesNoComponent < EditableChamp::EditableChampBaseComponent
|
||||
end
|
||||
|
|
|
@ -188,19 +188,15 @@ module Users
|
|||
|
||||
def update
|
||||
@dossier = dossier_with_champs
|
||||
errors = update_dossier_and_compute_errors
|
||||
|
||||
if check_conditions?
|
||||
assign_dossier_and_check_conditions
|
||||
render :update_brouillon
|
||||
else
|
||||
errors = update_dossier_and_compute_errors
|
||||
if errors.present?
|
||||
flash.now.alert = errors
|
||||
end
|
||||
|
||||
if errors.present?
|
||||
flash.now.alert = errors
|
||||
render :modifier
|
||||
else
|
||||
redirect_to demande_dossier_path(@dossier)
|
||||
end
|
||||
respond_to do |format|
|
||||
format.html { render :modifier }
|
||||
format.turbo_stream { render layout: false }
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -308,18 +304,6 @@ module Users
|
|||
|
||||
private
|
||||
|
||||
def check_conditions?
|
||||
params[:check_conditions] && champs_params[:dossier]
|
||||
end
|
||||
|
||||
def assign_dossier_and_check_conditions
|
||||
@dossier.assign_attributes(champs_params[:dossier])
|
||||
# We need to set dossier on champs, otherwise dossier will be reloaded
|
||||
@dossier.champs.each do |champ|
|
||||
champ.association(:dossier).target = @dossier
|
||||
end
|
||||
end
|
||||
|
||||
# if the status tab is filled, then this tab
|
||||
# else first filled tab
|
||||
# else en-cours
|
||||
|
|
|
@ -1,17 +1,4 @@
|
|||
module ChampHelper
|
||||
def has_label?(champ)
|
||||
types_without_label = [TypeDeChamp.type_champs.fetch(:header_section), TypeDeChamp.type_champs.fetch(:explication)]
|
||||
!types_without_label.include?(champ.type_champ)
|
||||
end
|
||||
|
||||
def champ_carte_params(champ)
|
||||
if champ.persisted?
|
||||
{ champ_id: champ.id }
|
||||
else
|
||||
{ type_de_champ_id: champ.type_de_champ_id }
|
||||
end
|
||||
end
|
||||
|
||||
def format_text_value(text)
|
||||
sanitized_text = sanitize(text)
|
||||
auto_linked_text = Anchored::Linker.auto_link(sanitized_text, target: '_blank', rel: 'noopener') do |link_href|
|
||||
|
@ -27,36 +14,4 @@ module ChampHelper
|
|||
piece_justificative_template_admin_procedure_type_de_champ_url(stable_id: object.stable_id, procedure_id: object.procedure.id)
|
||||
end
|
||||
end
|
||||
|
||||
def autosave_available?(champ)
|
||||
# FIXME: enable autosave on champs private? once we figured out how to batch audit events
|
||||
champ.dossier.brouillon? && !champ.repetition?
|
||||
end
|
||||
|
||||
def editable_champ_controller(champ)
|
||||
if !champ.repetition? && !champ.non_fillable?
|
||||
# This is an editable champ. Lets find what controllers it might need.
|
||||
controllers = []
|
||||
|
||||
# This is a public champ – it can have an autosave controller.
|
||||
if champ.public?
|
||||
# This is a champ on dossier in draft state. Activate autosave.
|
||||
if champ.dossier.brouillon?
|
||||
controllers << 'autosave'
|
||||
# This is a champ on a dossier in en_construction state. Enable conditions checker.
|
||||
elsif champ.public? && champ.dossier.en_construction?
|
||||
controllers << 'check-conditions'
|
||||
end
|
||||
end
|
||||
|
||||
# This is a dropdown champ. Activate special behaviours it might have.
|
||||
if champ.simple_drop_down_list? || champ.linked_drop_down_list?
|
||||
controllers << 'champ-dropdown'
|
||||
end
|
||||
|
||||
if controllers.present?
|
||||
{ controller: controllers.join(' ') }
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -42,7 +42,10 @@ export class AutosaveController extends ApplicationController {
|
|||
this.#latestPromise = Promise.resolve();
|
||||
this.onGlobal('autosave:retry', () => this.didRequestRetry());
|
||||
this.on('change', (event) => this.onChange(event));
|
||||
this.on('input', (event) => this.onInput(event));
|
||||
|
||||
if (this.saveOnInput) {
|
||||
this.on('input', (event) => this.onInput(event));
|
||||
}
|
||||
}
|
||||
|
||||
disconnect() {
|
||||
|
@ -80,7 +83,8 @@ export class AutosaveController extends ApplicationController {
|
|||
this.debounce(this.enqueueAutosaveRequest, AUTOSAVE_DEBOUNCE_DELAY);
|
||||
} else if (
|
||||
isSelectElement(target) ||
|
||||
isCheckboxOrRadioInputElement(target)
|
||||
isCheckboxOrRadioInputElement(target) ||
|
||||
(!this.saveOnInput && isTextInputElement(target))
|
||||
) {
|
||||
this.enqueueAutosaveRequest();
|
||||
}
|
||||
|
@ -99,6 +103,10 @@ export class AutosaveController extends ApplicationController {
|
|||
}
|
||||
}
|
||||
|
||||
private get saveOnInput() {
|
||||
return !!this.form?.dataset.saveOnInput;
|
||||
}
|
||||
|
||||
private didRequestRetry() {
|
||||
if (this.#needsRetry) {
|
||||
this.enqueueAutosaveRequest();
|
||||
|
|
|
@ -51,6 +51,7 @@ class Champ < ApplicationRecord
|
|||
:simple_drop_down_list?,
|
||||
:linked_drop_down_list?,
|
||||
:non_fillable?,
|
||||
:fillable?,
|
||||
:cnaf?,
|
||||
:dgfip?,
|
||||
:pole_emploi?,
|
||||
|
|
|
@ -186,6 +186,10 @@ class TypeDeChamp < ApplicationRecord
|
|||
drop_down_other == "1" || drop_down_other == true
|
||||
end
|
||||
|
||||
def fillable?
|
||||
!non_fillable?
|
||||
end
|
||||
|
||||
def non_fillable?
|
||||
type_champ.in?([
|
||||
TypeDeChamp.type_champs.fetch(:header_section),
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
= fields_for @champ.input_name, @champ do |form|
|
||||
= turbo_stream.morph @champ.input_group_id, partial: "shared/dossiers/editable_champs/editable_champ", locals: { champ: @champ, form: form }
|
||||
= turbo_stream.morph @champ.input_group_id do
|
||||
= render EditableChamp::EditableChampComponent.new champ: @champ, form: form
|
||||
|
||||
- if @champ.piece_justificative_file.attached?
|
||||
- attachment = @champ.piece_justificative_file.attachment
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
.autosave.autosave-state-idle{ data: { controller: 'autosave-status' } }
|
||||
%p.autosave-explanation
|
||||
%span.autosave-explanation-text
|
||||
= t('views.instructeurs.dossiers.autosave.autosave_draft')
|
||||
|
||||
%p.autosave-status.succeeded
|
||||
%span.autosave-icon.icon.accept
|
||||
%span.autosave-label
|
||||
= t('views.instructeurs.dossiers.autosave.autosave_confirmation')
|
||||
|
||||
%p.autosave-status.failed
|
||||
%span.autosave-icon ⚠️
|
||||
%span.autosave-label Impossible d’enregistrer les annotations
|
||||
%button.button.small.autosave-retry{ type: :button, data: { action: 'autosave-status#onClickRetryButton', autosave_status_target: 'retryButton' } }
|
||||
%span.autosave-retry-label réessayer
|
||||
%span.autosave-retrying-label enregistrement en cours…
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
%p.role-panel-explanation Réalisez vos demandes en toute simplicité et retrouvez vos dossiers en ligne
|
||||
|
||||
= link_to "Comment trouver ma démarche ?", COMMENT_TROUVER_MA_DEMARCHE_URL, class: "fr-btn fr-btn--lg fr-mr-1w fr-mb-2w", **external_link_attributes
|
||||
= link_to "Se connecter", new_user_session_path, class: "fr-btn fr-btn--secondary fr-btn--lg", **external_link_attributes
|
||||
= link_to "Se connecter", new_user_session_path, class: "fr-btn fr-btn--secondary fr-btn--lg"
|
||||
|
||||
- cache "numbers-panel", :expires_in => 3.hours do
|
||||
.landing-panel
|
||||
|
|
|
@ -45,9 +45,7 @@
|
|||
%form.form
|
||||
= form_for @dossier, url: '', html: { class: 'form' } do |f|
|
||||
= f.fields_for :champs do |champ_form|
|
||||
- champ = champ_form.object
|
||||
= render partial: "shared/dossiers/editable_champs/editable_champ",
|
||||
locals: { champ: champ, form: champ_form, seen_at: nil }
|
||||
= render EditableChamp::EditableChampComponent.new champ: champ_form.object, form: champ_form
|
||||
|
||||
.editable-champ.editable-champ-text
|
||||
%label Mot de passe
|
||||
|
|
|
@ -1,13 +1,19 @@
|
|||
.autosave.autosave-state-idle{ data: { controller: 'autosave-status' } }
|
||||
%p.autosave-explanation
|
||||
%span.autosave-explanation-text
|
||||
= t('views.users.dossiers.autosave.autosave_draft')
|
||||
= link_to t('views.users.dossiers.autosave.more_infos'), FAQ_AUTOSAVE_URL, target: '_blank', rel: 'noopener', class: 'autosave-more-infos'
|
||||
- if dossier.brouillon?
|
||||
= t('views.users.dossiers.autosave.draft_explanation')
|
||||
- else
|
||||
= t('views.users.dossiers.autosave.explanation')
|
||||
= link_to t('views.users.dossiers.autosave.more_information'), FAQ_AUTOSAVE_URL, target: '_blank', rel: 'noopener', class: 'autosave-more-infos'
|
||||
|
||||
%p.autosave-status.succeeded
|
||||
%span.autosave-icon.icon.accept
|
||||
%span.autosave-label
|
||||
= t('views.users.dossiers.autosave.autosave_confirmation')
|
||||
- if dossier.brouillon?
|
||||
= t('views.users.dossiers.autosave.draft_confirmation')
|
||||
- else
|
||||
= t('views.users.dossiers.autosave.confirmation')
|
||||
= link_to t('views.users.dossiers.autosave.more_information'), FAQ_AUTOSAVE_URL, target: '_blank', rel: 'noopener', class: 'autosave-more-infos'
|
||||
|
||||
%p.autosave-status.failed
|
|
@ -2,7 +2,7 @@
|
|||
= render partial: "shared/dossiers/submit_is_over", locals: { dossier: dossier }
|
||||
|
||||
- if dossier.brouillon?
|
||||
- form_options = { url: brouillon_dossier_url(dossier), method: :patch }
|
||||
- form_options = { url: brouillon_dossier_url(dossier), method: :patch, data: { save_on_input: true } }
|
||||
- else
|
||||
- form_options = { url: modifier_dossier_url(dossier), method: :patch }
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
%hr
|
||||
|
||||
- if dossier.show_groupe_instructeur_selector?
|
||||
%span{ data: { controller: dossier.brouillon? ? 'autosave' : 'check-conditions' } }
|
||||
%span{ data: { controller: 'autosave' } }
|
||||
= f.label :groupe_instructeur_id do
|
||||
= dossier.procedure.routing_criteria_name
|
||||
%span.mandatory *
|
||||
|
@ -33,25 +33,19 @@
|
|||
|
||||
- dossier.champs.each do |champ|
|
||||
= fields_for champ.input_name, champ do |form|
|
||||
= render partial: "shared/dossiers/editable_champs/editable_champ", locals: { form: form, champ: champ }
|
||||
= render EditableChamp::EditableChampComponent.new form: form, champ: champ
|
||||
|
||||
- if !dossier.for_procedure_preview?
|
||||
.dossier-edit-sticky-footer
|
||||
.send-dossier-actions-bar
|
||||
- if dossier.brouillon?
|
||||
= render partial: 'users/dossiers/autosave'
|
||||
= render partial: 'shared/dossiers/autosave', locals: { dossier: dossier }
|
||||
|
||||
- if dossier.can_transition_to_en_construction?
|
||||
= f.button t('views.shared.dossiers.edit.submit_dossier'),
|
||||
name: :submit_draft,
|
||||
value: true,
|
||||
class: 'button send primary',
|
||||
disabled: !current_user.owns?(dossier),
|
||||
data: { 'disable-with': "Envoi en cours…" }
|
||||
|
||||
- else
|
||||
= f.button t('views.shared.dossiers.edit.save_changes'),
|
||||
- if dossier.can_transition_to_en_construction?
|
||||
= f.button t('views.shared.dossiers.edit.submit_dossier'),
|
||||
name: :submit_draft,
|
||||
value: true,
|
||||
class: 'button send primary',
|
||||
disabled: !current_user.owns?(dossier),
|
||||
data: { 'disable-with': "Envoi en cours…" }
|
||||
|
||||
- if dossier.brouillon? && !current_user.owns?(dossier)
|
||||
|
|
|
@ -4,16 +4,11 @@
|
|||
= form_for dossier, url: annotations_instructeur_dossier_path(dossier.procedure, dossier), html: { class: 'form', multipart: true } do |f|
|
||||
- dossier.champs_private.each do |champ|
|
||||
= fields_for champ.input_name, champ do |form|
|
||||
= render partial: "shared/dossiers/editable_champs/editable_champ", locals: { form: form, champ: champ, seen_at: seen_at }
|
||||
= render EditableChamp::EditableChampComponent.new form: form, champ: champ, seen_at: seen_at
|
||||
|
||||
- if !dossier.for_procedure_preview?
|
||||
- if autosave_available?(dossier.champs_private.first)
|
||||
.dossier-edit-sticky-footer
|
||||
.send-dossier-actions-bar
|
||||
= render partial: 'autosave'
|
||||
- else
|
||||
.send-wrapper
|
||||
= f.submit 'Sauvegarder', class: 'button primary send', data: { disable: true }
|
||||
.send-wrapper
|
||||
= f.submit 'Sauvegarder', class: 'button primary send', data: { disable: true }
|
||||
|
||||
- else
|
||||
%h2.empty-text Aucune annotation privée
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
= # we do this trick because some html elements should use 'label' and some should be plain paragraphs
|
||||
- if champ.html_label?
|
||||
= form.label champ.main_value_name, id: champ.labelledby_id, for: champ.input_id do
|
||||
= render partial: 'shared/dossiers/editable_champs/champ_label_content', locals: { champ: champ, seen_at: seen_at }
|
||||
- else
|
||||
.form-label.mb-4
|
||||
= render partial: 'shared/dossiers/editable_champs/champ_label_content', locals: { champ: champ, seen_at: seen_at }
|
||||
|
||||
- if champ.description.present?
|
||||
.notice{ id: champ.describedby_id }= string_to_html(champ.description)
|
|
@ -1,11 +0,0 @@
|
|||
#{champ.libelle}
|
||||
- if champ.type_de_champ.mandatory?
|
||||
%span.mandatory *
|
||||
|
||||
- if champ.updated_at.present? && seen_at.present?
|
||||
%span.updated-at{ class: highlight_if_unseen_class(seen_at, champ.updated_at) }
|
||||
= "modifié le #{try_format_datetime(champ.updated_at)}"
|
||||
|
||||
- if champ.rebased_at.present? && champ.rebased_at > (seen_at || champ.updated_at) && current_user.owns_or_invite?(champ.dossier)
|
||||
%span.updated-at.highlighted
|
||||
Le type de ce champ où sa description a été modifiée par l'administration. Vérifier son contenu.
|
|
@ -1,13 +0,0 @@
|
|||
.editable-champ{ class: "editable-champ-#{champ.type_champ} #{champ.visible? ? '' : 'hidden'}", id: champ.input_group_id, data: editable_champ_controller(champ) }
|
||||
- if champ.repetition?
|
||||
%h3.header-subsection= champ.libelle
|
||||
- if champ.description.present?
|
||||
%p.notice= string_to_html(champ.description, false)
|
||||
|
||||
- elsif has_label?(champ)
|
||||
= render partial: 'shared/dossiers/editable_champs/champ_label', locals: { form: form, champ: champ, seen_at: defined?(seen_at) ? seen_at : nil }
|
||||
- if champ.type_champ == "titre_identite"
|
||||
%p.notice Carte nationale d’identité (uniquement le recto), passeport, titre de séjour ou autre justificatif d’identité. Formats acceptés : jpg/png
|
||||
|
||||
= form.hidden_field :id, value: champ.id, data: champ.repetition? ? { id: true } : {}
|
||||
= render "EditableChamp::#{champ.type_champ.camelcase}Component".constantize.new(form: form, champ: champ)
|
5
app/views/users/dossiers/update.turbo_stream.haml
Normal file
5
app/views/users/dossiers/update.turbo_stream.haml
Normal file
|
@ -0,0 +1,5 @@
|
|||
- @dossier.champs.filter(&:conditional?).each do |champ|
|
||||
- if champ.visible?
|
||||
= turbo_stream.show champ.input_group_id
|
||||
- else
|
||||
= turbo_stream.hide champ.input_group_id
|
Loading…
Add table
Add a link
Reference in a new issue