move/rename faceting components within their instructeur ns
This commit is contained in:
parent
61051771a7
commit
31255b69cc
13 changed files with 30 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
class Dossiers::InstructeurFilterComponent < ApplicationComponent
|
||||
class Instructeurs::ColumnFilterComponent < ApplicationComponent
|
||||
attr_reader :procedure, :procedure_presentation, :statut, :facet
|
||||
|
||||
def initialize(procedure:, procedure_presentation:, statut:, facet: nil)
|
|
@ -1,4 +1,4 @@
|
|||
class Dossiers::InstructeurFacetPickerComponent < ApplicationComponent
|
||||
class Instructeurs::ColumnPickerComponent < ApplicationComponent
|
||||
attr_reader :procedure, :procedure_presentation
|
||||
|
||||
def initialize(procedure:, procedure_presentation:)
|
|
@ -3,4 +3,4 @@
|
|||
= t('views.instructeurs.dossiers.filters.title')
|
||||
|
||||
- menu.with_form do
|
||||
= render Dossiers::InstructeurFilterComponent.new(procedure:, procedure_presentation: @procedure_presentation, statut:)
|
||||
= render Instructeurs::ColumnFilterComponent.new(procedure:, procedure_presentation: @procedure_presentation, statut:)
|
||||
|
|
|
@ -109,7 +109,7 @@
|
|||
- menu.with_button_inner_html do
|
||||
= t('views.instructeurs.dossiers.personalize')
|
||||
- menu.with_form do
|
||||
= render Dossiers::InstructeurFacetPickerComponent.new(procedure: @procedure, procedure_presentation: @procedure_presentation)
|
||||
= render Instructeurs::ColumnPickerComponent.new(procedure: @procedure, procedure_presentation: @procedure_presentation)
|
||||
|
||||
%tbody
|
||||
= render Dossiers::BatchSelectMoreComponent.new(dossiers_count: @dossiers_count, filtered_sorted_ids: @filtered_sorted_ids)
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
= turbo_stream.replace 'filter-component' do
|
||||
= render Dossiers::InstructeurFilterComponent.new(procedure: @procedure, procedure_presentation: @procedure_presentation, statut: @statut, facet: @facet)
|
||||
= render Instructeurs::ColumnFilterComponent.new(procedure: @procedure, procedure_presentation: @procedure_presentation, statut: @statut, facet: @facet)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
describe Dossiers::InstructeurFilterComponent, type: :component do
|
||||
describe Instructeurs::ColumnFilterComponent, type: :component do
|
||||
let(:component) { described_class.new(procedure:, procedure_presentation:, statut:, facet:) }
|
||||
|
||||
let(:instructeur) { create(:instructeur) }
|
24
spec/components/instructeurs/column_picker_component_spec.rb
Normal file
24
spec/components/instructeurs/column_picker_component_spec.rb
Normal file
|
@ -0,0 +1,24 @@
|
|||
describe Instructeurs::ColumnPickerComponent, type: :component do
|
||||
let(:component) { described_class.new(procedure:, procedure_presentation:) }
|
||||
|
||||
let(:procedure) { create(:procedure) }
|
||||
let(:instructeur) { create(:instructeur) }
|
||||
let(:assign_to) { create(:assign_to, procedure: procedure, instructeur: instructeur) }
|
||||
let(:procedure_presentation) { create(:procedure_presentation, assign_to: assign_to) }
|
||||
|
||||
describe "#displayable_fields_for_select" do
|
||||
let(:default_user_email) { Facet.new(label: 'email', table: 'user', column: 'email') }
|
||||
let(:excluded_displayable_field) { Facet.new(label: "label1", table: "table1", column: "column1", virtual: true) }
|
||||
|
||||
subject { component.displayable_fields_for_select }
|
||||
|
||||
before do
|
||||
allow(Facet).to receive(:facets).and_return([
|
||||
default_user_email,
|
||||
excluded_displayable_field
|
||||
])
|
||||
end
|
||||
|
||||
it { is_expected.to eq([[["email", "user/email"]], ["user/email"]]) }
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue