forest_admin_datasource_active_record 1.0.0.pre.beta.63 → 1.0.0.pre.beta.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '085ff296ed7567aac9da70f81227a63b93c9574e8f916da499619237e267ec31'
4
- data.tar.gz: cdd9e0940eaeb79e04283e6d6ad1c5917c7f7adf621de0300ed2a961d7fedc2b
3
+ metadata.gz: 7b25b0145c04eb391ccd5b97e049bfac49d25ba202b18f6f5d1eb7e7b8f6c9ba
4
+ data.tar.gz: 89cf1bd05ba9ff06523ad8bf1d6d7fb8996bf788ce36811c8ce14586cf9dd4c2
5
5
  SHA512:
6
- metadata.gz: d1df4be9da1451cfe4974d54cac8d987cde964645c57f174c5a2f6c2e341a03c0451be56bc38112d0e73a5e8ed53e41314b3a16735bb6b25311df740c1bf6276
7
- data.tar.gz: 237252fdd836f7a4792976e9ca4fdf49046fe43bfab036cf2e822f862f35ed25ebab58fc74fa974ffbe651bc2f58eb6feea4eaf943d5c901b5d836e382196c69
6
+ metadata.gz: cec0e0f9e04502725144f51bd6d36170b63f7ecedd9ae745b42911c145c70d998c38416ebf71107b4d672d394654f44b3a20ad4f085905f73ba380d507bc01a4
7
+ data.tar.gz: b98fd31c5c9e4a7c0ba9ef0529152a56a4856133a6de7f2eaea6ece6c5985babff35e0e0583a9901c76a11a97fa47ce625cce38312d983419c385e988e903298
@@ -3,10 +3,11 @@ module ForestAdminDatasourceActiveRecord
3
3
  module Relation
4
4
  def associations(model, support_polymorphic_relations: false)
5
5
  model.reflect_on_all_associations.select do |association|
6
+ is_valid_association = !get_class(association).nil? && !active_type?(get_class(association))
6
7
  if support_polymorphic_relations
7
- polymorphic?(association) ? true : !active_type?(association.klass)
8
+ polymorphic?(association) ? true : is_valid_association
8
9
  else
9
- !polymorphic?(association) && !active_type?(association.klass)
10
+ !polymorphic?(association) && is_valid_association
10
11
  end
11
12
  end
12
13
  end
@@ -16,6 +17,12 @@ module ForestAdminDatasourceActiveRecord
16
17
  association.inverse_of&.polymorphic?
17
18
  end
18
19
 
20
+ def get_class(association)
21
+ association.klass
22
+ rescue StandardError
23
+ nil
24
+ end
25
+
19
26
  # NOTICE: Ignores ActiveType::Object association during introspection and interactions.
20
27
  # See the gem documentation: https://github.com/makandra/active_type
21
28
  def active_type?(model)
@@ -1,3 +1,3 @@
1
1
  module ForestAdminDatasourceActiveRecord
2
- VERSION = "1.0.0-beta.63"
2
+ VERSION = "1.0.0-beta.65"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forest_admin_datasource_active_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.beta.63
4
+ version: 1.0.0.pre.beta.65
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-08-20 00:00:00.000000000 Z
12
+ date: 2024-08-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord