Skip to content

Commit b1901e8

Browse files
authored
Merge pull request #5238 from wspurgin/fix-manually-adding-id-to-select-filters
Fix manually adding and `id` searchable method name in Select Inputs
2 parents 3ceb73f + 7802876 commit b1901e8

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

lib/active_admin/inputs/filters/select_input.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def searchable_method_name
1515
"#{reflection.through_reflection.name}_#{reflection.foreign_key}"
1616
else
1717
name = method.to_s
18-
name.concat '_id' if reflection
18+
name.concat "_#{reflection.association_primary_key}" if reflection_searchable?
1919
name
2020
end
2121
end
@@ -48,6 +48,10 @@ def pluck_column
4848
klass.reorder("#{method} asc").distinct.pluck method
4949
end
5050

51+
def reflection_searchable?
52+
reflection && !reflection.polymorphic?
53+
end
54+
5155
end
5256
end
5357
end

spec/unit/filters/filter_form_builder_spec.rb

+22
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,28 @@ def filter(name, options = {})
311311
end
312312
end
313313

314+
context "when given the name of relationship with a primary key other than id" do
315+
let(:resource_klass) {
316+
Class.new(Post) do
317+
belongs_to :kategory, class_name: "Category", primary_key: :name, foreign_key: :title
318+
319+
def self.name
320+
"SuperPost"
321+
end
322+
end
323+
}
324+
325+
let(:scope) do
326+
resource_klass.search
327+
end
328+
329+
let(:body) { Capybara.string(filter :kategory) }
330+
331+
it "should use the association primary key" do
332+
expect(body).to have_selector("select[name='q[kategory_name_eq]']")
333+
end
334+
end
335+
314336
context "as check boxes" do
315337
let(:body) { Capybara.string(filter :author, as: :check_boxes) }
316338

0 commit comments

Comments
 (0)