Skip to content

Commit

Permalink
Prevent creation of unnecessary fieldset(mirror and revise changes from
Browse files Browse the repository at this point in the history
  • Loading branch information
liijunwei committed Aug 15, 2023
1 parent 9fa9373 commit 26a1dd8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion lib/active_model_serializers/adapter/attributes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ module Adapter
class Attributes < Base
def initialize(*)
super
instance_options[:fieldset] ||= ActiveModel::Serializer::Fieldset.new(fields_to_fieldset(instance_options.delete(:fields)))

fields = instance_options.delete(:fields)
fieldset = fields_to_fieldset(fields)
instance_options[:fieldset] = ActiveModel::Serializer::Fieldset.new(fieldset) if fieldset
end

def serializable_hash(options = nil)
Expand Down
6 changes: 4 additions & 2 deletions lib/active_model_serializers/adapter/json_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def self.fragment_cache(cached_hash, non_cached_hash, root = true)
def initialize(serializer, options = {})
super
@include_directive = JSONAPI::IncludeDirective.new(options[:include], allow_wildcard: true)
@fieldset = options[:fieldset] || ActiveModel::Serializer::Fieldset.new(options.delete(:fields))
option_fields = options.delete(:fields)
@fieldset = ActiveModel::Serializer::Fieldset.new(option_fields) if option_fields
end

# {http://jsonapi.org/format/#crud Requests are transactional, i.e. success or failure}
Expand Down Expand Up @@ -348,7 +349,8 @@ def data_for(serializer, include_slice)
data.tap do |resource_object|
next if resource_object.nil?
# NOTE(BF): the attributes are cached above, separately from the relationships, below.
requested_associations = fieldset.fields_for(resource_object[:type]) || '*'
requested_fields = fieldset && fieldset.fields_for(resource_object[:type])
requested_associations = requested_fields || '*'
relationships = relationships_for(serializer, requested_associations, include_slice)
resource_object[:relationships] = relationships if relationships.any?
end
Expand Down

0 comments on commit 26a1dd8

Please sign in to comment.