Skip to content

Commit 04400e2

Browse files
committed
Add belongs_to optional/required support to required?
As of Active Record 7.1.0.beta1, the presence validation added by a belongs_to association can now have an associated lambda. This lambda is just to check whether the column has changed to save redundant validations, so we can ignore it.
1 parent 1b2a8ba commit 04400e2

File tree

4 files changed

+40
-1
lines changed

4 files changed

+40
-1
lines changed

lib/rails_admin/adapters/active_record.rb

+4
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ def parse_id(id)
135135
end
136136
end
137137

138+
def belongs_to_required_by_default
139+
model.belongs_to_required_by_default
140+
end
141+
138142
private
139143

140144
def primary_key_scope(scope, id)

lib/rails_admin/adapters/mongoid.rb

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ def adapter_supports_joins?
112112
false
113113
end
114114

115+
def belongs_to_required_by_default
116+
::Mongoid.belongs_to_required_by_default
117+
end
118+
115119
private
116120

117121
def build_statement(column, type, value, operator)

lib/rails_admin/config/fields/base.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -216,11 +216,18 @@ def filter_options
216216
end
217217

218218
(@required ||= {})[context] ||= !!([name] + children_fields).uniq.detect do |column_name|
219-
abstract_model.model.validators_on(column_name).detect do |v|
219+
model = abstract_model.model
220+
model.validators_on(column_name).detect do |v|
220221
!(v.options[:allow_nil] || v.options[:allow_blank]) &&
221222
%i[presence numericality attachment_presence].include?(v.kind) &&
222223
(v.options[:on] == context || v.options[:on].blank?) &&
223224
(v.options[:if].blank? && v.options[:unless].blank?)
225+
end || model.reflect_on_all_associations(:belongs_to).detect do |a|
226+
next unless a.name == column_name
227+
228+
required = a.options[:required] if a.options.key?(:required)
229+
required = !a.options[:optional] if a.options.key?(:optional) && required.nil?
230+
required.nil? ? abstract_model.belongs_to_required_by_default : required
224231
end
225232
end
226233
end

spec/rails_admin/config/fields/base_spec.rb

+24
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,15 @@ class RelTest < Tableless
8686
column :league_id, :integer
8787
column :division_id, :integer, nil, false
8888
column :player_id, :integer
89+
column :team_id, :integer
90+
column :draft_id, :integer
91+
column :image_id, :integer
8992
belongs_to :league, optional: true
9093
belongs_to :division, optional: true
9194
belongs_to :player, optional: true
95+
belongs_to :team, optional: false
96+
belongs_to :draft, required: true
97+
belongs_to :image, required: false
9298
validates_numericality_of(:player_id, only_integer: true)
9399
end
94100
@fields = RailsAdmin.config(RelTest).create.fields
@@ -111,6 +117,24 @@ class RelTest < Tableless
111117
expect(@fields.detect { |f| f.name == :player }.required?).to be_truthy
112118
end
113119
end
120+
121+
describe 'for belongs_to association with optional: false' do
122+
it 'is required' do
123+
expect(@fields.detect { |f| f.name == :team }.required?).to be_truthy
124+
end
125+
end
126+
127+
describe 'for belongs_to association with required: true' do
128+
it 'is required' do
129+
expect(@fields.detect { |f| f.name == :draft }.required?).to be_truthy
130+
end
131+
end
132+
133+
describe 'for belongs_to association with required: false' do
134+
it 'is optional' do
135+
expect(@fields.detect { |f| f.name == :image }.required?).to be_falsey
136+
end
137+
end
114138
end
115139
end
116140

0 commit comments

Comments
 (0)