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

ETQ administrateur j'ai davantage d'informations sur le routage à partir d'un champ #11042

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/components/dsfr/radio_button_list_component.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def error?
end

def each_button
@buttons.each do |button|
yield(*button.values_at(:label, :value, :hint), **button.except(:label, :value, :hint))
@buttons.each.with_index do |button, index|
yield(*button.values_at(:label, :value, :hint, :tooltip), **button.merge!(index:).except(:label, :value, :hint, :tooltip))
end
end
end
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
%fieldset{ class: class_names("fr-fieldset": true, "fr-fieldset--error": error?), 'aria-labelledby': 'radio-hint-element-legend radio-hint-element-messages', role: error? ? :group : nil }
%legend.fr-fieldset__legend--regular.fr-fieldset__legend
= content

- each_button do |label, value, hint, **button_options|
- each_button do |label, value, hint, tooltip, **button_options|
Copy link
Member

Choose a reason for hiding this comment

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

est ce que tu pourrais modifier le composant radio_button_list_component pour rajouter un with_index ~ligne 20, puis de le passer au boutton_options pour t'en servir ici ?

.fr-fieldset__element
.fr-radio-group
= @form.radio_button @target, value, **button_options
= @form.radio_button @target, value, **button_options.except(:index)
= @form.label @target, value: value, class: 'fr-label' do
- capture do
= label

= button_options[:after_label] if button_options[:after_label]

%span.fr-hint-text= hint if hint
- if hint.present?
.flex
.fr-hint-text= hint
- if tooltip.present? && button_options[:index]
.fr-icon-information-line.fr-icon--sm.ml-1{ 'aria-describedby': "tooltip-#{button_options[:index]}" }
%span.fr-tooltip.fr-placement{ id: "tooltip-#{button_options[:index]}", role: 'tooltip', 'aria-hidden': 'true' }= tooltip

.fr-messages-group{ 'aria-live': 'assertive' }
- if error?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,5 @@

- if flash[:routing_mode] == 'custom'
= render partial: 'custom_routing_modal'
- elsif flash[:routing_mode] == 'simple'
= render partial: 'simple_routing_modal', locals: { procedure: @procedure }
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@
url: wizard_admin_procedure_groupe_instructeurs_path(@procedure) do |f|

%h1 Configuration du routage
%h2 Choix du type de routage
%h2 Choix du type de configuration

.card.fr-pb-0{ data: { 'action': "click->enable-submit-if-checked#click" } }
%p.fr-mb-0 Routage
%p.fr-mb-0 Configuration
= render Dsfr::RadioButtonListComponent.new(form: f,
target: :state,
buttons: [ { label: 'À partir d’un champ', value: 'routage_simple', hint: 'crée les groupes en fonction d’un champ du formulaire' } ,
{ label: 'Avancé', value: 'custom_routing', hint: 'libre à vous de créer et de configurer les groupes' }])
buttons: [ { label: 'Automatique', value: 'routage_simple', hint: 'crée les groupes automatiquement à partir des valeurs possibles d’un champ du formulaire usager' } ,
{ label: 'Manuelle', value: 'custom_routing', hint: 'libre à vous de créer et de configurer les groupes en utilisant les champs « routables » du formulaire usager' }])


%ul.fr-btns-group.fr-btns-group--inline-sm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ def create_simple_routing
defaut.destroy!
end

flash.notice = 'Les groupes instructeurs ont été ajoutés'
flash[:routing_mode] = 'simple'

redirect_to admin_procedure_groupe_instructeurs_path(@procedure)
end

Expand Down
2 changes: 1 addition & 1 deletion app/models/logic/champ_value.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ class Logic::ChampValue < Logic::Term
:decimal_number,
:drop_down_list,
:multiple_drop_down_list,
:address,
:communes,
:epci,
:departements,
:regions,
:address,
:pays
)

Expand Down
12 changes: 12 additions & 0 deletions app/models/type_de_champ.rb
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,18 @@
.map { |_, v| v.map { "« #{I18n.t(_1, scope: [:activerecord, :attributes, :type_de_champ, :type_champs])} »" } }
end

def self.humanized_simple_routable_types_by_category
Logic::ChampValue::MANAGED_TYPE_DE_CHAMP_BY_CATEGORY

Check warning on line 533 in app/models/type_de_champ.rb

View check run for this annotation

Codecov / codecov/patch

app/models/type_de_champ.rb#L533

Added line #L533 was not covered by tests
.map { |_, v| v.filter_map { "« #{I18n.t(_1, scope: [:activerecord, :attributes, :type_de_champ, :type_champs])} »" if _1.to_s.in?(SIMPLE_ROUTABLE_TYPES) } }
.reject(&:empty?)
end

def self.humanized_custom_routable_types_by_category
Logic::ChampValue::MANAGED_TYPE_DE_CHAMP_BY_CATEGORY

Check warning on line 539 in app/models/type_de_champ.rb

View check run for this annotation

Codecov / codecov/patch

app/models/type_de_champ.rb#L539

Added line #L539 was not covered by tests
.map { |_, v| v.filter_map { "« #{I18n.t(_1, scope: [:activerecord, :attributes, :type_de_champ, :type_champs])} »" if !_1.to_s.in?(SIMPLE_ROUTABLE_TYPES) } }
.reject(&:empty?)
end

def invalid_regexp?
self.errors.delete(:expression_reguliere)
self.errors.delete(:expression_reguliere_exemple_text)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
.fr-modal__content
%h1#fr-modal-title-modal-1.fr-modal__title
%span.fr-icon-arrow-right-line.fr-icon--lg
Routage avancé
Configuration manuelle du routage
.fr-alert.fr-alert--success
%h2.fr-alert__title
Deux groupes par défaut ont été créés
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
%dialog{ aria: { labelledby: "fr-modal-title-modal-1" }, role: "dialog", id: "routing-mode-modal", class: "fr-modal fr-modal--opened" }
.fr-container.fr-container--fluid.fr-container-md
.fr-grid-row.fr-grid-row--center
.fr-col-12.fr-col-md-8.fr-col-lg-6
.fr-modal__body
.fr-modal__header
%button.fr-btn.fr-btn--close{ title: "Fermer la fenêtre modale", aria: { controls: "routing-mode-modal" } } Fermer
.fr-modal__content
%h1#fr-modal-title-modal-1.fr-modal__title
%span.fr-icon-arrow-right-line.fr-icon--lg
Configuration automatique du routage
.fr-alert.fr-alert--success
%h2.fr-alert__title
Les groupes instructeurs ont été créés à partir du champ « #{procedure.routing_champs.first} »
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,53 @@
locals: { steps: [[t('.procedures'), admin_procedures_path],
[@procedure.libelle.truncate_words(10), admin_procedure_path(@procedure)],
['Groupes', admin_procedure_groupe_instructeurs_path(@procedure)],
['Routage à partir d’un champ']] }
['Configuration automatique du routage']] }

= render Procedure::InstructeursMenuComponent.new(procedure: @procedure) do
- content_for(:title, 'Routage')
%h1 Routage à partir d’un champ
= form_for :create_simple_routing,
method: :post,
data: { controller: 'enable-submit-if-checked' },
url: create_simple_routing_admin_procedure_groupe_instructeurs_path(@procedure) do |f|
.container
.fr-grid-row
.fr-col.fr-col-12.fr-col-md-3
.fr-container
%ul.fr-btns-group.fr-btns-group--inline-md.fr-ml-0
%li
= link_to options_admin_procedure_groupe_instructeurs_path, class: 'fr-link fr-icon-arrow-left-line fr-link--icon-left fr-mb-2w fr-mr-2w' do
Revenir aux options

%div{ data: { 'action': "click->enable-submit-if-checked#click" } }
.notice
Sélectionner le champ à partir duquel créer des groupes d’instructeurs
- buttons_content = @procedure.active_revision.simple_routable_types_de_champ.map { |tdc| { label: tdc.libelle, value: tdc.stable_id } }
= render Dsfr::RadioButtonListComponent.new(form: f,
target: :stable_id,
buttons: buttons_content)
.fr-col
- content_for(:title, 'Routage')
%h1 Configuration du routage
%h2 Configuration automatique
.fr-alert.fr-alert--info.fr-mb-3w{ aria: { hidden: true } }
%p
Vous trouverez ci-dessous une liste de champs de votre formulaire à partir desquels configurer le routage de façon <strong>automatique</strong>. Les groupes d’instructeurs seront créés à partir des valeurs possibles du champ.
Seuls les champs suivants sont ouverts à ce mode de configuration :
%ul
- TypeDeChamp.humanized_simple_routable_types_by_category.each do |category|
%li
= category.join(', ')

%ul.fr-btns-group.fr-btns-group--inline-sm
%li
= link_to 'Retour', options_admin_procedure_groupe_instructeurs_path(@procedure, state: :choix), class: 'fr-btn fr-btn--secondary'
%li
%button.fr-btn{ disabled: true, data: { disable_with: 'Création des groupes…', 'enable-submit-if-checked-target': 'submit' } } Créer les groupes
%p
Si besoin, vous pourrez ensuite affiner votre configuration de façon <strong>manuelle</strong>, également à partir des champs suivants :

%ul
- TypeDeChamp.humanized_custom_routable_types_by_category.each do |category|
%li
= category.join(', ')

= form_for :create_simple_routing,
method: :post,
data: { controller: 'enable-submit-if-checked' },
url: create_simple_routing_admin_procedure_groupe_instructeurs_path(@procedure) do |f|

.card.fr-pb-0{ data: { 'action': "click->enable-submit-if-checked#click" } }
.notice
Sélectionner le champ à partir duquel créer des groupes d’instructeurs
- buttons_content = @procedure.active_revision.simple_routable_types_de_champ.map { |tdc| { label: tdc.libelle, value: tdc.stable_id, hint: "[#{I18n.t(tdc.type_champ, scope: 'activerecord.attributes.type_de_champ.type_champs')}]", tooltip: tdc.drop_down_options.join(", ")} }
= render Dsfr::RadioButtonListComponent.new(form: f,
target: :stable_id,
buttons: buttons_content)

%ul.fr-btns-group.fr-btns-group--inline-sm
%li
= link_to 'Annuler', options_admin_procedure_groupe_instructeurs_path(@procedure, state: :choix), class: 'fr-btn fr-btn--secondary'
%li
%button.fr-btn{ disabled: true, data: { disable_with: 'Création des groupes…', 'enable-submit-if-checked-target': 'submit' } } Créer les groupes
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ def remove_instructeur(instructeur)

it do
expect(response).to have_http_status(:ok)
expect(response.body).to include('Choix du type de routage')
expect(response.body).to include('Choix du type de configuration')
expect(procedure.reload.routing_enabled).to be_falsey
end
end
Expand Down Expand Up @@ -918,7 +918,7 @@ def remove_instructeur(instructeur)

it do
expect(response).to redirect_to(admin_procedure_groupe_instructeurs_path(procedure3))
expect(flash.notice).to eq 'Les groupes instructeurs ont été ajoutés'
expect(flash[:routing_mode]).to eq 'simple'
expect(procedure3.groupe_instructeurs.pluck(:label)).to match_array(['Paris', 'Lyon', 'Marseille'])
expect(procedure3.reload.defaut_groupe_instructeur.routing_rule).to eq(ds_eq(champ_value(drop_down_tdc.stable_id), constant('Lyon')))
expect(procedure3.routing_enabled).to be_truthy
Expand All @@ -938,7 +938,7 @@ def remove_instructeur(instructeur)

it do
expect(response).to redirect_to(admin_procedure_groupe_instructeurs_path(procedure3))
expect(flash.notice).to eq 'Les groupes instructeurs ont été ajoutés'
expect(flash[:routing_mode]).to eq 'simple'
expect(procedure3.groupe_instructeurs.pluck(:label)).to include("01 – Ain")
expect(procedure3.reload.defaut_groupe_instructeur.routing_rule).to eq(ds_eq(champ_value(departements_tdc.stable_id), constant('01')))
expect(procedure3.routing_enabled).to be_truthy
Expand All @@ -958,7 +958,7 @@ def remove_instructeur(instructeur)

it do
expect(response).to redirect_to(admin_procedure_groupe_instructeurs_path(procedure3))
expect(flash.notice).to eq 'Les groupes instructeurs ont été ajoutés'
expect(flash[:routing_mode]).to eq 'simple'
expect(procedure3.groupe_instructeurs.pluck(:label)).to include("Guadeloupe")
expect(procedure3.reload.defaut_groupe_instructeur.routing_rule).to eq(ds_eq(champ_value(regions_tdc.stable_id), constant('84')))
expect(procedure3.routing_enabled).to be_truthy
Expand All @@ -978,7 +978,7 @@ def remove_instructeur(instructeur)

it do
expect(response).to redirect_to(admin_procedure_groupe_instructeurs_path(procedure3))
expect(flash.notice).to eq 'Les groupes instructeurs ont été ajoutés'
expect(flash[:routing_mode]).to eq 'simple'
expect(procedure3.groupe_instructeurs.pluck(:label)).to include("AD – Andorre")
expect(procedure3.reload.defaut_groupe_instructeur.routing_rule).to eq(ds_eq(champ_value(pays_tdc.stable_id), constant('AD')))
expect(procedure3.routing_enabled).to be_truthy
Expand All @@ -998,7 +998,7 @@ def remove_instructeur(instructeur)

it do
expect(response).to redirect_to(admin_procedure_groupe_instructeurs_path(procedure3))
expect(flash.notice).to eq 'Les groupes instructeurs ont été ajoutés'
expect(flash[:routing_mode]).to eq 'simple'
expect(procedure3.groupe_instructeurs.pluck(:label)).to include("01 – Ain")
expect(procedure3.reload.defaut_groupe_instructeur.routing_rule).to eq(ds_in_departement(champ_value(communes_tdc.stable_id), constant('01')))
expect(procedure3.routing_enabled).to be_truthy
Expand All @@ -1018,7 +1018,7 @@ def remove_instructeur(instructeur)

it do
expect(response).to redirect_to(admin_procedure_groupe_instructeurs_path(procedure3))
expect(flash.notice).to eq 'Les groupes instructeurs ont été ajoutés'
expect(flash[:routing_mode]).to eq 'simple'
expect(procedure3.groupe_instructeurs.pluck(:label)).to include("01 – Ain")
expect(procedure3.reload.defaut_groupe_instructeur.routing_rule).to eq(ds_in_departement(champ_value(epci_tdc.stable_id), constant('01')))
expect(procedure3.routing_enabled).to be_truthy
Expand All @@ -1038,7 +1038,7 @@ def remove_instructeur(instructeur)

it do
expect(response).to redirect_to(admin_procedure_groupe_instructeurs_path(procedure3))
expect(flash.notice).to eq 'Les groupes instructeurs ont été ajoutés'
expect(flash[:routing_mode]).to eq 'simple'
expect(procedure3.groupe_instructeurs.pluck(:label)).to include("01 – Ain")
expect(procedure3.reload.defaut_groupe_instructeur.routing_rule).to eq(ds_in_departement(champ_value(address_tdc.stable_id), constant('01')))
expect(procedure3.routing_enabled).to be_truthy
Expand Down
2 changes: 1 addition & 1 deletion spec/models/type_de_champ_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,6 @@ def never_valid
describe '#humanized_conditionable_types_by_category' do
subject { TypeDeChamp.humanized_conditionable_types_by_category }

it { is_expected.to eq([["« Oui/Non »", "« Case à cocher seule »", "« Choix simple »", "« Choix multiple »"], ["« Nombre entier »", "« Nombre décimal »"], ["« Communes »", "« EPCI »", "« Départements »", "« Régions »", "« Adresse »", "« Pays »"]]) }
it { is_expected.to eq([["« Oui/Non »", "« Case à cocher seule »", "« Choix simple »", "« Choix multiple »"], ["« Nombre entier »", "« Nombre décimal »"], ["« Adresse »", "« Communes »", "« EPCI »", "« Départements »", "« Régions »", "« Pays »"]]) }
end
end
14 changes: 8 additions & 6 deletions spec/system/routing/rules_full_scenario_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
procedure.defaut_groupe_instructeur.instructeurs << administrateur.instructeur
end

scenario 'Routage à partir d’un champ' do
scenario 'Configuration automatique du routage' do
steps_to_routing_configuration

choose('À partir d’un champ', allow_label_click: true)
choose('Automatique', allow_label_click: true)
click_on 'Continuer'

expect(page).to have_text('Routage à partir d’un champ')
expect(page).to have_text('Configuration automatique')

choose('Spécialité', allow_label_click: true)
click_on 'Créer les groupes'
Expand All @@ -33,6 +33,8 @@
expect(page).to have_text('3 groupes')
expect(page).not_to have_text('à configurer')

within("#routing-mode-modal") { click_on "Fermer" }

click_on 'littéraire'
expect(page).to have_select("groupe_instructeur[condition_form][rows][][targeted_champ]", selected: "Spécialité")
expect(page).to have_select("groupe_instructeur[condition_form][rows][][value]", selected: "littéraire")
Expand All @@ -44,10 +46,10 @@
expect(page).to have_select("groupe_instructeur[condition_form][rows][][value]", selected: "scientifique")
end

scenario 'Routage avancé' do
scenario 'Configuration manuelle du routage' do
steps_to_routing_configuration

choose('Avancé', allow_label_click: true)
choose('Manuelle', allow_label_click: true)
click_on 'Continuer'

expect(page).to have_text('Gestion des groupes')
Expand Down Expand Up @@ -331,6 +333,6 @@ def steps_to_routing_configuration
click_on 'Options'
expect(page).to have_text('Options concernant l’instruction')
click_on 'Configurer le routage'
expect(page).to have_text('Choix du type de routage')
expect(page).to have_text('Choix du type de configuration')
end
end
Loading